From b42695c4b8270d7db19e5a6ec7506b27ceaaf44e Mon Sep 17 00:00:00 2001 From: sky121113 Date: Wed, 29 Apr 2026 16:54:21 +0800 Subject: [PATCH] =?UTF-8?q?[FEAT]=20=E5=84=AA=E5=8C=96=E9=80=9A=E8=A1=8C?= =?UTF-8?q?=E7=A2=BC=E8=88=87=E5=8F=96=E8=B2=A8=E7=A2=BC=E6=A8=A1=E7=B5=84?= =?UTF-8?q?=E3=80=81=E8=A3=9C=E9=BD=8A=E5=A4=9A=E5=9C=8B=E8=AA=9E=E7=B3=BB?= =?UTF-8?q?=E7=B3=BB=E7=B5=B1=E5=8F=8A=E4=BB=8B=E9=9D=A2=E9=A2=A8=E6=A0=BC?= =?UTF-8?q?=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. 通行碼與取貨碼:新增代碼預覽、重新產生功能與到期時間預覽邏輯。 2. 通行碼:允許天數設為 0 (永久),並改用搜尋式下拉選單選取機台。 3. 取貨碼:加強表單檢核並整合自訂 Toast 提示。 4. 語系優化:補齊繁中、英文鍵值,並完整建立日文語系目錄 (lang/ja) 與 JSON 檔案。 5. 組件優化:更新 PageHeader 與 TabNav 組件,提升 UI 互動性與一致性。 6. 訪客功能:新增通行碼訪客端查詢介面與控制器。 7. 其他模組:同步調整機台、遠端與倉庫模組視圖以符合極簡奢華風。 --- .../Controllers/Admin/SalesController.php | 60 +- .../Controllers/Guest/PassCodeController.php | 27 + app/Models/Transaction/PassCode.php | 21 + ...29_160812_add_slug_to_pass_codes_table.php | 28 + lang/en.json | 1832 ++++++++-------- lang/ja.json | 1520 +++++++++++++- lang/ja/auth.php | 20 + lang/ja/pagination.php | 19 + lang/ja/passwords.php | 22 + lang/ja/validation.php | 213 ++ lang/zh_TW.json | 1848 +++++++++-------- .../basic-settings/machines/index.blade.php | 1629 ++++++++------- .../machines/partials/tab-machines.blade.php | 321 +-- .../machines/partials/tab-models.blade.php | 163 +- .../partials/tab-permissions.blade.php | 198 +- .../partials/tab-system-settings.blade.php | 186 +- resources/views/admin/remote/index.blade.php | 52 +- .../partials/tab-history-index.blade.php | 137 +- .../remote/partials/tab-history.blade.php | 90 +- .../partials/tab-machines-index.blade.php | 103 +- .../remote/partials/tab-machines.blade.php | 110 +- resources/views/admin/remote/stock.blade.php | 52 +- .../admin/sales/pass-codes/index.blade.php | 643 ++++-- .../admin/sales/pickup-codes/index.blade.php | 946 +++++---- .../admin/warehouses/inventory.blade.php | 41 +- .../partials/tab-movements.blade.php | 171 +- .../partials/tab-stock-in.blade.php | 95 +- .../warehouses/partials/tab-stock.blade.php | 30 +- .../views/components/page-header.blade.php | 23 +- resources/views/components/tab-nav.blade.php | 37 +- .../views/guest/pass-code/show.blade.php | 95 + .../layouts/partials/sidebar-menu.blade.php | 30 +- routes/web.php | 1 + 33 files changed, 6992 insertions(+), 3771 deletions(-) create mode 100644 app/Http/Controllers/Guest/PassCodeController.php create mode 100644 database/migrations/2026_04_29_160812_add_slug_to_pass_codes_table.php create mode 100644 lang/ja/auth.php create mode 100644 lang/ja/pagination.php create mode 100644 lang/ja/passwords.php create mode 100644 lang/ja/validation.php create mode 100644 resources/views/guest/pass-code/show.blade.php diff --git a/app/Http/Controllers/Admin/SalesController.php b/app/Http/Controllers/Admin/SalesController.php index 5a3993d..5bce89b 100644 --- a/app/Http/Controllers/Admin/SalesController.php +++ b/app/Http/Controllers/Admin/SalesController.php @@ -33,12 +33,12 @@ class SalesController extends Controller $query = PickupCode::with(['machine.slots.product', 'creator'])->latest(); if ($request->search) { - $query->where(function($q) use ($request) { + $query->where(function ($q) use ($request) { $q->where('code', 'like', "%{$request->search}%") - ->orWhereHas('machine', function($mq) use ($request) { - $mq->where('name', 'like', "%{$request->search}%") - ->orWhere('serial_no', 'like', "%{$request->search}%"); - }); + ->orWhereHas('machine', function ($mq) use ($request) { + $mq->where('name', 'like', "%{$request->search}%") + ->orWhere('serial_no', 'like', "%{$request->search}%"); + }); }); } @@ -48,7 +48,7 @@ class SalesController extends Controller $per_page = $request->input('per_page', 15); $pickupCodes = $query->paginate($per_page)->withQueryString(); - + // 供新增彈窗使用的機台清單 $machines = Machine::all(); @@ -69,15 +69,16 @@ class SalesController extends Controller 'machine_id' => 'required|exists:machines,id', 'slot_no' => 'required|string', 'expires_hours' => 'nullable|integer|min:1|max:720', // 最長一個月 + 'custom_code' => 'nullable|string|min:4|max:12', ]); $machine = Machine::findOrFail($validated['machine_id']); $expiresAt = now()->addHours((int) ($request->expires_hours ?? 24)); - + $pickupCode = PickupCode::create([ 'machine_id' => $validated['machine_id'], 'slot_no' => $validated['slot_no'], - 'code' => PickupCode::generateUniqueCode($validated['machine_id']), + 'code' => $request->custom_code ?? PickupCode::generateUniqueCode($validated['machine_id']), 'expires_at' => $expiresAt, 'status' => 'active', 'company_id' => $machine->company_id, @@ -136,16 +137,33 @@ class SalesController extends Controller $query = PassCode::with(['machine', 'creator'])->latest(); if ($request->search) { - $query->where(function($q) use ($request) { + $query->where(function ($q) use ($request) { $q->where('code', 'like', "%{$request->search}%") - ->orWhere('name', 'like', "%{$request->search}%") - ->orWhereHas('machine', function($mq) use ($request) { - $mq->where('name', 'like', "%{$request->search}%") - ->orWhere('serial_no', 'like', "%{$request->search}%"); - }); + ->orWhere('name', 'like', "%{$request->search}%") + ->orWhereHas('machine', function ($mq) use ($request) { + $mq->where('name', 'like', "%{$request->search}%") + ->orWhere('serial_no', 'like', "%{$request->search}%"); + }); }); } + if ($request->status && trim($request->status) !== '') { + $status = trim($request->status); + if ($status === 'active') { + $query->where('status', 'active') + ->where(function ($q) { + $q->whereNull('expires_at') + ->orWhere('expires_at', '>', now()); + }); + } elseif ($status === 'expired') { + $query->where('status', 'active') + ->whereNotNull('expires_at') + ->where('expires_at', '<=', now()); + } else { + $query->where('status', $status); + } + } + $passCodes = $query->paginate(15)->withQueryString(); $machines = Machine::all(); @@ -164,14 +182,14 @@ class SalesController extends Controller { $validated = $request->validate([ 'machine_id' => 'required|exists:machines,id', - 'name' => 'nullable|string|max:50', - 'expires_days' => 'nullable|integer|min:1', - 'custom_code' => 'nullable|string|min:4|max:12', + 'name' => 'required|string|max:50', + 'expires_days' => 'nullable|integer|min:0', + 'custom_code' => 'required|string|min:4|max:12', ]); $machine = Machine::findOrFail($validated['machine_id']); $expiresAt = $request->expires_days ? now()->addDays((int) $request->expires_days) : null; - + $passCode = PassCode::create([ 'machine_id' => $validated['machine_id'], 'name' => $validated['name'] ?? 'Manual Generate', @@ -202,12 +220,12 @@ class SalesController extends Controller } /** - * 刪除通行碼 + * 刪除通行碼 (改為停用) */ public function destroyPassCode(PassCode $passCode) { - $passCode->delete(); - return back()->with('success', __('Pass code deleted.')); + $passCode->update(['status' => 'disabled']); + return back()->with('success', __('Pass code disabled.')); } // 來店禮設定 diff --git a/app/Http/Controllers/Guest/PassCodeController.php b/app/Http/Controllers/Guest/PassCodeController.php new file mode 100644 index 0000000..b01a112 --- /dev/null +++ b/app/Http/Controllers/Guest/PassCodeController.php @@ -0,0 +1,27 @@ +where('slug', $slug) + ->where('status', 'active') + ->where(function($query) { + $query->whereNull('expires_at') + ->orWhere('expires_at', '>', now()); + }) + ->firstOrFail(); + + return view('guest.pass-code.show', compact('passCode')); + } +} diff --git a/app/Models/Transaction/PassCode.php b/app/Models/Transaction/PassCode.php index 76155bb..c5bd7ff 100644 --- a/app/Models/Transaction/PassCode.php +++ b/app/Models/Transaction/PassCode.php @@ -17,6 +17,7 @@ class PassCode extends Model 'machine_id', 'name', 'code', + 'slug', 'expires_at', 'status', 'created_by', @@ -26,6 +27,26 @@ class PassCode extends Model 'expires_at' => 'datetime', ]; + /** + * 獲取公開通行連結 + */ + public function getTicketUrlAttribute() + { + return $this->slug ? route('pass-code.ticket', $this->slug) : null; + } + + /** + * Boot the model. + */ + protected static function booted() + { + static::creating(function ($passCode) { + if (!$passCode->slug) { + $passCode->slug = \Illuminate\Support\Str::random(16); + } + }); + } + /** * 關聯機台 */ diff --git a/database/migrations/2026_04_29_160812_add_slug_to_pass_codes_table.php b/database/migrations/2026_04_29_160812_add_slug_to_pass_codes_table.php new file mode 100644 index 0000000..f0229ee --- /dev/null +++ b/database/migrations/2026_04_29_160812_add_slug_to_pass_codes_table.php @@ -0,0 +1,28 @@ +string('slug')->nullable()->unique()->after('code'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('pass_codes', function (Blueprint $table) { + $table->dropColumn('slug'); + }); + } +}; diff --git a/lang/en.json b/lang/en.json index 6cc5fa0..f9f7cae 100644 --- a/lang/en.json +++ b/lang/en.json @@ -3,24 +3,34 @@ "30 Seconds": "30 Seconds", "60 Seconds": "60 Seconds", "A new verification link has been sent to your email address.": "A new verification link has been sent to your email address.", + "AI Prediction": "AI Prediction", + "API Token": "API Token", + "API Token Copied": "API Token Copied", + "API Token regenerated successfully.": "API Token regenerated successfully.", + "APK Versions": "APK Versions", + "APP Features": "APP Features", + "APP Management": "APP Management", + "APP Version": "APP Version", + "APP_ID": "APP_ID", + "APP_KEY": "APP_KEY", "Abnormal": "Abnormal", "Account": "Account", "Account :name status has been changed to :status.": "Account :name status has been changed to :status.", - "Account created successfully.": "Account created successfully.", - "Account deleted successfully.": "Account deleted successfully.", "Account Info": "Account Info", "Account List": "Account List", "Account Management": "Account Management", "Account Name": "Account Name", "Account Settings": "Account Settings", "Account Status": "Account Status", + "Account created successfully.": "Account created successfully.", + "Account deleted successfully.": "Account deleted successfully.", "Account updated successfully.": "Account updated successfully.", "Account:": "Account:", - "accounts": "Account Management", "Accounts / Machines": "Accounts / Machines", "Action": "Action", "Actions": "Actions", "Active": "Active", + "Active Slots": "Active Slots", "Active Status": "Active Status", "Ad Settings": "Ad Settings", "Add Account": "Add Account", @@ -31,102 +41,109 @@ "Add Machine": "Add Machine", "Add Machine Model": "Add Machine Model", "Add Maintenance Record": "Add Maintenance Record", + "Add Model": "Add Model", + "Add Pass Code": "Add Pass Code", + "Add Pickup Code": "Add Pickup Code", "Add Product": "Add Product", "Add Role": "Add Role", "Add Warehouse": "Add Warehouse", + "Add new inventory items to your warehouse": "Add new inventory items to your warehouse", "Address": "Address", + "Adjust Inventory": "Adjust Inventory", "Adjust Stock": "Adjust Stock", "Adjust Stock & Expiry": "Adjust Stock & Expiry", "Adjustment": "Adjustment", "Admin": "Admin", - "admin": "管理員", - "Admin display name": "Admin display name", "Admin Name": "Admin Name", "Admin Page": "Admin Page", "Admin Sellable Products": "Admin Sellable Products", + "Admin display name": "Admin display name", "Administrator": "Administrator", + "Advertisement List": "Advertisement List", + "Advertisement Management": "Advertisement Management", + "Advertisement Video/Image": "Advertisement Video/Image", "Advertisement assigned successfully": "Advertisement assigned successfully", "Advertisement assigned successfully.": "Advertisement assigned successfully.", "Advertisement created successfully": "Advertisement created successfully", "Advertisement created successfully.": "Advertisement created successfully.", "Advertisement deleted successfully": "Advertisement deleted successfully", "Advertisement deleted successfully.": "Advertisement deleted successfully.", - "Advertisement List": "Advertisement List", - "Advertisement Management": "Advertisement Management", "Advertisement updated successfully": "Advertisement updated successfully", "Advertisement updated successfully.": "Advertisement updated successfully.", - "Advertisement Video/Image": "Advertisement Video/Image", "Affiliated Company": "Affiliated Company", "Affiliated Unit": "Company Name", "Affiliation": "Company Name", - "AI Prediction": "AI Prediction", "Alert Summary": "Alert Summary", "Alerts": "Alerts", "Alerts Pending": "Alerts Pending", "All": "All", "All Affiliations": "All Companies", "All Categories": "All Categories", + "All Command Types": "All Command Types", "All Companies": "All Companies", "All Levels": "All Levels", "All Machines": "All Machines", - "All slots are fully stocked": "All slots are fully stocked", + "All Permissions": "All Permissions", "All Stable": "All Stable", "All Status": "All Status", "All Statuses": "All Statuses", + "All Statuses (Codes)": "All Statuses (Codes)", "All Times System Timezone": "All times are in system timezone", "All Types": "All Types", "All Warehouses": "All Warehouses", + "All slots are fully stocked": "All slots are fully stocked", "Amount": "Amount", "An error occurred while saving.": "An error occurred while saving.", - "analysis": "Analysis Management", "Analysis Management": "Analysis Management", "Analysis Permissions": "Analysis Permissions", - "API Token": "API Token", - "API Token Copied": "API Token Copied", - "API Token regenerated successfully.": "API Token regenerated successfully.", - "APK Versions": "APK Versions", - "app": "APP Management", - "APP Features": "APP Features", - "APP Management": "APP Management", - "APP Version": "APP Version", - "APP_ID": "APP_ID", - "APP_KEY": "APP_KEY", "Apply changes to all identical products in this machine": "Apply changes to all identical products in this machine", "Apply to all identical products in this machine": "Apply to all identical products in this machine", "Approved At": "Approved At", "Are you sure to delete this customer?": "Are you sure to delete this customer?", + "Are you sure to delete this warehouse? This action cannot be undone.": "Are you sure to delete this warehouse? This action cannot be undone.", + "Are you sure to disable this warehouse?": "Are you sure to disable this warehouse?", + "Are you sure you want to cancel this code?": "Are you sure you want to cancel this code?", "Are you sure you want to cancel this order? If the order has been prepared, stock will be returned to the warehouse.": "Are you sure you want to cancel this order? If the order has been prepared, stock will be returned to the warehouse.", + "Are you sure you want to cancel this pass code? This action cannot be undone.": "Are you sure you want to cancel this pass code? This action cannot be undone.", + "Are you sure you want to cancel this pickup code? This action cannot be undone.": "Are you sure you want to cancel this pickup code? This action cannot be undone.", "Are you sure you want to change the status of this item? This will affect its visibility on vending machines.": "Are you sure you want to change the status of this item? This will affect its visibility on vending machines.", "Are you sure you want to change the status of this product? Disabled products will not be visible on the machine.": "Are you sure you want to change the status of this product? Disabled products will not be visible on the machine.", "Are you sure you want to change the status? After disabling, this account will no longer be able to log in to the system.": "Are you sure you want to change the status? After disabling, this account will no longer be able to log in to the system.", "Are you sure you want to change the status? This may affect associated accounts.": "Are you sure you want to change the status? This may affect associated accounts.", + "Are you sure you want to confirm completion? This will update the machine stock.": "Are you sure you want to confirm completion? This will update the machine stock.", + "Are you sure you want to confirm preparation? This will deduct stock from the warehouse.": "Are you sure you want to confirm preparation? This will deduct stock from the warehouse.", "Are you sure you want to confirm this stock-in order? This action will update your inventory levels.": "Are you sure you want to confirm this stock-in order? This action will update your inventory levels.", + "Are you sure you want to confirm this transfer? This will deduct stock from source and add to target.": "Are you sure you want to confirm this transfer? This will deduct stock from source and add to target.", "Are you sure you want to deactivate this account? After deactivating, this account will no longer be able to log in to the system.": "Are you sure you want to deactivate this account? After deactivating, this account will no longer be able to log in to the system.", "Are you sure you want to delete this account?": "Are you sure you want to delete this account?", "Are you sure you want to delete this account? This action cannot be undone.": "Are you sure you want to delete this account? This action cannot be undone.", "Are you sure you want to delete this advertisement? This will also remove all assignments to machines.": "Are you sure you want to delete this advertisement? This will also remove all assignments to machines.", "Are you sure you want to delete this configuration?": "您確定要刪除此金流配置嗎?", "Are you sure you want to delete this configuration? This action cannot be undone.": "Are you sure you want to delete this configuration? This action cannot be undone.", + "Are you sure you want to delete this draft order? This action cannot be undone.": "Are you sure you want to delete this draft order? This action cannot be undone.", "Are you sure you want to delete this item? This action cannot be undone.": "Are you sure you want to delete this item? This action cannot be undone.", + "Are you sure you want to delete this pass code?": "Are you sure you want to delete this pass code?", "Are you sure you want to delete this product or category? This action cannot be undone.": "Are you sure you want to delete this product or category? This action cannot be undone.", "Are you sure you want to delete this product?": "Are you sure you want to delete this product?", "Are you sure you want to delete this product? All related historical translation data will also be removed.": "Are you sure you want to delete this product? All related historical translation data will also be removed.", "Are you sure you want to delete this role? This action cannot be undone.": "Are you sure you want to delete this role? This action cannot be undone.", "Are you sure you want to delete your account?": "Are you sure you want to delete your account?", + "Are you sure you want to disable this pass code? It will no longer be valid for machine access.": "Are you sure you want to disable this pass code? It will no longer be valid for machine access.", "Are you sure you want to proceed? This action cannot be undone.": "您確定要繼續嗎?此操作將無法復原。", "Are you sure you want to remove this assignment?": "Are you sure you want to remove this assignment?", "Are you sure you want to send this command?": "Are you sure you want to send this command?", + "Are you sure you want to start delivery?": "Are you sure you want to start delivery?", "Are you sure?": "Are you sure?", "Assign": "Assign", "Assign Advertisement": "Assign Advertisement", "Assign Machines": "Assign Machines", "Assign Personnel": "Assign Personnel", + "Assign Personnel (Optional)": "Assign Personnel (Optional)", "Assign replenishment staff": "Assign replenishment staff", "Assign warehouse managers": "Assign warehouse managers", "Assigned Machines": "Assigned Machines", "Assigned To": "Assigned To", "Assignment removed successfully.": "Assignment removed successfully.", - "audit": "Audit Management", "Audit Management": "Audit Management", "Audit Permissions": "Audit Permissions", "Authorization updated successfully": "Authorization updated successfully", @@ -151,9 +168,6 @@ "Basic Information": "Basic Information", "Basic Settings": "Basic Settings", "Basic Specifications": "Basic Specifications", - "basic-settings": "Basic Settings", - "basic.machines": "機台設定", - "basic.payment-configs": "客戶金流設定", "Batch": "Batch", "Batch No": "Batch No", "Batch Number": "Batch Number", @@ -163,20 +177,25 @@ "Branch Warehouses": "Branch Warehouses", "Business Type": "Business Type", "Buyout": "Buyout", - "by": "by", + "CASH": "CASH", + "CREATE STOCK TRANSFERS BETWEEN WAREHOUSES AND MACHINE RETURNS": "Create stock transfers between warehouses and machine returns", "Calculate Replenishment": "Calculate Replenishment", "Cancel": "Cancel", + "Cancel Code": "Cancel Code", "Cancel Order": "Cancel Order", + "Cancel Pass Code": "Cancel Pass Code", + "Cancel Pickup Code": "Cancel Pickup Code", "Cancel Purchase": "Cancel Purchase", "Cancelled": "Cancelled", + "Cannot Delete Role": "Cannot Delete Role", "Cannot cancel this order": "Cannot cancel this order", "Cannot change Super Admin status.": "Cannot change Super Admin status.", "Cannot delete advertisement being used by machines.": "Cannot delete advertisement being used by machines.", "Cannot delete company with active accounts.": "Cannot delete company with active accounts.", "Cannot delete model that is currently in use by machines.": "Cannot delete model that is currently in use by machines.", - "Cannot Delete Role": "Cannot Delete Role", "Cannot delete role with active users.": "Cannot delete role with active users.", "Cannot delete warehouse with existing stock": "Cannot delete warehouse with existing stock", + "Card Machine System": "Card Machine System", "Card Reader": "Card Reader", "Card Reader No": "Card Reader No", "Card Reader Reboot": "Card Reader Reboot", @@ -185,9 +204,9 @@ "Card System": "Card System", "Card Terminal": "Card Terminal", "Card Terminal System": "Card Terminal System", - "CASH": "CASH", "Cash Module": "Cash Module", "Cash Module Feature": "Cash Module Feature", + "Cash Module Function": "Cash Module Function", "Category": "Category", "Category Management": "Category Management", "Category Name": "Category Name", @@ -210,17 +229,19 @@ "Click here to re-send the verification email.": "Click here to re-send the verification email.", "Click to Open Dashboard": "Click to Open Dashboard", "Click to upload": "Click to upload", + "Close": "Close", "Close Panel": "Close Panel", + "Code": "Code", + "Code Copied": "Code Copied", "Coin/Banknote Machine": "Coin/Banknote Machine", "Coin/Bill Acceptor": "Coin/Bill Acceptor", "Command Center": "Command Center", "Command Confirmation": "Command Confirmation", + "Command Type": "Command Type", "Command error:": "Command error:", "Command has been queued successfully.": "Command has been queued successfully.", "Command not found": "Command not found", "Command queued successfully.": "Command queued successfully.", - "Command Type": "Command Type", - "companies": "Customer Management", "Company": "Company", "Company Code": "Company Code", "Company Information": "Company Information", @@ -228,6 +249,7 @@ "Company Name": "Company Name", "Complete movement history log": "Complete movement history log", "Completed": "Completed", + "Completed At": "Completed At", "Config Name": "Config Name", "Configuration Name": "Configuration Name", "Confirm": "Confirm", @@ -240,16 +262,18 @@ "Confirm Deletion": "Confirm Deletion", "Confirm Password": "Confirm Password", "Confirm Prepare": "Confirm Prepare", - "Confirm replenishment completed?": "Confirm replenishment completed?", "Confirm Status Change": "Confirm Status Change", "Confirm Stock-In": "Confirm Stock-In", "Confirm Stock-in Order": "Confirm Stock-in Order", - "Confirm this stock-in order?": "Confirm this stock-in order?", - "Confirm this transfer?": "Confirm this transfer?", "Confirm Transfer": "Confirm Transfer", "Confirm Transfer Order": "Confirm Transfer Order", + "Confirm replenishment completed?": "Confirm replenishment completed?", + "Confirm this stock-in order?": "Confirm this stock-in order?", + "Confirm this transfer?": "Confirm this transfer?", "Connected": "Connected", "Connecting...": "Connecting...", + "Connection lost (LWT)": "Connection lost (LWT)", + "Connection restored": "Connection restored", "Connectivity Status": "Connectivity Status", "Connectivity vs Sales Correlation": "連線狀態與銷售關聯分析", "Contact & Details": "Contact & Details", @@ -261,31 +285,35 @@ "Contract End": "Contract End", "Contract History": "Contract History", "Contract History Detail": "Contract History Detail", - "Contract information updated": "Contract information updated", "Contract Model": "Contract Model", "Contract Period": "Contract Period", "Contract Start": "Contract Start", "Contract Until (Optional)": "Contract Until (Optional)", + "Contract information updated": "Contract information updated", "Control": "Control", + "Copy": "Copy", + "Copy Code": "Copy Code", + "Copy Link": "Copy Link", "Cost": "Cost", "Coupons": "Coupons", "Create": "Create", - "Create a new role and assign permissions.": "Create a new role and assign permissions.", - "Create and manage replenishment orders from warehouse to machines": "Create and manage replenishment orders from warehouse to machines", "Create Config": "Create Config", "Create Machine": "Create Machine", - "Create main and branch warehouses": "Create main and branch warehouses", "Create New Role": "Create New Role", + "Create Pass Code": "Create Pass Code", "Create Payment Config": "Create Payment Config", "Create Product": "Create Product", "Create Replenishment Order": "Create Replenishment Order", - "Create replenishment orders and manage restocking from warehouse to machines": "Create replenishment orders and manage restocking from warehouse to machines", "Create Role": "Create Role", - "CREATE STOCK TRANSFERS BETWEEN WAREHOUSES AND MACHINE RETURNS": "Create stock transfers between warehouses and machine returns", - "Create stock transfers between warehouses and machine returns": "Create stock transfers between warehouses and machine returns", - "Create stock-in orders": "Create stock-in orders", "Create Sub Account Role": "Create Sub Account Role", "Create Transfer Order": "Create Transfer Order", + "Create a new role and assign permissions.": "Create a new role and assign permissions.", + "Create and manage replenishment orders from warehouse to machines": "Create and manage replenishment orders from warehouse to machines", + "Create main and branch warehouses": "Create main and branch warehouses", + "Create replenishment orders and manage restocking from warehouse to machines": "Create replenishment orders and manage restocking from warehouse to machines", + "Create stock replenishment for specific machines": "Create stock replenishment for specific machines", + "Create stock transfers between warehouses and machine returns": "Create stock transfers between warehouses and machine returns", + "Create stock-in orders": "Create stock-in orders", "Created At": "Created At", "Created By": "Created By", "Creation Time": "Creation Time", @@ -297,16 +325,18 @@ "Current Password": "Current Password", "Current Status": "Current Status", "Current Stock": "Current Stock", + "Current Stocks": "Current Stocks", "Current Type": "Current Type", "Current:": "Cur:", + "Customer Details": "Customer Details", + "Customer Info": "Customer Info", + "Customer List": "Customer List", + "Customer Management": "Customer Management", + "Customer Payment Config": "Customer Payment Config", "Customer and associated accounts disabled successfully.": "Customer and associated accounts disabled successfully.", "Customer created successfully.": "Customer created successfully", "Customer deleted successfully.": "Customer deleted successfully.", - "Customer Details": "Customer Details", "Customer enabled successfully.": "Customer enabled successfully.", - "Customer Info": "Customer Info", - "Customer Management": "Customer Management", - "Customer Payment Config": "Customer Payment Config", "Customer updated successfully.": "Customer updated successfully.", "Cycle Efficiency": "Cycle Efficiency", "Daily Revenue": "Daily Revenue", @@ -315,11 +345,10 @@ "Dashboard": "Dashboard", "Data Configuration": "Data Configuration", "Data Configuration Permissions": "Data Configuration Permissions", - "data-config": "Data Configuration", - "data-config.sub-account-roles": "子帳號角色", - "data-config.sub-accounts": "子帳號管理", + "Date": "Date", "Date Range": "Date Range", "Day Before": "Day Before", + "Days": "Days", "Default Donate": "Default Donate", "Default Not Donate": "Default Not Donate", "Define and manage security roles and permissions.": "Define and manage security roles and permissions.", @@ -328,6 +357,9 @@ "Delete Account": "Delete Account", "Delete Advertisement": "Delete Advertisement", "Delete Advertisement Confirmation": "Delete Advertisement Confirmation", + "Delete Code": "Delete Code", + "Delete Customer": "Delete Customer", + "Delete Pass Code": "Delete Pass Code", "Delete Permanently": "Delete Permanently", "Delete Product": "Delete Product", "Delete Product Confirmation": "Delete Product Confirmation", @@ -339,6 +371,7 @@ "Delivery door opened": "Delivery door opened", "Deposit Bonus": "Deposit Bonus", "Describe the repair or maintenance status...": "Describe the repair or maintenance status...", + "Description / Name": "Description / Name", "Deselect All": "Deselect All", "Detail": "Detail", "Details": "Details", @@ -346,35 +379,32 @@ "Device Status Logs": "Device Status Logs", "Devices": "Devices", "Disable": "Disable", + "Disable Code": "Disable Code", + "Disable Customer Confirmation": "Disable Customer Confirmation", + "Disable Pass Code": "Disable Pass Code", "Disable Product Confirmation": "Disable Product Confirmation", + "Disable Warehouse": "Disable Warehouse", "Disabled": "Disabled", + "Disabling this customer will also disable all accounts under this customer. Are you sure you want to continue?": "Disabling this customer will also disable all accounts under this customer. Are you sure you want to continue?", "Discord Notifications": "Discord Notifications", + "Dispense Failed": "Dispense Failed", + "Dispense Success": "Dispense Success", "Dispense error (0407)": "Dispense error (0407)", "Dispense error (0408)": "Dispense error (0408)", "Dispense error (0409)": "Dispense error (0409)", "Dispense error (040A)": "Dispense error (040A)", - "Dispense Failed": "Dispense Failed", "Dispense stopped": "Dispense stopped", - "Dispense Success": "Dispense Success", "Dispense successful": "Dispense successful", "Dispensing": "Dispensing", "Dispensing in progress": "Dispensing in progress", "Display Material Code": "Display Material Code", + "Displaying": "Displaying", "Door Closed": "Door Closed", "Door Opened": "Door Opened", + "Download Image": "Download Image", "Draft": "Draft", "Duration": "Duration", "Duration (Seconds)": "Duration (Seconds)", - "e.g. 500ml / 300g": "e.g. 500ml / 300g", - "e.g. John Doe": "e.g. John Doe", - "e.g. johndoe": "e.g. johndoe", - "e.g. Taiwan Star": "e.g. Taiwan Star", - "e.g. TWSTAR": "e.g. TWSTAR", - "e.g., Beverage": "e.g., Beverage", - "e.g., Company Standard Pay": "e.g., Company Standard Pay", - "e.g., Drinks": "e.g., Drinks", - "e.g., Taipei Station": "e.g., Taipei Station", - "e.g., お飲み物": "e.g., O-Nomimono", "E.SUN Bank Scan": "E.SUN Bank Scan", "E.SUN Pay": "E.SUN Pay", "E.SUN QR Pay": "E.SUN QR Pay", @@ -383,6 +413,8 @@ "EASY_MERCHANT_ID": "EASY_MERCHANT_ID", "ECPay Invoice": "ECPay Invoice", "ECPay Invoice Settings Description": "ECPay Electronic Invoice Settings", + "ESUN": "ESUN", + "ESUN Scan Pay": "ESUN Scan Pay", "Edit": "Edit", "Edit Account": "Edit Account", "Edit Advertisement": "Edit Advertisement", @@ -401,6 +433,7 @@ "Edit Settings": "Edit Settings", "Edit Slot": "Edit Slot", "Edit Sub Account Role": "Edit Sub Account Role", + "Edit Warehouse": "Edit Warehouse", "Electronic Invoice": "Electronic Invoice", "Elevator descending": "Elevator descending", "Elevator descent error": "Elevator descent error", @@ -409,7 +442,10 @@ "Elevator rising": "Elevator rising", "Elevator sensor error": "Elevator sensor error", "Email": "Email", + "Emblem / Label": "Emblem / Label", "Empty": "Empty", + "Empty Slot": "Empty Slot", + "Empty Slots": "Empty Slots", "Enable": "Enable", "Enable Material Code": "Enable Material Code", "Enable Points": "Enable Points", @@ -418,6 +454,7 @@ "Enabled Features": "Enabled Features", "Enabled/Disabled": "Enabled/Disabled", "End Date": "End Date", + "End Time": "End Time", "Engineer": "Engineer", "English": "English", "Ensure your account is using a long, random password to stay secure.": "Ensure your account is using a long, random password to stay secure.", @@ -437,26 +474,28 @@ "Error processing request": "Error processing request", "Error report accepted": "Error report accepted", "Error: :message (:code)": "Error: :message (:code)", - "ESUN": "ESUN", - "ESUN Scan Pay": "ESUN Scan Pay", + "Estimated Expiry": "Estimated Expiry", "Execute": "Execute", "Execute Change": "Execute Change", "Execute Delivery Now": "Execute Delivery Now", - "Execute maintenance and operational commands remotely": "Execute maintenance and operational commands remotely", "Execute Remote Change": "Execute Remote Change", + "Execute maintenance and operational commands remotely": "Execute maintenance and operational commands remotely", "Execution Time": "Execution Time", "Exp": "Exp", + "Expected Expiry": "Expected Expiry", + "Expected Expiry Date & Time": "Expected Expiry Date & Time", "Expected Stock": "Expected Stock", "Expired": "Expired", "Expired / Disabled": "Expired / Disabled", "Expired Time": "Expired Time", + "Expires At": "Expires At", "Expiring": "Expiring", "Expiry": "Expiry", "Expiry Date": "Expiry Date", - "Expiry date tracking and warnings": "Expiry date tracking and warnings", "Expiry Management": "Expiry Management", + "Expiry Time": "Expiry Time", + "Expiry date tracking and warnings": "Expiry date tracking and warnings", "Failed": "Failed", - "failed": "failed", "Failed to fetch machine data.": "Failed to fetch machine data.", "Failed to load permissions": "Failed to load permissions", "Failed to load preview": "Failed to load preview", @@ -465,17 +504,18 @@ "Failed to update machine images: ": "Failed to update machine images: ", "Feature Settings": "Feature Settings", "Feature Toggles": "Feature Toggles", - "files selected": "files selected", - "Fill in the device repair or maintenance details": "Fill in the device repair or maintenance details", - "Fill in the product details below": "Fill in the product details below", "Fill Quantity": "Fill Quantity", "Fill Rate": "Fill Rate", - "Firmware updated to :version": "Firmware updated to :version", + "Fill in the device repair or maintenance details": "Fill in the device repair or maintenance details", + "Fill in the product details below": "Fill in the product details below", + "Filter": "Filter", + "Filter by Warehouse Presence": "Filter by Warehouse Presence", "Firmware Version": "Firmware Version", + "Firmware updated to :version": "Firmware updated to :version", "Fleet Avg OEE": "Fleet Avg OEE", "Fleet Performance": "Fleet Performance", - "Force end current session": "Force end current session", "Force End Session": "Force End Session", + "Force end current session": "Force end current session", "From": "From", "From Machine": "From Machine", "From Warehouse": "From Warehouse", @@ -483,14 +523,20 @@ "Full Access": "Full Access", "Full Name": "Full Name", "Full Points": "Full Points", + "Functional Settings": "Functional Settings", "Games": "Games", "General permissions not linked to a specific menu.": "未連結到特定選單的一般權限。", + "Generate": "Generate", + "Generate New Code": "Generate New Code", + "Generate Pickup Code": "Generate Pickup Code", + "Generate and manage one-time pickup codes for customers": "Generate and manage one-time pickup codes for customers", "Gift Definitions": "Gift Definitions", "Global roles accessible by all administrators.": "Global roles accessible by all administrators.", "Go Back": "Go Back", "Goods & System Settings": "Goods & System Settings", "Got it": "Got it", "Grant UI Access": "Grant UI Access", + "Grid View": "Grid View", "Half Points": "Half Points", "Half Points Amount": "Half Points Amount", "Hardware & Network": "Hardware & Network", @@ -508,36 +554,43 @@ "Hopper error (0424)": "Hopper error (0424)", "Hopper heating timeout": "Hopper heating timeout", "Hopper overheated": "Hopper overheated", - "hours ago": "hours ago", + "Hrs": "Hrs", + "ITEM": "ITEM", "Identity & Codes": "Identity & Codes", "Image": "Image", - "image": "image", + "Image Downloaded": "Image Downloaded", "Immediate": "Immediate", "In Stock": "In Stock", "Includes Credit Card/Mobile Pay": "Includes Credit Card/Mobile Pay", "Indefinite": "Indefinite", "Info": "Info", "Initial Admin Account": "Initial Admin Account", - "Initial contract registration": "Initial contract registration", "Initial Role": "Initial Role", + "Initial contract registration": "Initial contract registration", "Installation": "Installation", + "Insufficient stock for transfer": "Insufficient stock for transfer", "Invalid personnel selection": "Invalid personnel selection", "Invalid status transition": "Invalid status transition", + "Inventory": "Inventory", "Inventory Alerts": "Inventory Alerts", "Inventory Management": "Inventory Management", + "Inventory Overview": "Inventory Overview", "Inventory Stable": "Inventory Stable", "Inventory synced with machine": "Inventory synced with machine", "Invoice Status": "Invoice Status", - "ITEM": "ITEM", + "Item List": "Item List", "Items": "Items", - "items": "items", - "Japanese": "Japanese", "JKO_MERCHANT_ID": "JKO_MERCHANT_ID", - "john@example.com": "john@example.com", + "Japanese": "Japanese", "Joined": "Joined", "Just now": "Just now", "Key": "Key", "Key No": "Key No", + "LEVEL TYPE": "LEVEL TYPE", + "LINE Pay Direct": "LINE Pay Direct", + "LINE Pay Direct Settings Description": "LINE Pay Official Direct Connection Settings", + "LINE_MERCHANT_ID": "LINE_MERCHANT_ID", + "LIVE": "LIVE", "Last Communication": "Last Communication", "Last Heartbeat": "Last Heartbeat", "Last Page": "Last Page", @@ -547,23 +600,21 @@ "Last Updated": "Last Updated", "Latitude": "Latitude", "Lease": "Lease", + "Leave empty for permanent code": "Leave empty for permanent code", + "Leave empty or 0 for permanent code": "Leave empty or 0 for permanent code", "Level": "Level", - "LEVEL TYPE": "LEVEL TYPE", - "line": "Line Management", "Line Coupons": "Line Coupons", "Line Machines": "Line Machines", "Line Management": "Line Management", "Line Members": "Line Members", "Line Official Account": "Line Official Account", "Line Orders": "Line Orders", - "LINE Pay Direct": "LINE Pay Direct", - "LINE Pay Direct Settings Description": "LINE Pay Official Direct Connection Settings", "Line Permissions": "Line Permissions", "Line Products": "Line Products", - "LINE_MERCHANT_ID": "LINE_MERCHANT_ID", "LinePay": "LinePay", "LinePay Payment": "LinePay Payment", - "LIVE": "LIVE", + "Link": "Link", + "Link Copied": "Link Copied", "Live Fleet Updates": "Live Fleet Updates", "Loading Cabinet...": "Loading Cabinet...", "Loading Data": "Loading Data", @@ -579,8 +630,8 @@ "Lock Page Unlock": "Unlock Locked Page", "Locked Page": "Locked Page", "Log Time": "Log Time", - "Login failed: :account": "Login failed: :account", "Login History": "Login History", + "Login failed: :account": "Login failed: :account", "Logout": "Logout", "Logs": "Logs", "Longitude": "Longitude", @@ -589,32 +640,26 @@ "Low Stock Alerts": "Low Stock Alerts", "Low stock and out-of-stock alerts": "Low stock and out-of-stock alerts", "Loyalty & Features": "Loyalty & Features", + "Machine": "Machine", + "Machine / Slot": "Machine / Slot", "Machine Advertisement Settings": "Machine Advertisement Settings", "Machine Count": "Machine Count", - "Machine created successfully.": "Machine created successfully.", "Machine Details": "Machine Details", "Machine Distribution": "Machine Distribution", "Machine Distribution Map": "Machine Distribution Map", "Machine Images": "Machine Images", - "Machine images updated successfully.": "Machine images updated successfully.", "Machine Info": "Machine Info", "Machine Information": "Machine Information", "Machine Inventory": "Machine Inventory", "Machine Inventory Overview": "Machine Inventory Overview", - "Machine is heartbeat normal": "Machine is heartbeat normal", "Machine List": "Machine List", "Machine Login Logs": "Machine Login Logs", "Machine Logs": "Machine Logs", "Machine Management": "Machine Management", "Machine Management Permissions": "Machine Management Permissions", "Machine Model": "Machine Model", - "Machine model created successfully.": "Machine model created successfully.", - "Machine model deleted successfully.": "Machine model deleted successfully.", "Machine Model Settings": "Machine Model Settings", - "Machine model updated successfully.": "Machine model updated successfully.", "Machine Name": "Machine Name", - "Machine normal": "Machine normal", - "Machine not found": "Machine not found", "Machine Permissions": "Machine Permissions", "Machine Reboot": "Machine Reboot", "Machine Registry": "Machine Registry", @@ -624,15 +669,25 @@ "Machine Return": "Machine Return", "Machine Serial No": "Machine Serial No", "Machine Settings": "Machine Settings", - "Machine settings updated successfully.": "Machine settings updated successfully.", "Machine Status": "Machine Status", "Machine Status List": "Machine Status List", + "Machine Stock": "Machine Stock", + "Machine System Settings": "Machine System Settings", + "Machine Utilization": "Machine Utilization", + "Machine created successfully.": "Machine created successfully.", + "Machine images updated successfully.": "Machine images updated successfully.", + "Machine is heartbeat normal": "Machine is heartbeat normal", + "Machine model created successfully.": "Machine model created successfully.", + "Machine model deleted successfully.": "Machine model deleted successfully.", + "Machine model updated successfully.": "Machine model updated successfully.", + "Machine normal": "Machine normal", + "Machine not found": "Machine not found", + "Machine permissions updated successfully.": "Machine permissions updated successfully.", + "Machine settings updated successfully.": "Machine settings updated successfully.", "Machine to Warehouse": "Machine to Warehouse", "Machine to warehouse returns": "Machine to warehouse returns", "Machine updated successfully.": "Machine updated successfully.", - "Machine Utilization": "Machine Utilization", "Machines": "Machines", - "machines": "Machine Management", "Machines Online": "Machines Online", "Main": "Main", "Main Warehouses": "Main Warehouses", @@ -644,22 +699,24 @@ "Maintenance Photos": "Maintenance Photos", "Maintenance QR": "Maintenance QR", "Maintenance QR Code": "Maintenance QR Code", - "Maintenance record created successfully": "Maintenance record created successfully", "Maintenance Records": "Maintenance Records", + "Maintenance record created successfully": "Maintenance record created successfully", "Manage": "Manage", "Manage Account Access": "管理帳號存取", + "Manage Expiry": "Manage Expiry", "Manage ad materials and machine playback settings": "Manage ad materials and machine playback settings", "Manage administrative and tenant accounts": "Manage administrative and tenant accounts", "Manage all tenant accounts and validity": "Manage all tenant accounts and validity", - "Manage Expiry": "Manage Expiry", "Manage inventory and monitor expiry dates across all machines": "Manage inventory and monitor expiry dates across all machines", "Manage machine access permissions": "Manage machine access permissions", + "Manage multi-use authorization codes for testing and maintenance": "Manage multi-use authorization codes for testing and maintenance", "Manage stock levels, stock-in orders, and movement history": "Manage stock levels, stock-in orders, and movement history", "Manage stock transfers between warehouses and machine returns": "Manage stock transfers between warehouses and machine returns", "Manage warehouse stock levels, stock-in orders, adjustments, and movement history": "Manage warehouse stock levels, stock-in orders, adjustments, and movement history", "Manage your ad material details": "Manage your ad material details", "Manage your catalog, categories, and inventory settings.": "Manage your catalog, categories, and inventory settings.", "Manage your catalog, prices, and multilingual details.": "Manage your catalog, prices, and multilingual details.", + "Manage your company's sub-accounts and role permissions": "Manage your company's sub-accounts and role permissions", "Manage your machine fleet and operational data": "Manage your machine fleet and operational data", "Manage your profile information, security settings, and login history": "Manage your profile information, security settings, and login history", "Manage your warehouses, including main and branch warehouses": "Manage your warehouses, including main and branch warehouses", @@ -670,9 +727,12 @@ "Material Name": "Material Name", "Material Type": "Material Type", "Max": "Max", + "Max 24 Hours": "Max 24 Hours", "Max 3": "Max 3", "Max 50MB": "Max 50MB", "Max 5MB": "Max 5MB", + "Max 720 hours (30 days)": "Max 720 hours (30 days)", + "Max :max hours": "Max :max hours", "Max Capacity": "Max Capacity", "Max Capacity:": "Max Capacity:", "Max Stock": "Max Stock", @@ -683,9 +743,836 @@ "Member Price": "Member Price", "Member Status": "Member Status", "Member System": "Member System", - "members": "Member Management", "Membership Tiers": "Membership Tiers", "Menu Permissions": "Menu Permissions", + "Merchant IDs": "Merchant IDs", + "Merchant payment gateway settings management": "Merchant payment gateway settings management", + "Message": "Message", + "Message Content": "Message Content", + "Message Display": "Message Display", + "Microwave door error": "Microwave door error", + "Microwave door opened": "Microwave door opened", + "Min 8 characters": "Min 8 characters", + "Model": "Model", + "Model Name": "Model Name", + "Model changed to :model": "Model changed to :model", + "Models": "Models", + "Modification History": "Modification History", + "Modifying your own administrative permissions may result in losing access to certain system functions.": "Modifying your own administrative permissions may result in losing access to certain system functions.", + "Monitor and manage stock levels across your fleet": "Monitor and manage stock levels across your fleet", + "Monitor events and system activity across your vending fleet.": "Monitor events and system activity across your vending fleet.", + "Monitor warehouse stock summary": "Monitor warehouse stock summary", + "Monthly Transactions": "Monthly Transactions", + "Monthly cumulative revenue overview": "Monthly cumulative revenue overview", + "Motor not stopped": "Motor not stopped", + "Movement History": "Movement History", + "Movement Logs": "Movement Logs", + "Multilingual Names": "Multilingual Names", + "N/A": "N/A", + "Name": "Name", + "Name / Machine": "Name / Machine", + "Name in English": "Name in English", + "Name in Japanese": "Name in Japanese", + "Name in Traditional Chinese": "Name in Traditional Chinese", + "Needs replenishment": "Needs replenishment", + "Never Connected": "Never Connected", + "New Command": "New Command", + "New Machine Name": "New Machine Name", + "New Password": "New Password", + "New Password (leave blank to keep current)": "New Password (leave blank to keep current)", + "New Record": "New Record", + "New Replenishment": "New Replenishment", + "New Role": "New Role", + "New Stock-In Order": "New Stock-In Order", + "New Sub Account Role": "New Sub Account Role", + "New Transfer": "New Transfer", + "Next": "Next", + "No Actions": "No Actions", + "No Company": "No Company", + "No Invoice": "No Invoice", + "No Location": "No Location", + "No Machine Selected": "No Machine Selected", + "No accounts found": "No accounts found", + "No active cargo lanes found": "No active cargo lanes found", + "No additional notes": "No additional notes", + "No address information": "No address information", + "No advertisements found.": "No advertisements found.", + "No alert summary": "No alert summary", + "No assignments": "No assignments", + "No categories found.": "No categories found.", + "No command history": "No command history", + "No configurations found": "No configurations found", + "No content provided": "No content provided", + "No customers found": "No customers found", + "No data available": "No data available", + "No file uploaded.": "No file uploaded.", + "No heartbeat for over 30 seconds": "No heartbeat for over 30 seconds", + "No history records": "No history records", + "No images uploaded": "No images uploaded", + "No location set": "No location set", + "No login history yet": "No login history yet", + "No logs found": "No logs found", + "No machines assigned": "未分配機台", + "No machines available": "No machines available", + "No machines available in this company.": "此客戶目前沒有可供分配的機台。", + "No machines found": "No machines found", + "No maintenance records found": "No maintenance records found", + "No matching logs found": "No matching logs found", + "No matching machines": "No matching machines", + "No materials available": "No materials available", + "No movement records found": "No movement records found", + "No pass codes found": "No pass codes found", + "No permissions": "No permissions", + "No pickup codes found": "No pickup codes found", + "No products found in this warehouse": "No products found in this warehouse", + "No products found matching your criteria.": "No products found matching your criteria.", + "No records found": "No records found", + "No replenishment orders found": "No replenishment orders found", + "No results found": "No results found", + "No roles available": "No roles available", + "No roles found.": "No roles found.", + "No slot data": "No slot data", + "No slot data available": "No slot data available", + "No slots found": "No slots found", + "No slots need replenishment": "No slots need replenishment", + "No stock data found": "No stock data found", + "No stock-in orders found": "No stock-in orders found", + "No transfer orders found": "No transfer orders found", + "No users found": "No users found", + "No warehouses found": "No warehouses found", + "None": "None", + "Normal": "Normal", + "Not Used": "Not Used", + "Not Used Description": "不使用第三方支付介接", + "Note": "Note", + "Note (optional)": "Note (optional)", + "Notes": "Notes", + "OEE": "OEE", + "OEE Efficiency Trend": "OEE Efficiency Trend", + "OEE Score": "OEE Score", + "OEE.Activity": "Activity", + "OEE.Errors": "Errors", + "OEE.Hours": "Hours", + "OEE.Orders": "Orders", + "OEE.Sales": "Sales", + "Offline": "Offline", + "Offline Machines": "Offline Machines", + "Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.": "Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.", + "Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.": "Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.", + "One-click replenishment order generation": "One-click replenishment order generation", + "Ongoing": "Ongoing", + "Online": "Online", + "Online Duration": "Online Duration", + "Online Machines": "Online Machines", + "Online Status": "Online Status", + "Only system roles can be assigned to platform administrative accounts.": "Only system roles can be assigned to platform administrative accounts.", + "Operation Note": "Operation Note", + "Operation Records": "Operation Records", + "Operation failed": "Operation failed", + "Operational Parameters": "Operational Parameters", + "Operations": "Operations", + "Operator": "Operator", + "Optimal": "Optimal", + "Optimized Performance": "Optimized Performance", + "Optimized for display. Supported formats: JPG, PNG, WebP.": "Optimized for display. Supported formats: JPG, PNG, WebP.", + "Optional": "Optional", + "Optional remarks": "Optional remarks", + "Optional remarks...": "Optional remarks...", + "Order Details": "Order Details", + "Order Info": "Order Info", + "Order Management": "Order Management", + "Order No.": "Order No.", + "Order already completed": "Order already completed", + "Order already processed": "Order already processed", + "Order completed and stock updated": "Order completed and stock updated", + "Order has been cancelled": "Order has been cancelled", + "Order is now in delivery": "Order is now in delivery", + "Order prepared successfully, stock deducted": "Order prepared successfully, stock deducted", + "Orders": "Orders", + "Original": "Original", + "Original Type": "Original Type", + "Original:": "Ori:", + "Other Features": "Other Features", + "Other Permissions": "Other Permissions", + "Others": "Others", + "Out of Stock": "Out of Stock", + "Out of stock.": "Out of stock.", + "Output Count": "Output Count", + "Overall Capacity": "Overall Capacity", + "Owner": "Company Name", + "PARTNER_KEY": "PARTNER_KEY", + "PI_MERCHANT_ID": "PI_MERCHANT_ID", + "PNG, JPG up to 2MB": "PNG, JPG up to 2MB", + "PNG, JPG, WEBP up to 10MB": "PNG, JPG, WEBP up to 10MB", + "POS Reboot": "POS Reboot", + "PS_LEVEL": "PS_LEVEL", + "PS_MERCHANT_ID": "PS_MERCHANT_ID", + "Page 0": "Offline", + "Page 1": "Home", + "Page 2": "Vending", + "Page 3": "Admin", + "Page 4": "Restock", + "Page 5": "Tutorial", + "Page 6": "Purchasing", + "Page 60": "Dispense Success", + "Page 61": "Slot Test", + "Page 610": "Purchase Ended", + "Page 611": "Store Gift", + "Page 612": "Dispense Failed", + "Page 62": "Payment Selection", + "Page 63": "Waiting for Payment", + "Page 64": "Dispensing", + "Page 65": "Receipt", + "Page 66": "Passcode", + "Page 67": "Pickup Code", + "Page 68": "Message", + "Page 69": "Purchase Cancelled", + "Page 7": "Locked", + "Page Lock Status": "Page Lock Status", + "Parameters": "Parameters", + "Pass Code": "Pass Code", + "Pass Code (8 Digits)": "Pass Code (8 Digits)", + "Pass Code Management": "Pass Code Management", + "Pass Code QR": "Pass Code QR", + "Pass Code Ticket": "Pass Code Ticket", + "Pass Codes": "Pass Codes", + "Pass code created: :code": "Pass code created: :code", + "Pass code deleted.": "Pass code deleted.", + "Pass code disabled.": "Pass code disabled.", + "Pass code updated.": "Pass code updated.", + "Password": "Password", + "Password updated successfully.": "密碼已成功變更。", + "Payment & Invoice": "Payment & Invoice", + "Payment Buffer Seconds": "Payment Buffer Seconds", + "Payment Config": "Payment Config", + "Payment Configuration": "Payment Configuration", + "Payment Configuration created successfully.": "Payment Configuration created successfully.", + "Payment Configuration deleted successfully.": "Payment Configuration deleted successfully.", + "Payment Configuration updated successfully.": "Payment Configuration updated successfully.", + "Payment Selection": "Payment Selection", + "Pending": "Pending", + "Per Page": "Per Page", + "Performance": "Performance", + "Permanent": "Permanent", + "Permanent Code": "Permanent Code", + "Permanently Delete Account": "Permanently Delete Account", + "Permission Settings": "Permission Settings", + "Permission Tags": "Permission Tags", + "Permissions": "Permissions", + "Permissions updated successfully": "Authorization updated successfully", + "Personnel assigned successfully": "Personnel assigned successfully", + "Phone": "Phone", + "Photo Slot": "Photo Slot", + "Picked up": "Picked up", + "Picked up Time": "Picked up Time", + "Pickup Code": "Pickup Code", + "Pickup Code (8 Digits)": "Pickup Code (8 Digits)", + "Pickup Codes": "Pickup Codes", + "Pickup Ticket": "Pickup Ticket", + "Pickup code cancelled.": "Pickup code cancelled.", + "Pickup code generated: :code": "Pickup code generated: :code", + "Pickup code updated.": "Pickup code updated.", + "Pickup door closed": "Pickup door closed", + "Pickup door error": "Pickup door error", + "Pickup door not closed": "Pickup door not closed", + "Playback Order": "Playback Order", + "Please Select Slot first": "Please Select Slot first", + "Please check the following errors:": "Please check the following errors:", + "Please check the form for errors.": "Please check the form for errors.", + "Please confirm the details below": "Please confirm the details below", + "Please enter address first": "Please enter address first", + "Please enter configuration name": "Please enter configuration name", + "Please select a company": "Please select a company", + "Please select a machine": "Please select a machine", + "Please select a machine first": "Please select a machine first", + "Please select a machine model": "Please select a machine model", + "Please select a machine to view and manage its advertisements.": "Please select a machine to view and manage its advertisements.", + "Please select a machine to view metrics": "請選擇機台以查看數據", + "Please select a material": "Please select a material", + "Please select a slot": "Please select a slot", + "Please select warehouse and machine": "Please select warehouse and machine", + "Point Rules": "Point Rules", + "Point Settings": "Point Settings", + "Points": "Points", + "Points Rule": "Points Rule", + "Points Settings": "Points Settings", + "Points toggle": "Points toggle", + "Position": "Position", + "Prepared": "Prepared", + "Preparing": "Preparing", + "Preview": "Preview", + "Previous": "Previous", + "Price / Member": "Price / Member", + "Pricing Information": "Pricing Information", + "Product": "Product", + "Product / Slot": "Product / Slot", + "Product / Stock": "Product / Stock", + "Product Count": "Product Count", + "Product Details": "Product Details", + "Product ID": "Product ID", + "Product Image": "Product Image", + "Product Info": "Product Info", + "Product List": "Product List", + "Product Management": "Product Management", + "Product Name": "Product Name", + "Product Name (Multilingual)": "Product Name (Multilingual)", + "Product Reports": "Product Reports", + "Product Status": "商品狀態", + "Product created successfully": "Product created successfully", + "Product deleted successfully": "Product deleted successfully", + "Product empty": "Product empty", + "Product status updated to :status": "Product status updated to :status", + "Product updated successfully": "Product updated successfully", + "Production Company": "Production Company", + "Products": "Products", + "Products / Stock": "Products / Stock", + "Profile": "Profile", + "Profile Information": "Profile Information", + "Profile Settings": "Profile Settings", + "Profile updated successfully.": "Profile updated successfully.", + "Promotions": "Promotions", + "Protected": "Protected", + "Publish": "Publish", + "Publish Time": "Publish Time", + "Purchase Audit": "Purchase Audit", + "Purchase Finished": "Purchase Finished", + "Purchases": "Purchases", + "Purchasing": "Purchasing", + "QR": "QR", + "QR CODE": "QR CODE", + "QR Scan Payment": "QR Scan Payment", + "Qty": "Qty", + "Qty Change": "Qty Change", + "Quality": "品質 (Quality)", + "Quantity": "Quantity", + "Questionnaire": "Questionnaire", + "Quick Expiry Check": "Quick Expiry Check", + "Quick Maintenance": "Quick Maintenance", + "Quick Replenish": "Quick Replenish", + "Quick Select": "快速選取", + "Quick replenishment from this view": "Quick replenishment from this view", + "Quick search...": "Quick search...", + "Real-time OEE analysis awaits": "即時 OEE 分析預備中", + "Real-time Operation Logs (Last 50)": "Real-time Operation Logs (Last 50)", + "Real-time fleet efficiency and OEE metrics": "Real-time fleet efficiency and OEE metrics", + "Real-time inventory status across all machines with expiry tracking": "Real-time inventory status across all machines with expiry tracking", + "Real-time monitoring across all machines": "Real-time monitoring across all machines", + "Real-time monitoring and adjustment of cargo lane inventory and expiration dates": "Real-time monitoring and adjustment of cargo lane inventory and expiration dates", + "Real-time performance analytics": "Real-time performance analytics", + "Real-time slot-level inventory across all machines": "Real-time slot-level inventory across all machines", + "Real-time status monitoring": "Real-time status monitoring", + "Reason for this command...": "Reason for this command...", + "Recalculate": "Recalculate", + "Receipt Printing": "Receipt Printing", + "Recent Commands": "Recent Commands", + "Recent Login": "Recent Login", + "Recently reported errors or warnings in logs": "Recently reported errors or warnings in logs", + "Records": "Records", + "Regenerate": "Regenerate", + "Regenerating the token will disconnect the physical machine until it is updated. Continue?": "Regenerating the token will disconnect the physical machine until it is updated. Continue?", + "Remote Change": "Remote Change", + "Remote Checkout": "Remote Checkout", + "Remote Command Center": "Remote Command Center", + "Remote Dispense": "Remote Dispense", + "Remote Lock": "Remote Lock", + "Remote Management": "Remote Management", + "Remote Permissions": "Remote Permissions", + "Remote Reboot": "Remote Checkout", + "Remote Settlement": "Remote Settlement", + "Remote dispense successful for slot :slot": "Remote dispense successful for slot :slot", + "Removal": "Removal", + "Repair": "Repair", + "Replenish": "Replenish", + "Replenishment": "Replenishment", + "Replenishment Audit": "Replenishment Audit", + "Replenishment Details": "Replenishment Details", + "Replenishment Items": "Replenishment Items", + "Replenishment Orders": "Replenishment Orders", + "Replenishment Page": "Replenishment Page", + "Replenishment Records": "Replenishment Records", + "Replenishment Staff": "Replenishment Staff", + "Replenishment cancelled, stock returned": "Replenishment cancelled, stock returned", + "Replenishment completed": "Replenishment completed", + "Replenishment history": "Replenishment history", + "Replenishment order confirmed and inventory updated": "Replenishment order confirmed and inventory updated", + "Replenishment order created": "Replenishment order created", + "Replenishment order created successfully": "Replenishment order created successfully", + "Replenishment prepare": "Replenishment prepare", + "Replenishments": "Replenishments", + "Reporting Period": "Reporting Period", + "Reservation Members": "Reservation Members", + "Reservation System": "Reservation System", + "Reservations": "Reservations", + "Reset Filters": "Reset Filters", + "Reset POS terminal": "Reset POS terminal", + "Resolve Coordinates": "Resolve Coordinates", + "Restart entire machine": "Restart entire machine", + "Restock report accepted": "Restock report accepted", + "Restrict UI Access": "Restrict UI Access", + "Restrict machine UI access": "Restrict machine UI access", + "Result reported": "Result reported", + "Retail Price": "Retail Price", + "Returns": "Returns", + "Risk": "Risk", + "Role": "Role", + "Role Identification": "Role Identification", + "Role Management": "Role Management", + "Role Name": "Role Name", + "Role Permissions": "Role Permissions", + "Role Settings": "Role Permissions", + "Role Type": "Role Type", + "Role created successfully.": "Role created successfully.", + "Role deleted successfully.": "Role deleted successfully.", + "Role name already exists in this company.": "Role name already exists in this company.", + "Role not found.": "Role not found.", + "Role updated successfully.": "Role updated successfully.", + "Roles": "Role Permissions", + "Roles scoped to specific customer companies.": "Roles scoped to specific customer companies.", + "Running": "Running", + "Running Status": "Running Status", + "SYSTEM": "SYSTEM", + "Safety Stock": "Safety Stock", + "Sale Price": "Sale Price", + "Sales": "Sales", + "Sales Activity": "Sales Activity", + "Sales Management": "Sales Management", + "Sales Permissions": "Sales Permissions", + "Sales Records": "Sales Records", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Config": "Save Config", + "Save Material": "Save Material", + "Save Permissions": "Save Permissions", + "Save Settings": "Save Settings", + "Save error:": "Save error:", + "Saved.": "Saved.", + "Saving...": "Saving...", + "Scale level and access control": "Scale level and access control", + "Scan Pay": "Scan Pay", + "Scan QR Code": "Scan QR Code", + "Scan this code at the machine or share the link with the customer.": "Scan this code at the machine or share the link with the customer.", + "Scan this code at the machine to authorize testing or maintenance.": "Scan this code at the machine to authorize testing or maintenance.", + "Scan this code to quickly access the maintenance form for this device.": "Scan this code to quickly access the maintenance form for this device.", + "Scan to authorize testing or maintenance": "Scan to authorize testing or maintenance", + "Scan to pick up your product": "Scan to pick up your product", + "Schedule": "Schedule", + "Search Company Title...": "Search Company Title...", + "Search Machine...": "Search Machine...", + "Search Product": "Search Product", + "Search accounts...": "Search accounts...", + "Search by code, machine name or serial...": "Search by code, machine name or serial...", + "Search by code, name or machine...": "Search by code, name or machine...", + "Search by name or S/N...": "Search by name or S/N...", + "Search by name...": "Search by name...", + "Search cargo lane": "Search cargo lane", + "Search categories...": "Search categories...", + "Search company...": "Search company...", + "Search configurations...": "Search configurations...", + "Search customers...": "Search customers...", + "Search machines by name or serial...": "Search machines by name or serial...", + "Search machines...": "Search machines...", + "Search models...": "Search models...", + "Search order number...": "Search order number...", + "Search products...": "Search products...", + "Search roles...": "Search roles...", + "Search serial no or name...": "Search serial no or name...", + "Search serial or machine...": "Search serial or machine...", + "Search serial or name...": "Search serial or name...", + "Search users...": "Search users...", + "Search warehouses...": "Search warehouses...", + "Search...": "Search...", + "Searching...": "Searching...", + "Seconds": "Seconds", + "Security & State": "Security & State", + "Security Controls": "Security Controls", + "Select All": "Select All", + "Select Cargo Lane": "Select Cargo Lane", + "Select Category": "Select Category", + "Select Company": "Select Company Name", + "Select Company (Default: System)": "Select Company (Default: System)", + "Select Date Range": "Select Date Range", + "Select Machine": "Select Machine", + "Select Machine First": "Select Machine First", + "Select Machine to view metrics": "Please select a machine to view metrics", + "Select Material": "Select Material", + "Select Model": "Select Model", + "Select Owner": "Select Company Name", + "Select Personnel": "Select Personnel", + "Select Product": "Select Product", + "Select Slot": "Select Slot", + "Select Slot...": "Select Slot...", + "Select Target Slot": "Select Target Slot", + "Select Warehouse": "Select Warehouse", + "Select a machine to deep dive": "Please select a machine to deep dive", + "Select a material to play on this machine": "Select a material to play on this machine", + "Select a team member to handle this replenishment order": "Select a team member to handle this replenishment order", + "Select all slots": "Select all slots", + "Select an asset from the left to start analysis": "Select an asset from the left to start analysis", + "Select date to sync data": "Select date to sync data", + "Select...": "Select...", + "Selected": "Selected", + "Selected Date": "Search Date", + "Selected Machine": "Selected Machine", + "Selected Slot": "Selected Slot", + "Selection": "Selection", + "Sent": "Picked up by Machine", + "Serial & Version": "Serial & Version", + "Serial NO": "SERIAL NO", + "Serial No": "Serial No", + "Serial No.": "Serial No.", + "Serial Number": "Serial Number", + "Service Periods": "Service Periods", + "Service Terms": "Service Periods", + "Settings Saved": "Settings Saved", + "Settings updated successfully.": "Settings updated successfully.", + "Settlement": "Settlement", + "Shopping Cart": "Shopping Cart", + "Shopping Cart Feature": "Shopping Cart Feature", + "Shopping Cart Function": "Shopping Cart Function", + "Show": "Show", + "Show material code field in products": "Show material code field in products", + "Show points rules in products": "Show points rules in products", + "Showing": "Showing", + "Showing :from to :to of :total items": "Showing :from to :to of :total items", + "Sign in to your account": "Sign in to your account", + "Signed in as": "Signed in as", + "Slot": "Slot", + "Slot Mechanism (default: Conveyor, check for Spring)": "Slot Mechanism (default: Conveyor, check for Spring)", + "Slot No": "Slot No", + "Slot Status": "Slot Status", + "Slot Test": "Slot Test", + "Slot empty": "Slot empty", + "Slot jammed": "Slot jammed", + "Slot motor error (0207)": "Slot motor error (0207)", + "Slot motor error (0208)": "Slot motor error (0208)", + "Slot motor error (0209)": "Slot motor error (0209)", + "Slot normal": "Slot normal", + "Slot not closed": "Slot not closed", + "Slot not found": "Slot not found", + "Slot report synchronized success": "Slot report synchronized success", + "Slot updated successfully.": "Slot updated successfully.", + "Slots": "Slots", + "Slots need replenishment": "Slots need replenishment", + "Smallest number plays first.": "Smallest number plays first.", + "Smart replenishment suggestions": "Smart replenishment suggestions", + "Software": "Software", + "Software End": "Software End", + "Software Service": "Software Service", + "Software Start": "Software Start", + "Some fields need attention": "Some fields need attention", + "Sort Order": "Sort Order", + "Source": "Source", + "Source Warehouse": "Source Warehouse", + "Special Permission": "Special Permission", + "Specification": "Specification", + "Specifications": "Specifications", + "Spring": "Spring", + "Spring Channel Limit": "Spring Channel Limit", + "Spring Limit": "Spring Limit", + "Staff Stock": "Staff Stock", + "Standby": "Standby", + "Standby Ad": "Standby Ad", + "Start Date": "Start Date", + "Start Delivery": "Start Delivery", + "Start Time": "Start Time", + "Statistics": "Statistics", + "Status": "Status", + "Status / Temp / Sub / Card / Scan": "Status / Temp / Sub / Card / Scan", + "Status Timeline": "Status Timeline", + "Status updated successfully": "Status updated successfully", + "Stock": "Stock", + "Stock & Expiry": "Stock & Expiry", + "Stock & Expiry Management": "Stock & Expiry Management", + "Stock & Expiry Overview": "Stock & Expiry Overview", + "Stock / Capacity": "Stock / Capacity", + "Stock In": "Stock In", + "Stock Level": "Stock Level", + "Stock Level > 50%": "Stock Level > 50%", + "Stock Levels": "Stock Levels", + "Stock Management": "Stock Management", + "Stock Out": "Stock Out", + "Stock Quantity": "Stock Quantity", + "Stock Rate": "Stock Rate", + "Stock Update": "Stock Update", + "Stock adjustments and damage reports": "Stock adjustments and damage reports", + "Stock flow history": "Stock flow history", + "Stock overview by warehouse": "Stock overview by warehouse", + "Stock returned to warehouse": "Stock returned to warehouse", + "Stock-In Management": "Stock-In Management", + "Stock-In Order": "Stock-In Order", + "Stock-In Orders": "Stock-In Orders", + "Stock-In Orders Tab": "Stock-In Orders", + "Stock-in order": "Stock-in order", + "Stock-in order confirmed and inventory updated": "Stock-in order confirmed and inventory updated", + "Stock-in order created": "Stock-in order created", + "Stock-in order created successfully": "Stock-in order created successfully", + "Stock-in order deleted successfully": "Stock-in order deleted successfully", + "Stock:": "Stock:", + "Store Gifts": "Store Gifts", + "Store ID": "Store ID", + "Store Management": "Store Management", + "StoreID": "StoreID", + "Sub / Card / Scan": "Sub / Card / Scan", + "Sub Account Management": "Sub Account Management", + "Sub Account Roles": "Sub Account Roles", + "Sub Accounts": "Sub Accounts", + "Sub-actions": "子項目", + "Sub-machine Status Request": "Sub-machine Status", + "Submit Record": "Submit Record", + "Success": "Success", + "Super Admin": "Super Admin", + "Super-admin role cannot be assigned to tenant accounts.": "Super-admin role cannot be assigned to tenant accounts.", + "Superseded": "Superseded", + "Superseded by new adjustment": "Superseded by new adjustment", + "Superseded by new command": "Superseded by new command", + "Survey Analysis": "Survey Analysis", + "Syncing": "Syncing", + "Syncing Permissions...": "Syncing Permissions...", + "System": "System", + "System & Security Control": "System & Security Control", + "System Default": "System Default", + "System Default (All Companies)": "System Default (All Companies)", + "System Default (Common)": "System Default (Common)", + "System Level": "System Level", + "System Official": "System Official", + "System Reboot": "System Reboot", + "System Role": "System Role", + "System Settings": "System Settings", + "System role name cannot be modified.": "System role name cannot be modified.", + "System roles cannot be deleted by tenant administrators.": "System roles cannot be deleted by tenant administrators.", + "System roles cannot be modified by tenant administrators.": "System roles cannot be modified by tenant administrators.", + "System settings updated successfully.": "System settings updated successfully.", + "System super admin accounts cannot be deleted.": "System super admin accounts cannot be deleted.", + "System super admin accounts cannot be modified via this interface.": "System super admin accounts cannot be modified via this interface.", + "Systems Initializing": "Systems Initializing", + "Table View": "Table View", + "TapPay Integration": "TapPay Integration", + "TapPay Integration Settings Description": "TapPay Payment Integration Settings", + "Target": "目標", + "Target Machine": "Target Machine", + "Target Position": "Target Position", + "Target Warehouse": "Target Warehouse", + "Tax ID": "Tax ID", + "Tax ID (Optional)": "Tax ID (Optional)", + "Tax System": "Tax System", + "Taxation System": "Taxation System", + "Temperature": "Temperature", + "Temperature reported: :temp°C": "Temperature reported: :temp°C", + "Temperature updated to :temp°C": "Temperature updated to :temp°C", + "Tenant": "Tenant", + "TermID": "TermID", + "The Super Admin role cannot be deleted.": "The Super Admin role cannot be deleted.", + "The Super Admin role is immutable.": "The Super Admin role is immutable.", + "The Super Admin role name cannot be modified.": "The Super Admin role name cannot be modified.", + "The image is too large. Please upload an image smaller than 1MB.": "The image is too large. Please upload an image smaller than 1MB.", + "This is a system administrator role. Its name is locked to ensure system stability.": "This is a system administrator role. Its name is locked to ensure system stability.", + "This role belongs to another company and cannot be assigned.": "This role belongs to another company and cannot be assigned.", + "This slot has a pending command. Please wait.": "This slot has a pending command. Please wait.", + "This slot has a pending update. Please wait for the previous command to complete.": "This slot has a pending update. Please wait for the previous command to complete.", + "This slot is syncing with the machine. Please wait.": "This slot is syncing with the machine. Please wait.", + "Ticket": "Ticket", + "Ticket Link": "Ticket Link", + "Time": "Time", + "Time Slots": "Time Slots", + "Timer": "Timer", + "Timestamp": "Timestamp", + "To": "To", + "To Warehouse": "To Warehouse", + "To:": "To:", + "Today Cumulative Sales": "Today Cumulative Sales", + "Today's Transactions": "Today's Transactions", + "Total": "Total", + "Total Connected": "Total Connected", + "Total Customers": "Total Customers", + "Total Daily Sales": "Today's Total Sales", + "Total Gross Value": "Total Gross Value", + "Total Logins": "Total Logins", + "Total Machines": "Total Machines", + "Total Quantity": "Total Quantity", + "Total Selected": "Total Selected", + "Total Slots": "Total Slots", + "Total Stock": "Total Stock", + "Total Stock Volume": "Total Stock Volume", + "Total Warehouses": "Total Warehouses", + "Total items": "Total items: :count", + "Track": "Track", + "Track Channel Limit": "Track Channel Limit", + "Track Limit": "Track Limit", + "Track Limit (Track/Spring)": "Track Limit (Track/Spring)", + "Track device health and maintenance history": "Track device health and maintenance history", + "Track stock levels, stock-in orders, and movement history": "Track stock levels, stock-in orders, and movement history", + "Track stock-in orders and movement history": "Track stock-in orders and movement history", + "Traditional Chinese": "Traditional Chinese", + "Transaction processed: :id": "Transaction processed: :id", + "Transfer Audit": "Transfer Audit", + "Transfer Details": "Transfer Details", + "Transfer In": "Transfer In", + "Transfer Orders": "Transfer Orders", + "Transfer Out": "Transfer Out", + "Transfer Type": "Transfer Type", + "Transfer completed": "Transfer completed", + "Transfer in": "Transfer in", + "Transfer order confirmed and inventory updated": "Transfer order confirmed and inventory updated", + "Transfer order created": "Transfer order created", + "Transfer order created successfully": "Transfer order created successfully", + "Transfer order deleted successfully": "Transfer order deleted successfully", + "Transfer order status tracking": "Transfer order status tracking", + "Transfer out": "Transfer out", + "Transfers": "Transfers", + "Trigger": "Trigger", + "Trigger Dispense": "Trigger Dispense", + "Trigger Remote Dispense": "Trigger Remote Dispense", + "Try using landmark names (e.g., Hualien County Government)": "Try using landmark names (e.g., Hualien County Government)", + "Tutorial Page": "Tutorial Page", + "Type": "Type", + "Type to search or leave blank for system defaults.": "Type to search or leave blank for system defaults.", + "UI Elements": "UI Elements", + "Unassigned": "Unassigned", + "Unassigned / No Change": "Unassigned / No Change", + "Unauthorized Status": "Unauthorized", + "Unauthorized login attempt: :account": "Unauthorized login attempt: :account", + "Unauthorized: Account not authorized for this machine": "Unauthorized: Account not authorized for this machine", + "Unauthorized: Account not found": "Unauthorized: Account not found", + "Uncategorized": "Uncategorized", + "Unified Operational Timeline": "Unified Operational Timeline", + "Units": "Units", + "Unknown": "Unknown", + "Unknown Product": "Unknown Product", + "Unknown error": "Unknown error", + "Unlimited": "Unlimited", + "Unlock": "Unlock", + "Unlock Now": "Unlock Now", + "Unlock Page": "Unlock Page", + "Unpublish": "Unpublish", + "Update": "Update", + "Update Authorization": "Update Authorization", + "Update Customer": "Update Customer", + "Update Password": "Update Password", + "Update Product": "Update Product", + "Update Settings": "Update Settings", + "Update existing role and permissions.": "Update existing role and permissions.", + "Update failed": "Update failed", + "Update identification for your asset": "Update identification for your asset", + "Update your account's profile information and email address.": "Update your account's profile information and email address.", + "Upload Image": "Upload Image", + "Upload New Images": "Upload New Images", + "Upload Video": "Upload Video", + "Uploading new images will replace all existing images.": "Uploading new images will replace all existing images.", + "Used": "Used", + "User": "User", + "User Info": "User Info", + "User logged in: :name": "User logged in: :name", + "Username": "Username", + "Users": "Users", + "Utilization Rate": "Utilization Rate", + "Utilization Timeline": "稼動時序", + "Utilization, OEE and Operational Intelligence": "稼動率、OEE 與營運情報", + "Utilized Time": "Utilized Time", + "Valid Ticket": "Valid Ticket", + "Valid Until": "Valid Until", + "Validation Error": "Validation Error", + "Validity Period": "Validity Period", + "Validity Period (Days)": "Validity Period (Days)", + "Validity Period (Hours)": "Validity Period (Hours)", + "Vending": "Vending", + "Vending Page": "Vending Page", + "Venue Management": "Venue Management", + "Video": "Video", + "View Details": "View Details", + "View Full History": "View Full History", + "View Inventory": "View Inventory", + "View Logs": "View Logs", + "View More": "View More", + "View QR Code": "View QR Code", + "View Slots": "View Slots", + "View all warehouses": "View all warehouses", + "View slot-level inventory for each machine": "View slot-level inventory for each machine", + "Visit Gift": "Visit Gift", + "Visual overview of all machine locations": "Visual overview of all machine locations", + "Waiting": "Waiting", + "Waiting for Payment": "Waiting for Payment", + "Warehouse": "Warehouse", + "Warehouse :status successfully": "Warehouse :status successfully", + "Warehouse Info": "Warehouse Info", + "Warehouse Inventory": "Warehouse Inventory", + "Warehouse List": "Warehouse List", + "Warehouse List (All)": "Warehouse List (All)", + "Warehouse List (Individual)": "Warehouse List (Individual)", + "Warehouse Management": "Warehouse Management", + "Warehouse Name": "Warehouse Name", + "Warehouse Overview": "Warehouse Overview", + "Warehouse Permissions": "Warehouse Permissions", + "Warehouse Stock": "Warehouse Stock", + "Warehouse Transfer": "Warehouse Transfer", + "Warehouse Type": "Warehouse Type", + "Warehouse created successfully": "Warehouse created successfully", + "Warehouse created successfully.": "Warehouse created successfully.", + "Warehouse deleted successfully": "Warehouse deleted successfully", + "Warehouse deleted successfully.": "Warehouse deleted successfully.", + "Warehouse purchase records": "Warehouse purchase records", + "Warehouse stock insufficient": "Warehouse stock insufficient", + "Warehouse stock insufficient warning": "Warehouse stock is not enough to fill all slots, but you can still create the order", + "Warehouse to Warehouse": "Warehouse to Warehouse", + "Warehouse to warehouse transfers": "Warehouse to warehouse transfers", + "Warehouse updated successfully": "Warehouse updated successfully", + "Warehouse updated successfully.": "Warehouse updated successfully.", + "Warning": "Warning", + "Warning: You are editing your own role!": "Warning: You are editing your own role!", + "Warranty": "Warranty", + "Warranty End": "Warranty End", + "Warranty Service": "Warranty Service", + "Warranty Start": "Warranty Start", + "Welcome Gift": "Welcome Gift", + "Welcome Gift Feature": "Welcome Gift Feature", + "Welcome Gift Function": "Welcome Gift Function", + "Welcome Gift Status": "Welcome Gift Status", + "Work Content": "Work Content", + "Yes, Cancel": "Yes, Cancel", + "Yes, Delete": "Yes, Delete", + "Yes, Disable": "Yes, Disable", + "Yes, regenerate": "Yes, regenerate", + "Yesterday": "Yesterday", + "You can assign or change the personnel handling this order": "You can assign or change the personnel handling this order", + "You cannot assign permissions you do not possess.": "You cannot assign permissions you do not possess.", + "You cannot delete your own account.": "You cannot delete your own account.", + "Your email address is unverified.": "Your email address is unverified.", + "Your recent account activity": "Your recent account activity", + "accounts": "Account Management", + "admin": "管理員", + "analysis": "Analysis Management", + "app": "APP Management", + "audit": "Audit Management", + "basic-settings": "Basic Settings", + "basic.machines": "機台設定", + "basic.payment-configs": "客戶金流設定", + "by": "by", + "companies": "Customer Management", + "data-config": "Data Configuration", + "data-config.sub-account-roles": "子帳號角色", + "data-config.sub-accounts": "子帳號管理", + "disabled": "disabled", + "e.g. 500ml / 300g": "e.g. 500ml / 300g", + "e.g. John Doe": "e.g. John Doe", + "e.g. Main Warehouse": "e.g. Main Warehouse", + "e.g. TWSTAR": "e.g. TWSTAR", + "e.g. Taiwan Star": "e.g. Taiwan Star", + "e.g. Test Code for Maintenance": "e.g. Test Code for Maintenance", + "e.g. johndoe": "e.g. johndoe", + "e.g., Beverage": "e.g., Beverage", + "e.g., Company Standard Pay": "e.g., Company Standard Pay", + "e.g., Drinks": "e.g., Drinks", + "e.g., Taipei Station": "e.g., Taipei Station", + "e.g., お飲み物": "e.g., O-Nomimono", + "enabled": "enabled", + "failed": "failed", + "files selected": "files selected", + "hours ago": "hours ago", + "image": "image", + "items": "items", + "john@example.com": "john@example.com", + "line": "Line Management", + "machines": "Machine Management", + "members": "Member Management", "menu.analysis": "Analysis Management", "menu.app": "APP Management", "menu.audit": "Audit Management", @@ -713,765 +1600,52 @@ "menu.permissions.companies": "Customer Management", "menu.permissions.roles": "Role Permissions", "menu.remote": "Remote Management", + "menu.remote.commands": "menu.remote.commands", + "menu.remote.stock": "menu.remote.stock", "menu.reservation": "Reservation System", "menu.sales": "Sales Management", + "menu.sales.orders": "menu.sales.orders", + "menu.sales.pass-codes": "menu.sales.pass-codes", + "menu.sales.pickup-codes": "menu.sales.pickup-codes", + "menu.sales.promotions": "menu.sales.promotions", + "menu.sales.records": "menu.sales.records", + "menu.sales.store-gifts": "menu.sales.store-gifts", "menu.special-permission": "Special Permission", + "menu.special-permission.apk-versions": "menu.special-permission.apk-versions", + "menu.special-permission.clear-stock": "menu.special-permission.clear-stock", + "menu.special-permission.discord-notifications": "menu.special-permission.discord-notifications", "menu.warehouses": "Warehouse Management", - "Merchant IDs": "Merchant IDs", - "Merchant payment gateway settings management": "Merchant payment gateway settings management", - "Message": "Message", - "Message Content": "Message Content", - "Message Display": "Message Display", - "Microwave door error": "Microwave door error", - "Microwave door opened": "Microwave door opened", + "menu.warehouses.inventory": "menu.warehouses.inventory", + "menu.warehouses.machine-inventory": "menu.warehouses.machine-inventory", + "menu.warehouses.overview": "menu.warehouses.overview", + "menu.warehouses.replenishments": "menu.warehouses.replenishments", + "menu.warehouses.transfers": "menu.warehouses.transfers", "min": "min", - "Min 8 characters": "Min 8 characters", "mins ago": "mins ago", - "Model": "Model", - "Model changed to :model": "Model changed to :model", - "Model Name": "Model Name", - "Models": "Models", - "Modification History": "Modification History", - "Modifying your own administrative permissions may result in losing access to certain system functions.": "Modifying your own administrative permissions may result in losing access to certain system functions.", - "Monitor and manage stock levels across your fleet": "Monitor and manage stock levels across your fleet", - "Monitor events and system activity across your vending fleet.": "Monitor events and system activity across your vending fleet.", - "Monitor warehouse stock summary": "Monitor warehouse stock summary", - "Monthly cumulative revenue overview": "Monthly cumulative revenue overview", - "Monthly Transactions": "Monthly Transactions", - "Motor not stopped": "Motor not stopped", - "Movement History": "Movement History", - "Movement Logs": "Movement Logs", - "Multilingual Names": "Multilingual Names", - "N/A": "N/A", - "Name": "Name", - "Name in English": "Name in English", - "Name in Japanese": "Name in Japanese", - "Name in Traditional Chinese": "Name in Traditional Chinese", - "Needs replenishment": "Needs replenishment", - "Never Connected": "Never Connected", - "New Command": "New Command", - "New Machine Name": "New Machine Name", - "New Password": "New Password", - "New Password (leave blank to keep current)": "New Password (leave blank to keep current)", - "New Record": "New Record", - "New Replenishment": "New Replenishment", - "New Role": "New Role", - "New Stock-In Order": "New Stock-In Order", - "New Sub Account Role": "New Sub Account Role", - "New Transfer": "New Transfer", - "Next": "Next", - "No accounts found": "No accounts found", - "No active cargo lanes found": "No active cargo lanes found", - "No additional notes": "No additional notes", - "No address information": "No address information", - "No advertisements found.": "No advertisements found.", - "No alert summary": "No alert summary", - "No assignments": "No assignments", - "No categories found.": "No categories found.", - "No command history": "No command history", - "No Company": "No Company", - "No configurations found": "No configurations found", - "No content provided": "No content provided", - "No customers found": "No customers found", - "No data available": "No data available", - "No file uploaded.": "No file uploaded.", - "No heartbeat for over 30 seconds": "No heartbeat for over 30 seconds", - "No history records": "No history records", - "No images uploaded": "No images uploaded", - "No Invoice": "No Invoice", - "No location set": "No location set", - "No login history yet": "No login history yet", - "No logs found": "No logs found", - "No Machine Selected": "No Machine Selected", - "No machines assigned": "未分配機台", - "No machines available": "No machines available", - "No machines available in this company.": "此客戶目前沒有可供分配的機台。", - "No machines found": "No machines found", - "No maintenance records found": "No maintenance records found", - "No matching logs found": "No matching logs found", - "No matching machines": "No matching machines", - "No materials available": "No materials available", - "No movement records found": "No movement records found", - "No permissions": "No permissions", - "No products found in this warehouse": "No products found in this warehouse", - "No products found matching your criteria.": "No products found matching your criteria.", - "No records found": "No records found", - "No replenishment orders found": "No replenishment orders found", - "No results found": "No results found", - "No roles available": "No roles available", - "No roles found.": "No roles found.", - "No slot data": "No slot data", - "No slot data available": "No slot data available", - "No slots found": "No slots found", - "No slots need replenishment": "No slots need replenishment", - "No stock data found": "No stock data found", - "No stock-in orders found": "No stock-in orders found", - "No transfer orders found": "No transfer orders found", - "No users found": "No users found", - "None": "None", - "Normal": "Normal", - "Not Used": "Not Used", - "Not Used Description": "不使用第三方支付介接", - "Note": "Note", - "Note (optional)": "Note (optional)", - "Notes": "Notes", - "OEE": "OEE", - "OEE Efficiency Trend": "OEE Efficiency Trend", - "OEE Score": "OEE Score", - "OEE.Activity": "Activity", - "OEE.Errors": "Errors", - "OEE.Hours": "Hours", - "OEE.Orders": "Orders", - "OEE.Sales": "Sales", "of": "of", - "Offline": "Offline", - "Offline Machines": "Offline Machines", - "Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.": "Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.", - "Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.": "Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.", - "One-click replenishment order generation": "One-click replenishment order generation", - "Ongoing": "Ongoing", - "Online": "Online", - "Online Duration": "Online Duration", - "Online Machines": "Online Machines", - "Online Status": "Online Status", - "Only system roles can be assigned to platform administrative accounts.": "Only system roles can be assigned to platform administrative accounts.", - "Operation failed": "Operation failed", - "Operation Note": "Operation Note", - "Operation Records": "Operation Records", - "Operational Parameters": "Operational Parameters", - "Operations": "Operations", - "Operator": "Operator", - "Optimal": "Optimal", - "Optimized for display. Supported formats: JPG, PNG, WebP.": "Optimized for display. Supported formats: JPG, PNG, WebP.", - "Optimized Performance": "Optimized Performance", - "Optional": "Optional", - "Optional remarks": "Optional remarks", - "Order Details": "Order Details", - "Order has been cancelled": "Order has been cancelled", - "Order Management": "Order Management", - "Order No.": "Order No.", - "Orders": "Orders", - "Original": "Original", - "Original Type": "Original Type", - "Original:": "Ori:", - "Other Features": "Other Features", - "Other Permissions": "Other Permissions", - "Others": "Others", - "Out of Stock": "Out of Stock", - "Out of stock.": "Out of stock.", - "Output Count": "Output Count", - "Owner": "Company Name", - "Page 0": "Offline", - "Page 1": "Home", - "Page 2": "Vending", - "Page 3": "Admin", - "Page 4": "Restock", - "Page 5": "Tutorial", - "Page 6": "Purchasing", - "Page 60": "Dispense Success", - "Page 61": "Slot Test", - "Page 610": "Purchase Ended", - "Page 611": "Store Gift", - "Page 612": "Dispense Failed", - "Page 62": "Payment Selection", - "Page 63": "Waiting for Payment", - "Page 64": "Dispensing", - "Page 65": "Receipt", - "Page 66": "Passcode", - "Page 67": "Pickup Code", - "Page 68": "Message", - "Page 69": "Purchase Cancelled", - "Page 7": "Locked", - "Page Lock Status": "Page Lock Status", - "Parameters": "Parameters", - "PARTNER_KEY": "PARTNER_KEY", - "Pass Code": "Pass Code", - "Pass Codes": "Pass Codes", - "Password": "Password", - "Password updated successfully.": "密碼已成功變更。", - "Payment & Invoice": "Payment & Invoice", - "Payment Buffer Seconds": "Payment Buffer Seconds", - "Payment Config": "Payment Config", - "Payment Configuration": "Payment Configuration", - "Payment Configuration created successfully.": "Payment Configuration created successfully.", - "Payment Configuration deleted successfully.": "Payment Configuration deleted successfully.", - "Payment Configuration updated successfully.": "Payment Configuration updated successfully.", - "Payment Selection": "Payment Selection", - "Pending": "Pending", + "of items": "of items", "pending": "pending", - "Per Page": "Per Page", - "Performance": "Performance", - "Permanent": "Permanent", - "Permanently Delete Account": "Permanently Delete Account", - "Permission Settings": "Permission Settings", - "Permissions": "Permissions", "permissions": "permissions", - "Permissions updated successfully": "Authorization updated successfully", "permissions.accounts": "permissions.accounts", "permissions.companies": "permissions.companies", "permissions.roles": "permissions.roles", - "Personnel assigned successfully": "Personnel assigned successfully", - "Phone": "Phone", - "Photo Slot": "Photo Slot", - "PI_MERCHANT_ID": "PI_MERCHANT_ID", - "Picked up": "Picked up", - "Picked up Time": "Picked up Time", - "Pickup Code": "Pickup Code", - "Pickup Codes": "Pickup Codes", - "Pickup door closed": "Pickup door closed", - "Pickup door error": "Pickup door error", - "Pickup door not closed": "Pickup door not closed", - "Playback Order": "Playback Order", - "Please check the following errors:": "Please check the following errors:", - "Please check the form for errors.": "Please check the form for errors.", - "Please confirm the details below": "Please confirm the details below", - "Please enter address first": "Please enter address first", - "Please select a machine first": "Please select a machine first", - "Please select a machine model": "Please select a machine model", - "Please select a machine to view and manage its advertisements.": "Please select a machine to view and manage its advertisements.", - "Please select a machine to view metrics": "請選擇機台以查看數據", - "Please select a material": "Please select a material", - "Please select a slot": "Please select a slot", - "Please select warehouse and machine": "Please select warehouse and machine", - "PNG, JPG up to 2MB": "PNG, JPG up to 2MB", - "PNG, JPG, WEBP up to 10MB": "PNG, JPG, WEBP up to 10MB", - "Point Rules": "Point Rules", - "Point Settings": "Point Settings", - "Points": "Points", - "Points Rule": "Points Rule", - "Points Settings": "Points Settings", - "Points toggle": "Points toggle", - "POS Reboot": "POS Reboot", - "Position": "Position", - "Prepared": "Prepared", - "Preparing": "Preparing", - "Preview": "Preview", - "Previous": "Previous", - "Price / Member": "Price / Member", - "Pricing Information": "Pricing Information", - "Product": "Product", - "Product Count": "Product Count", - "Product created successfully": "Product created successfully", - "Product deleted successfully": "Product deleted successfully", - "Product Details": "Product Details", - "Product empty": "Product empty", - "Product ID": "Product ID", - "Product Image": "Product Image", - "Product Info": "Product Info", - "Product List": "Product List", - "Product Management": "Product Management", - "Product Name (Multilingual)": "Product Name (Multilingual)", - "Product Reports": "Product Reports", - "Product Status": "商品狀態", - "Product status updated to :status": "Product status updated to :status", - "Product updated successfully": "Product updated successfully", - "Production Company": "Production Company", - "Products": "Products", - "Products / Stock": "Products / Stock", - "Profile": "Profile", - "Profile Information": "Profile Information", - "Profile Settings": "Profile Settings", - "Profile updated successfully.": "Profile updated successfully.", - "Promotions": "Promotions", - "Protected": "Protected", - "PS_LEVEL": "PS_LEVEL", - "PS_MERCHANT_ID": "PS_MERCHANT_ID", - "Publish": "Publish", - "Publish Time": "Publish Time", - "Purchase Audit": "Purchase Audit", - "Purchase Finished": "Purchase Finished", - "Purchases": "Purchases", - "Purchasing": "Purchasing", - "QR Scan Payment": "QR Scan Payment", - "Qty": "Qty", - "Qty Change": "Qty Change", - "Quality": "品質 (Quality)", - "Quantity": "Quantity", - "Questionnaire": "Questionnaire", - "Quick Expiry Check": "Quick Expiry Check", - "Quick Maintenance": "Quick Maintenance", - "Quick Replenish": "Quick Replenish", - "Quick replenishment from this view": "Quick replenishment from this view", - "Quick search...": "Quick search...", - "Quick Select": "快速選取", - "Real-time fleet efficiency and OEE metrics": "Real-time fleet efficiency and OEE metrics", - "Real-time inventory status across all machines with expiry tracking": "Real-time inventory status across all machines with expiry tracking", - "Real-time monitoring across all machines": "Real-time monitoring across all machines", - "Real-time monitoring and adjustment of cargo lane inventory and expiration dates": "Real-time monitoring and adjustment of cargo lane inventory and expiration dates", - "Real-time OEE analysis awaits": "即時 OEE 分析預備中", - "Real-time Operation Logs (Last 50)": "Real-time Operation Logs (Last 50)", - "Real-time performance analytics": "Real-time performance analytics", - "Real-time slot-level inventory across all machines": "Real-time slot-level inventory across all machines", - "Real-time status monitoring": "Real-time status monitoring", - "Reason for this command...": "Reason for this command...", - "Receipt Printing": "Receipt Printing", - "Recent Commands": "Recent Commands", - "Recent Login": "Recent Login", - "Recently reported errors or warnings in logs": "Recently reported errors or warnings in logs", - "Records": "Records", - "Regenerate": "Regenerate", - "Regenerating the token will disconnect the physical machine until it is updated. Continue?": "Regenerating the token will disconnect the physical machine until it is updated. Continue?", "remote": "remote", - "Remote Change": "Remote Change", - "Remote Checkout": "Remote Checkout", - "Remote Command Center": "Remote Command Center", - "Remote Dispense": "Remote Dispense", - "Remote dispense successful for slot :slot": "Remote dispense successful for slot :slot", - "Remote Lock": "Remote Lock", - "Remote Management": "Remote Management", - "Remote Permissions": "Remote Permissions", - "Remote Reboot": "Remote Checkout", - "Remote Settlement": "Remote Settlement", - "Removal": "Removal", - "Repair": "Repair", - "Replenishment Audit": "Replenishment Audit", - "Replenishment cancelled, stock returned": "Replenishment cancelled, stock returned", - "Replenishment history": "Replenishment history", - "Replenishment Items": "Replenishment Items", - "Replenishment Orders": "Replenishment Orders", - "Replenishment Page": "Replenishment Page", - "Replenishment prepare": "Replenishment prepare", - "Replenishment Records": "Replenishment Records", - "Replenishments": "Replenishments", - "Reporting Period": "Reporting Period", "reservation": "reservation", - "Reservation Members": "Reservation Members", - "Reservation System": "Reservation System", - "Reservations": "Reservations", - "Reset Filters": "Reset Filters", - "Reset POS terminal": "Reset POS terminal", - "Resolve Coordinates": "Resolve Coordinates", - "Restart entire machine": "Restart entire machine", - "Restock report accepted": "Restock report accepted", - "Restrict machine UI access": "Restrict machine UI access", - "Restrict UI Access": "Restrict UI Access", - "Result reported": "Result reported", - "Retail Price": "Retail Price", - "Returns": "Returns", - "Risk": "Risk", - "Role": "Role", - "Role created successfully.": "Role created successfully.", - "Role deleted successfully.": "Role deleted successfully.", - "Role Identification": "Role Identification", - "Role Management": "Role Management", - "Role Name": "Role Name", - "Role name already exists in this company.": "Role name already exists in this company.", - "Role not found.": "Role not found.", - "Role Permissions": "Role Permissions", - "Role Settings": "Role Permissions", - "Role Type": "Role Type", - "Role updated successfully.": "Role updated successfully.", - "Roles": "Role Permissions", "roles": "roles", - "Roles scoped to specific customer companies.": "Roles scoped to specific customer companies.", - "Running": "Running", - "Running Status": "Running Status", "s": "s", - "Safety Stock": "Safety Stock", - "Sale Price": "Sale Price", - "Sales": "Sales", "sales": "sales", - "Sales Activity": "Sales Activity", - "Sales Management": "Sales Management", - "Sales Permissions": "Sales Permissions", - "Sales Records": "Sales Records", - "Save": "Save", - "Save Changes": "Save Changes", - "Save Config": "Save Config", - "Save error:": "Save error:", - "Save Material": "Save Material", - "Save Permissions": "Save Permissions", - "Save Settings": "Save Settings", - "Saved.": "Saved.", - "Saving...": "Saving...", - "Scale level and access control": "Scale level and access control", - "Scan Pay": "Scan Pay", - "Scan this code to quickly access the maintenance form for this device.": "Scan this code to quickly access the maintenance form for this device.", - "Schedule": "Schedule", - "Search accounts...": "Search accounts...", - "Search by name or S/N...": "Search by name or S/N...", - "Search by name...": "Search by name...", - "Search cargo lane": "Search cargo lane", - "Search categories...": "Search categories...", - "Search Company Title...": "Search Company Title...", - "Search company...": "Search company...", - "Search configurations...": "Search configurations...", - "Search customers...": "Search customers...", - "Search Machine...": "Search Machine...", - "Search machines by name or serial...": "Search machines by name or serial...", - "Search machines...": "Search machines...", - "Search models...": "Search models...", - "Search Product": "Search Product", - "Search products...": "Search products...", - "Search roles...": "Search roles...", - "Search serial no or name...": "Search serial no or name...", - "Search serial or machine...": "Search serial or machine...", - "Search serial or name...": "Search serial or name...", - "Search users...": "Search users...", - "Search warehouses...": "Search warehouses...", - "Search...": "Search...", - "Searching...": "Searching...", - "Seconds": "Seconds", - "Security & State": "Security & State", - "Security Controls": "Security Controls", - "Select a machine to deep dive": "Please select a machine to deep dive", - "Select a material to play on this machine": "Select a material to play on this machine", - "Select a team member to handle this replenishment order": "Select a team member to handle this replenishment order", - "Select All": "Select All", - "Select all slots": "Select all slots", - "Select an asset from the left to start analysis": "Select an asset from the left to start analysis", - "Select Cargo Lane": "Select Cargo Lane", - "Select Category": "Select Category", - "Select Company": "Select Company Name", - "Select Company (Default: System)": "Select Company (Default: System)", - "Select date to sync data": "Select date to sync data", - "Select Machine": "Select Machine", - "Select Machine First": "Select Machine First", - "Select Machine to view metrics": "Please select a machine to view metrics", - "Select Material": "Select Material", - "Select Model": "Select Model", - "Select Owner": "Select Company Name", - "Select Personnel": "Select Personnel", - "Select Product": "Select Product", - "Select Slot...": "Select Slot...", - "Select Target Slot": "Select Target Slot", - "Select Warehouse": "Select Warehouse", - "Select...": "Select...", - "Selected": "Selected", - "Selected Date": "Search Date", - "Selection": "Selection", - "Sent": "Picked up by Machine", "sent": "sent", - "Serial & Version": "Serial & Version", - "Serial NO": "SERIAL NO", - "Serial No": "Serial No", - "Serial No.": "Serial No.", - "Serial Number": "Serial Number", - "Service Periods": "Service Periods", - "Service Terms": "Service Periods", "set": "set", - "Settings updated successfully.": "Settings updated successfully.", - "Settlement": "Settlement", - "Shopping Cart": "Shopping Cart", - "Shopping Cart Feature": "Shopping Cart Feature", - "Show": "Show", - "Show material code field in products": "Show material code field in products", - "Show points rules in products": "Show points rules in products", - "Showing": "Showing", - "Showing :from to :to of :total items": "Showing :from to :to of :total items", - "Sign in to your account": "Sign in to your account", - "Signed in as": "Signed in as", - "Slot": "Slot", - "Slot empty": "Slot empty", - "Slot jammed": "Slot jammed", - "Slot Mechanism (default: Conveyor, check for Spring)": "Slot Mechanism (default: Conveyor, check for Spring)", - "Slot motor error (0207)": "Slot motor error (0207)", - "Slot motor error (0208)": "Slot motor error (0208)", - "Slot motor error (0209)": "Slot motor error (0209)", - "Slot No": "Slot No", - "Slot normal": "Slot normal", - "Slot not closed": "Slot not closed", - "Slot not found": "Slot not found", - "Slot report synchronized success": "Slot report synchronized success", - "Slot Status": "Slot Status", - "Slot Test": "Slot Test", - "Slot updated successfully.": "Slot updated successfully.", - "Slots need replenishment": "Slots need replenishment", - "Smallest number plays first.": "Smallest number plays first.", - "Smart replenishment suggestions": "Smart replenishment suggestions", - "Software": "Software", - "Software End": "Software End", - "Software Service": "Software Service", - "Software Start": "Software Start", - "Some fields need attention": "Some fields need attention", - "Sort Order": "Sort Order", - "Source Warehouse": "Source Warehouse", - "Special Permission": "Special Permission", "special-permission": "special-permission", - "Specification": "Specification", - "Specifications": "Specifications", - "Spring Channel Limit": "Spring Channel Limit", - "Spring Limit": "Spring Limit", - "Staff Stock": "Staff Stock", - "Standby": "Standby", "standby": "standby", - "Standby Ad": "Standby Ad", - "Start Date": "Start Date", - "Start Delivery": "Start Delivery", - "Statistics": "Statistics", - "Status": "Status", - "Status / Temp / Sub / Card / Scan": "Status / Temp / Sub / Card / Scan", - "Status Timeline": "Status Timeline", - "Status updated successfully": "Status updated successfully", - "Stock": "Stock", - "Stock & Expiry": "Stock & Expiry", - "Stock & Expiry Management": "Stock & Expiry Management", - "Stock & Expiry Overview": "Stock & Expiry Overview", - "Stock adjustments and damage reports": "Stock adjustments and damage reports", - "Stock flow history": "Stock flow history", - "Stock In": "Stock In", - "Stock Level": "Stock Level", - "Stock Levels": "Stock Levels", - "Stock Management": "Stock Management", - "Stock Out": "Stock Out", - "Stock overview by warehouse": "Stock overview by warehouse", - "Stock Quantity": "Stock Quantity", - "Stock Rate": "Stock Rate", - "Stock returned to warehouse": "Stock returned to warehouse", - "Stock-In Management": "Stock-In Management", - "Stock-In Orders": "Stock-In Orders", - "Stock-In Orders Tab": "Stock-In Orders", - "Stock:": "Stock:", - "Store Gifts": "Store Gifts", - "Store ID": "Store ID", - "Store Management": "Store Management", - "StoreID": "StoreID", - "Sub / Card / Scan": "Sub / Card / Scan", - "Sub Account Management": "Sub Account Management", - "Sub Account Roles": "Sub Account Roles", - "Sub Accounts": "Sub Accounts", - "Sub-actions": "子項目", - "Sub-machine Status Request": "Sub-machine Status", - "Submit Record": "Submit Record", - "Success": "Success", "success": "success", - "Super Admin": "Super Admin", "super-admin": "super-admin", - "Super-admin role cannot be assigned to tenant accounts.": "Super-admin role cannot be assigned to tenant accounts.", - "Superseded": "Superseded", - "Superseded by new adjustment": "Superseded by new adjustment", - "Superseded by new command": "Superseded by new command", - "Survey Analysis": "Survey Analysis", - "Syncing": "Syncing", - "Syncing Permissions...": "Syncing Permissions...", - "SYSTEM": "SYSTEM", - "System": "System", - "System & Security Control": "System & Security Control", - "System Default": "System Default", - "System Default (All Companies)": "System Default (All Companies)", - "System Default (Common)": "System Default (Common)", - "System Level": "System Level", - "System Official": "System Official", - "System Reboot": "System Reboot", - "System Role": "System Role", - "System role name cannot be modified.": "System role name cannot be modified.", - "System roles cannot be deleted by tenant administrators.": "System roles cannot be deleted by tenant administrators.", - "System roles cannot be modified by tenant administrators.": "System roles cannot be modified by tenant administrators.", - "System Settings": "System Settings", - "System settings updated successfully.": "System settings updated successfully.", - "System super admin accounts cannot be deleted.": "System super admin accounts cannot be deleted.", - "System super admin accounts cannot be modified via this interface.": "System super admin accounts cannot be modified via this interface.", - "Systems Initializing": "Systems Initializing", - "TapPay Integration": "TapPay Integration", - "TapPay Integration Settings Description": "TapPay Payment Integration Settings", - "Target": "目標", - "Target Machine": "Target Machine", - "Target Position": "Target Position", - "Target Warehouse": "Target Warehouse", - "Tax ID": "Tax ID", - "Tax ID (Optional)": "Tax ID (Optional)", - "Tax System": "Tax System", - "Taxation System": "Taxation System", - "Temperature": "Temperature", - "Temperature reported: :temp°C": "Temperature reported: :temp°C", - "Temperature updated to :temp°C": "Temperature updated to :temp°C", - "TermID": "TermID", - "The image is too large. Please upload an image smaller than 1MB.": "The image is too large. Please upload an image smaller than 1MB.", - "The Super Admin role cannot be deleted.": "The Super Admin role cannot be deleted.", - "The Super Admin role is immutable.": "The Super Admin role is immutable.", - "The Super Admin role name cannot be modified.": "The Super Admin role name cannot be modified.", - "This is a system administrator role. Its name is locked to ensure system stability.": "This is a system administrator role. Its name is locked to ensure system stability.", - "This role belongs to another company and cannot be assigned.": "This role belongs to another company and cannot be assigned.", - "This slot has a pending command. Please wait.": "This slot has a pending command. Please wait.", - "This slot has a pending update. Please wait for the previous command to complete.": "This slot has a pending update. Please wait for the previous command to complete.", - "This slot is syncing with the machine. Please wait.": "This slot is syncing with the machine. Please wait.", - "Time": "Time", - "Time Slots": "Time Slots", - "Timer": "Timer", - "Timestamp": "Timestamp", - "To": "To", "to": "to", - "To Warehouse": "To Warehouse", - "To:": "To:", - "Today Cumulative Sales": "Today Cumulative Sales", - "Today's Transactions": "Today's Transactions", - "Total": "Total", - "Total Connected": "Total Connected", - "Total Customers": "Total Customers", - "Total Daily Sales": "Today's Total Sales", - "Total Gross Value": "Total Gross Value", - "Total items": "Total items: :count", - "Total Logins": "Total Logins", - "Total Machines": "Total Machines", - "Total Quantity": "Total Quantity", - "Total Selected": "Total Selected", - "Total Slots": "Total Slots", - "Total Stock": "Total Stock", - "Total Warehouses": "Total Warehouses", - "Track Channel Limit": "Track Channel Limit", - "Track device health and maintenance history": "Track device health and maintenance history", - "Track Limit": "Track Limit", - "Track Limit (Track/Spring)": "Track Limit (Track/Spring)", - "Track stock levels, stock-in orders, and movement history": "Track stock levels, stock-in orders, and movement history", - "Track stock-in orders and movement history": "Track stock-in orders and movement history", - "Traditional Chinese": "Traditional Chinese", - "Transaction processed: :id": "Transaction processed: :id", - "Transfer Audit": "Transfer Audit", - "Transfer In": "Transfer In", - "Transfer order status tracking": "Transfer order status tracking", - "Transfer Orders": "Transfer Orders", - "Transfer Out": "Transfer Out", - "Transfer Type": "Transfer Type", - "Transfers": "Transfers", - "Trigger": "Trigger", - "Trigger Dispense": "Trigger Dispense", - "Trigger Remote Dispense": "Trigger Remote Dispense", - "Tutorial Page": "Tutorial Page", - "Type": "Type", - "Type to search or leave blank for system defaults.": "Type to search or leave blank for system defaults.", - "UI Elements": "UI Elements", - "Unassigned": "Unassigned", - "Unauthorized login attempt: :account": "Unauthorized login attempt: :account", - "Unauthorized Status": "Unauthorized", - "Unauthorized: Account not authorized for this machine": "Unauthorized: Account not authorized for this machine", - "Unauthorized: Account not found": "Unauthorized: Account not found", - "Uncategorized": "Uncategorized", - "Unified Operational Timeline": "Unified Operational Timeline", - "Units": "Units", - "Unknown": "Unknown", - "Unknown error": "Unknown error", - "Unlimited": "Unlimited", - "Unlock": "Unlock", - "Unlock Now": "Unlock Now", - "Unlock Page": "Unlock Page", - "Unpublish": "Unpublish", - "Update": "Update", - "Update Authorization": "Update Authorization", - "Update Customer": "Update Customer", - "Update existing role and permissions.": "Update existing role and permissions.", - "Update failed": "Update failed", - "Update identification for your asset": "Update identification for your asset", - "Update Password": "Update Password", - "Update Product": "Update Product", - "Update Settings": "Update Settings", - "Update your account's profile information and email address.": "Update your account's profile information and email address.", - "Upload Image": "Upload Image", - "Upload New Images": "Upload New Images", - "Upload Video": "Upload Video", - "Uploading new images will replace all existing images.": "Uploading new images will replace all existing images.", - "User": "User", "user": "user", - "User Info": "User Info", - "User logged in: :name": "User logged in: :name", - "Username": "Username", - "Users": "Users", - "Utilization Rate": "Utilization Rate", - "Utilization Timeline": "稼動時序", - "Utilization, OEE and Operational Intelligence": "稼動率、OEE 與營運情報", - "Utilized Time": "Utilized Time", - "Valid Until": "Valid Until", - "Validation Error": "Validation Error", - "Vending": "Vending", "vending": "vending", - "Vending Page": "Vending Page", - "Venue Management": "Venue Management", - "Video": "Video", "video": "video", - "View all warehouses": "View all warehouses", - "View Details": "View Details", - "View Full History": "View Full History", - "View Inventory": "View Inventory", - "View Logs": "View Logs", - "View More": "View More", - "View slot-level inventory for each machine": "View slot-level inventory for each machine", - "View Slots": "View Slots", - "Visit Gift": "Visit Gift", "visit_gift": "visit_gift", "vs Yesterday": "vs Yesterday", - "Waiting": "Waiting", - "Waiting for Payment": "Waiting for Payment", - "Warehouse": "Warehouse", - "Warehouse created successfully.": "Warehouse created successfully.", - "Warehouse deleted successfully.": "Warehouse deleted successfully.", - "Warehouse Info": "Warehouse Info", - "Warehouse Inventory": "Warehouse Inventory", - "Warehouse List": "Warehouse List", - "Warehouse List (All)": "Warehouse List (All)", - "Warehouse List (Individual)": "Warehouse List (Individual)", - "Warehouse Management": "Warehouse Management", - "Warehouse Overview": "Warehouse Overview", - "Warehouse Permissions": "Warehouse Permissions", - "Warehouse purchase records": "Warehouse purchase records", - "Warehouse stock insufficient": "Warehouse stock insufficient", - "Warehouse stock insufficient warning": "Warehouse stock is not enough to fill all slots, but you can still create the order", - "Warehouse to Warehouse": "Warehouse to Warehouse", - "Warehouse to warehouse transfers": "Warehouse to warehouse transfers", - "Warehouse Transfer": "Warehouse Transfer", - "Warehouse updated successfully.": "Warehouse updated successfully.", "warehouses": "warehouses", - "Warning": "Warning", - "Warning: You are editing your own role!": "Warning: You are editing your own role!", - "Warranty": "Warranty", - "Warranty End": "Warranty End", - "Warranty Service": "Warranty Service", - "Warranty Start": "Warranty Start", - "Welcome Gift": "Welcome Gift", - "Welcome Gift Feature": "Welcome Gift Feature", - "Welcome Gift Status": "Welcome Gift Status", - "Work Content": "Work Content", - "Yes, regenerate": "Yes, regenerate", - "Yesterday": "Yesterday", - "You cannot assign permissions you do not possess.": "You cannot assign permissions you do not possess.", - "You cannot delete your own account.": "You cannot delete your own account.", - "Your email address is unverified.": "Your email address is unverified.", - "Your recent account activity": "Your recent account activity", - "待填寫": "待填寫", - "Stock / Capacity": "Stock / Capacity", - "Warehouse Stock": "Warehouse Stock", - "Recalculate": "Recalculate", - "Replenish": "Replenish", - "Total Stock Volume": "Total Stock Volume", - "Stock Level > 50%": "Stock Level > 50%", - "Manage your company's sub-accounts and role permissions": "Manage your company's sub-accounts and role permissions", - "Tenant": "Tenant", - "Permission Tags": "Permission Tags", - "All Permissions": "All Permissions", - "Pickup Codes": "Pickup Codes", - "Generate and manage one-time pickup codes for customers": "Generate and manage one-time pickup codes for customers", - "Generate New Code": "Generate New Code", - "Search by code, machine name or serial...": "Search by code, machine name or serial...", - "Machine / Slot": "Machine / Slot", - "Are you sure you want to cancel this code?": "Are you sure you want to cancel this code?", - "Cancel Code": "Cancel Code", - "No pickup codes found": "No pickup codes found", - "Generate Pickup Code": "Generate Pickup Code", - "Select Slot": "Select Slot", - "Validity Period (Hours)": "Validity Period (Hours)", - "Hrs": "Hrs", - "Max 720 hours (30 days)": "Max 720 hours (30 days)", - "No Actions": "No Actions", - "Pass Codes": "Pass Codes", - "Manage multi-use authorization codes for testing and maintenance": "Manage multi-use authorization codes for testing and maintenance", - "Create Pass Code": "Create Pass Code", - "Search by code, name or machine...": "Search by code, name or machine...", - "Name / Machine": "Name / Machine", - "Are you sure you want to delete this pass code?": "Are you sure you want to delete this pass code?", - "Delete Code": "Delete Code", - "No pass codes found": "No pass codes found", - "Target Machine": "Target Machine", - "Description / Name": "Description / Name", - "e.g. Test Code for Maintenance": "e.g. Test Code for Maintenance", - "Pass Code (8 Digits)": "Pass Code (8 Digits)", - "Regenerate": "Regenerate", - "Validity Period (Days)": "Validity Period (Days)", - "Days": "Days", - "Leave empty for permanent code": "Leave empty for permanent code", - "Permanent": "Permanent", - "All Status": "All Status", - "Add Pickup Code": "Add Pickup Code", - "Add Pass Code": "Add Pass Code", - "Expected Expiry Date & Time": "Expected Expiry Date & Time", - "Assign Personnel (Optional)": "Assign Personnel (Optional)", - "Unassigned / No Change": "Unassigned / No Change", - "You can assign or change the personnel handling this order": "You can assign or change the personnel handling this order" + "待填寫": "待填寫" } diff --git a/lang/ja.json b/lang/ja.json index 875e0a0..60d7a96 100644 --- a/lang/ja.json +++ b/lang/ja.json @@ -1,306 +1,1644 @@ { + "15 Seconds": "15 Seconds", + "30 Seconds": "30 Seconds", + "60 Seconds": "60 Seconds", + "A new verification link has been sent to your email address.": "A new verification link has been sent to your email address.", + "AI Prediction": "AI Prediction", + "API Token": "API Token", + "API Token Copied": "API Token Copied", + "API Token regenerated successfully.": "API Token regenerated successfully.", + "APK Versions": "APK Versions", + "APP Features": "APP Features", + "APP Management": "APP Management", + "APP Version": "APP Version", + "APP_ID": "APP_ID", + "APP_KEY": "APP_KEY", + "Abnormal": "Abnormal", + "Account": "Account", + "Account :name status has been changed to :status.": "Account :name status has been changed to :status.", + "Account Info": "Account Info", + "Account List": "アカウント一覧", + "Account Management": "Account Management", + "Account Name": "Account Name", + "Account Settings": "Account Settings", + "Account Status": "Account Status", + "Account created successfully.": "Account created successfully.", + "Account deleted successfully.": "Account deleted successfully.", + "Account updated successfully.": "Account updated successfully.", + "Account:": "Account:", + "Accounts / Machines": "Accounts / Machines", "Actions": "操作", + "Active": "有効", + "Active Slots": "稼働中の貨道", + "Active Status": "Active Status", + "Ad Settings": "Ad Settings", + "Add Account": "Add Account", + "Add Advertisement": "Add Advertisement", + "Add Category": "Add Category", + "Add Customer": "Add Customer", "Add Item": "項目を追加", + "Add Machine": "Add Machine", + "Add Machine Model": "Add Machine Model", + "Add Maintenance Record": "Add Maintenance Record", + "Add Model": "モデルを追加", + "Add Pass Code": "通行コードを追加", + "Add Pickup Code": "受取コードを追加", + "Add Product": "Add Product", + "Add Role": "Add Role", "Add Warehouse": "倉庫を追加", + "Add new inventory items to your warehouse": "倉庫に新しい在庫品目を追加する", + "Address": "Address", + "Adjust Inventory": "在庫調整", + "Adjust Stock": "Adjust Stock", + "Adjust Stock & Expiry": "Adjust Stock & Expiry", "Adjustment": "在庫調整", + "Admin": "Admin", + "Admin Name": "Admin Name", + "Admin Page": "Admin Page", + "Admin Sellable Products": "Admin Sellable Products", + "Admin display name": "Admin display name", + "Administrator": "Administrator", + "Advertisement List": "Advertisement List", + "Advertisement Management": "Advertisement Management", + "Advertisement Video/Image": "Advertisement Video/Image", + "Advertisement assigned successfully": "Advertisement assigned successfully", + "Advertisement assigned successfully.": "Advertisement assigned successfully.", + "Advertisement created successfully": "Advertisement created successfully", + "Advertisement created successfully.": "Advertisement created successfully.", + "Advertisement deleted successfully": "Advertisement deleted successfully", + "Advertisement deleted successfully.": "Advertisement deleted successfully.", + "Advertisement updated successfully": "Advertisement updated successfully", + "Advertisement updated successfully.": "Advertisement updated successfully.", + "Affiliated Company": "Affiliated Company", + "Affiliated Unit": "Affiliated Unit", + "Affiliation": "Affiliation", + "Alert Summary": "Alert Summary", + "Alerts": "Alerts", + "Alerts Pending": "Alerts Pending", + "All": "All", + "All Affiliations": "All Affiliations", + "All Categories": "All Categories", + "All Command Types": "すべてのコマンドタイプ", "All Companies": "すべての会社", - "All slots are fully stocked": "全スロットが満在庫です", + "All Levels": "All Levels", + "All Machines": "All Machines", + "All Permissions": "All Permissions", + "All Stable": "All Stable", + "All Status": "すべてのステータス", "All Statuses": "すべてのステータス", + "All Statuses (Codes)": "すべてのステータス(コード)", + "All Times System Timezone": "All Times System Timezone", "All Types": "すべてのタイプ", "All Warehouses": "すべての倉庫", + "All slots are fully stocked": "全スロットが満在庫です", + "Amount": "Amount", + "An error occurred while saving.": "An error occurred while saving.", + "Analysis Management": "Analysis Management", + "Analysis Permissions": "Analysis Permissions", + "Apply changes to all identical products in this machine": "Apply changes to all identical products in this machine", + "Apply to all identical products in this machine": "Apply to all identical products in this machine", "Approved At": "承認日時", + "Are you sure to delete this customer?": "Are you sure to delete this customer?", + "Are you sure to delete this warehouse? This action cannot be undone.": "この倉庫を削除しますか?この操作は元に戻せません。", + "Are you sure to disable this warehouse?": "この倉庫を無効化しますか?", + "Are you sure you want to cancel this code?": "このコードをキャンセルしてもよろしいですか?", "Are you sure you want to cancel this order? If the order has been prepared, stock will be returned to the warehouse.": "この注文をキャンセルしますか?準備済みの場合、在庫は倉庫に返却されます。", + "Are you sure you want to cancel this pass code? This action cannot be undone.": "この通行コードをキャンセルしますか?この操作は元に戻せません。", + "Are you sure you want to cancel this pickup code? This action cannot be undone.": "この受取コードをキャンセルしてもよろしいですか?この操作は取り消せません。", + "Are you sure you want to change the status of this item? This will affect its visibility on vending machines.": "Are you sure you want to change the status of this item? This will affect its visibility on vending machines.", + "Are you sure you want to change the status of this product? Disabled products will not be visible on the machine.": "Are you sure you want to change the status of this product? Disabled products will not be visible on the machine.", + "Are you sure you want to change the status? After disabling, this account will no longer be able to log in to the system.": "Are you sure you want to change the status? After disabling, this account will no longer be able to log in to the system.", + "Are you sure you want to change the status? This may affect associated accounts.": "Are you sure you want to change the status? This may affect associated accounts.", + "Are you sure you want to confirm completion? This will update the machine stock.": "完了を確認しますか?機台の在庫が更新されます。", + "Are you sure you want to confirm preparation? This will deduct stock from the warehouse.": "準備を確認しますか?倉庫から在庫が控除されます。", "Are you sure you want to confirm this stock-in order? This action will update your inventory levels.": "この入庫伝票を確定してもよろしいですか?この操作により在庫レベルが更新されます。", "Are you sure you want to confirm this transfer? This will deduct stock from source and add to target.": "この転送を確定してもよろしいですか?この操作により発送元の在庫が減算され、対象の在庫に加算されます。", + "Are you sure you want to deactivate this account? After deactivating, this account will no longer be able to log in to the system.": "Are you sure you want to deactivate this account? After deactivating, this account will no longer be able to log in to the system.", + "Are you sure you want to delete this account?": "Are you sure you want to delete this account?", + "Are you sure you want to delete this account? This action cannot be undone.": "Are you sure you want to delete this account? This action cannot be undone.", + "Are you sure you want to delete this advertisement? This will also remove all assignments to machines.": "Are you sure you want to delete this advertisement? This will also remove all assignments to machines.", + "Are you sure you want to delete this configuration?": "Are you sure you want to delete this configuration?", + "Are you sure you want to delete this configuration? This action cannot be undone.": "Are you sure you want to delete this configuration? This action cannot be undone.", "Are you sure you want to delete this draft order? This action cannot be undone.": "この下書き伝票を削除してもよろしいですか?この操作は取り消せません。", + "Are you sure you want to delete this item? This action cannot be undone.": "Are you sure you want to delete this item? This action cannot be undone.", + "Are you sure you want to delete this pass code?": "この通行コードを削除してもよろしいですか?", + "Are you sure you want to delete this product or category? This action cannot be undone.": "Are you sure you want to delete this product or category? This action cannot be undone.", + "Are you sure you want to delete this product?": "Are you sure you want to delete this product?", + "Are you sure you want to delete this product? All related historical translation data will also be removed.": "Are you sure you want to delete this product? All related historical translation data will also be removed.", + "Are you sure you want to delete this role? This action cannot be undone.": "Are you sure you want to delete this role? This action cannot be undone.", + "Are you sure you want to delete your account?": "Are you sure you want to delete your account?", + "Are you sure you want to disable this pass code? It will no longer be valid for machine access.": "この通行コードを無効にしてもよろしいですか?無効にすると機台へのアクセスができなくなります。", + "Are you sure you want to proceed? This action cannot be undone.": "Are you sure you want to proceed? This action cannot be undone.", + "Are you sure you want to remove this assignment?": "Are you sure you want to remove this assignment?", + "Are you sure you want to send this command?": "Are you sure you want to send this command?", + "Are you sure you want to start delivery?": "配送を開始しますか?", + "Are you sure?": "Are you sure?", + "Assign": "Assign", + "Assign Advertisement": "Assign Advertisement", + "Assign Machines": "Assign Machines", "Assign Personnel": "担当者指定", + "Assign Personnel (Optional)": "担当者指定 (オプション)", + "Assign replenishment staff": "Assign replenishment staff", + "Assign warehouse managers": "Assign warehouse managers", + "Assigned Machines": "Assigned Machines", "Assigned To": "担当者", + "Assignment removed successfully.": "Assignment removed successfully.", + "Audit Management": "Audit Management", + "Audit Permissions": "Audit Permissions", + "Authorization updated successfully": "Authorization updated successfully", + "Authorize": "Authorize", + "Authorize Btn": "Authorize Btn", + "Authorized Accounts": "Authorized Accounts", + "Authorized Accounts Tab": "Authorized Accounts Tab", + "Authorized Machines": "Authorized Machines", + "Authorized Machines Management": "Authorized Machines Management", + "Authorized Status": "Authorized Status", "Auto Replenishment": "一括補充", "Automatically calculate replenishment needs based on machine capacity": "マシン容量に基づいて補充ニーズを自動計算", + "Availability": "Availability", + "Available Machines": "Available Machines", + "Avatar updated successfully.": "Avatar updated successfully.", + "Avg Cycle": "Avg Cycle", + "Back to History": "Back to History", + "Back to List": "Back to List", + "Badge Settings": "Badge Settings", + "Barcode": "Barcode", + "Barcode / Material": "Barcode / Material", + "Basic Information": "Basic Information", + "Basic Settings": "Basic Settings", + "Basic Specifications": "Basic Specifications", + "Batch": "Batch", + "Batch No": "Batch No", + "Batch Number": "Batch Number", + "Belongs To": "Belongs To", + "Belongs To Company": "Belongs To Company", "Branch": "分倉庫", "Branch Warehouses": "分倉庫数", + "Business Type": "Business Type", + "Buyout": "Buyout", + "CASH": "CASH", + "CREATE STOCK TRANSFERS BETWEEN WAREHOUSES AND MACHINE RETURNS": "倉庫間の転送および機台からの返品伝票を作成", "Calculate Replenishment": "補充量を計算", + "Cancel": "Cancel", + "Cancel Code": "コードをキャンセル", "Cancel Order": "注文取消", + "Cancel Pass Code": "通行コードをキャンセル", + "Cancel Pickup Code": "受取コードをキャンセル", + "Cancel Purchase": "Cancel Purchase", "Cancelled": "キャンセル済み", + "Cannot Delete Role": "Cannot Delete Role", "Cannot cancel this order": "この注文はキャンセルできません", + "Cannot change Super Admin status.": "Cannot change Super Admin status.", + "Cannot delete advertisement being used by machines.": "Cannot delete advertisement being used by machines.", + "Cannot delete company with active accounts.": "Cannot delete company with active accounts.", + "Cannot delete model that is currently in use by machines.": "Cannot delete model that is currently in use by machines.", + "Cannot delete role with active users.": "Cannot delete role with active users.", "Cannot delete warehouse with existing stock": "在庫がある倉庫は削除できません。", + "Card Machine System": "カード決済システム", + "Card Reader": "Card Reader", + "Card Reader No": "Card Reader No", + "Card Reader Reboot": "Card Reader Reboot", + "Card Reader Restart": "Card Reader Restart", + "Card Reader Seconds": "Card Reader Seconds", "Card System": "カード決済システム", + "Card Terminal": "Card Terminal", "Card Terminal System": "カード端末システム", "Cash Module": "現金決済モジュール", "Cash Module Feature": "現金モジュール機能", + "Cash Module Function": "現金モジュール機能", + "Category": "Category", + "Category Management": "Category Management", + "Category Name": "Category Name", + "Category Name (en)": "Category Name (en)", + "Category Name (ja)": "Category Name (ja)", + "Category Name (zh_TW)": "Category Name (zh_TW)", + "Change": "Change", + "Change Note": "Change Note", + "Change Stock": "Change Stock", + "Channel Limits": "Channel Limits", + "Channel Limits (Track/Spring)": "Channel Limits (Track/Spring)", + "Channel Limits Configuration": "Channel Limits Configuration", + "ChannelId": "ChannelId", + "ChannelSecret": "ChannelSecret", + "Checkout Time 1": "Checkout Time 1", + "Checkout Time 2": "Checkout Time 2", + "Clear": "Clear", + "Clear Filter": "Clear Filter", + "Clear Stock": "Clear Stock", + "Click here to re-send the verification email.": "Click here to re-send the verification email.", + "Click to Open Dashboard": "Click to Open Dashboard", + "Click to upload": "Click to upload", + "Close": "閉じる", + "Close Panel": "Close Panel", + "Code": "コード", + "Code Copied": "Code Copied", "Coin/Banknote Machine": "硬貨/紙幣モジュール", "Coin/Bill Acceptor": "コイン/紙幣機", + "Command Center": "Command Center", + "Command Confirmation": "Command Confirmation", + "Command Type": "Command Type", + "Command error:": "Command error:", + "Command has been queued successfully.": "Command has been queued successfully.", + "Command not found": "Command not found", + "Command queued successfully.": "Command queued successfully.", + "Company": "Company", + "Company Code": "Company Code", + "Company Information": "Company Information", + "Company Level": "Company Level", + "Company Name": "Company Name", + "Complete movement history log": "Complete movement history log", "Completed": "完了", "Completed At": "完了日時", + "Config Name": "Config Name", + "Configuration Name": "Configuration Name", "Confirm": "確認", + "Confirm Account Deactivation": "Confirm Account Deactivation", + "Confirm Account Status Change": "Confirm Account Status Change", + "Confirm Assignment": "Confirm Assignment", "Confirm Cancel": "キャンセル確認", + "Confirm Changes": "Confirm Changes", "Confirm Complete": "完了を確認", "Confirm Deletion": "削除の確認", + "Confirm Password": "Confirm Password", "Confirm Prepare": "準備確認", - "Confirm replenishment completed?": "補充が完了したことを確認しますか?", + "Confirm Status Change": "Confirm Status Change", "Confirm Stock-In": "入庫を確認", "Confirm Stock-in Order": "入庫伝票を確認", - "Confirm this stock-in order?": "この入庫伝票を確認しますか?", - "Confirm this transfer?": "この転送を確認しますか?", "Confirm Transfer": "転送を確認", "Confirm Transfer Order": "転送伝票を確認", - "Create and manage replenishment orders from warehouse to machines": "倉庫から機台への補充伝票の作成と管理", + "Confirm replenishment completed?": "補充が完了したことを確認しますか?", + "Confirm this stock-in order?": "この入庫伝票を確認しますか?", + "Confirm this transfer?": "この転送を確認しますか?", + "Connected": "Connected", + "Connecting...": "Connecting...", + "Connection lost (LWT)": "接続が切断されました (LWT)", + "Connection restored": "接続が復旧しました", + "Connectivity Status": "Connectivity Status", + "Connectivity vs Sales Correlation": "Connectivity vs Sales Correlation", + "Contact & Details": "Contact & Details", + "Contact Email": "Contact Email", + "Contact Info": "Contact Info", + "Contact Name": "Contact Name", + "Contact Phone": "Contact Phone", + "Contract": "Contract", + "Contract End": "Contract End", + "Contract History": "Contract History", + "Contract History Detail": "Contract History Detail", + "Contract Model": "Contract Model", + "Contract Period": "Contract Period", + "Contract Start": "Contract Start", + "Contract Until (Optional)": "Contract Until (Optional)", + "Contract information updated": "Contract information updated", + "Control": "Control", + "Copy": "コピー", + "Copy Code": "Copy Code", + "Copy Link": "リンクをコピー", + "Cost": "Cost", + "Coupons": "Coupons", + "Create": "Create", + "Create Config": "Create Config", + "Create Machine": "Create Machine", + "Create New Role": "Create New Role", + "Create Pass Code": "通行コードを作成", + "Create Payment Config": "Create Payment Config", + "Create Product": "Create Product", "Create Replenishment Order": "補充伝票を作成", - "Create stock replenishment for specific machines": "指定マシンの在庫補充伝票を作成", - "CREATE STOCK TRANSFERS BETWEEN WAREHOUSES AND MACHINE RETURNS": "倉庫間の転送および機台からの返品伝票を作成", - "Create stock transfers between warehouses and machine returns": "倉庫間の転送および機台からの返品伝票を作成", + "Create Role": "Create Role", + "Create Sub Account Role": "Create Sub Account Role", "Create Transfer Order": "転送伝票を作成", + "Create a new role and assign permissions.": "Create a new role and assign permissions.", + "Create and manage replenishment orders from warehouse to machines": "倉庫から機台への補充伝票の作成と管理", + "Create main and branch warehouses": "Create main and branch warehouses", + "Create replenishment orders and manage restocking from warehouse to machines": "Create replenishment orders and manage restocking from warehouse to machines", + "Create stock replenishment for specific machines": "指定マシンの在庫補充伝票を作成", + "Create stock transfers between warehouses and machine returns": "倉庫間の転送および機台からの返品伝票を作成", + "Create stock-in orders": "Create stock-in orders", "Created At": "作成日時", "Created By": "作成者", + "Creation Time": "Creation Time", + "Creator": "Creator", "Credit Card": "クレジットカード", + "Credit Card / Contactless": "Credit Card / Contactless", + "Critical": "Critical", + "Current": "Current", + "Current Password": "Current Password", + "Current Status": "Current Status", "Current Stock": "現在在庫", + "Current Stocks": "現在の在庫", + "Current Type": "Current Type", + "Current:": "Current:", + "Customer Details": "Customer Details", + "Customer Info": "Customer Info", + "Customer List": "顧客リスト", + "Customer Management": "Customer Management", + "Customer Payment Config": "Customer Payment Config", + "Customer and associated accounts disabled successfully.": "Customer and associated accounts disabled successfully.", + "Customer created successfully.": "Customer created successfully.", + "Customer deleted successfully.": "Customer deleted successfully.", + "Customer enabled successfully.": "Customer enabled successfully.", + "Customer updated successfully.": "Customer updated successfully.", + "Cycle Efficiency": "Cycle Efficiency", + "Daily Revenue": "Daily Revenue", "Damage": "破損", + "Danger Zone: Delete Account": "Danger Zone: Delete Account", + "Dashboard": "Dashboard", + "Data Configuration": "Data Configuration", + "Data Configuration Permissions": "Data Configuration Permissions", + "Date": "日付", + "Date Range": "Date Range", + "Day Before": "Day Before", + "Days": "日", + "Default Donate": "Default Donate", + "Default Not Donate": "Default Not Donate", + "Define and manage security roles and permissions.": "Define and manage security roles and permissions.", + "Define new third-party payment parameters": "Define new third-party payment parameters", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete Advertisement": "Delete Advertisement", + "Delete Advertisement Confirmation": "Delete Advertisement Confirmation", + "Delete Code": "コードを削除", + "Delete Customer": "顧客を削除", + "Delete Pass Code": "通行コードを無効化", "Delete Permanently": "永久に削除", + "Delete Product": "Delete Product", + "Delete Product Confirmation": "Delete Product Confirmation", "Delivering": "配送中", + "Delivering product": "Delivering product", + "Delivery door close error": "Delivery door close error", + "Delivery door closed": "Delivery door closed", + "Delivery door open error": "Delivery door open error", + "Delivery door opened": "Delivery door opened", + "Deposit Bonus": "Deposit Bonus", + "Describe the repair or maintenance status...": "Describe the repair or maintenance status...", + "Description / Name": "説明 / 名称", + "Deselect All": "Deselect All", + "Detail": "Detail", + "Details": "詳細", + "Device Information": "Device Information", + "Device Status Logs": "Device Status Logs", + "Devices": "Devices", + "Disable": "無効化", + "Disable Code": "コードを無効化", + "Disable Customer Confirmation": "顧客無効化の確認", + "Disable Pass Code": "通行コードを無効化", + "Disable Product Confirmation": "Disable Product Confirmation", + "Disable Warehouse": "倉庫を無効化", + "Disabled": "無効", + "Disabling this customer will also disable all accounts under this customer. Are you sure you want to continue?": "この顧客を無効化すると、この顧客のすべてのアカウントも無効になります。続けますか?", + "Discord Notifications": "Discord Notifications", + "Dispense Failed": "Dispense Failed", + "Dispense Success": "Dispense Success", + "Dispense error (0407)": "Dispense error (0407)", + "Dispense error (0408)": "Dispense error (0408)", + "Dispense error (0409)": "Dispense error (0409)", + "Dispense error (040A)": "Dispense error (040A)", + "Dispense stopped": "Dispense stopped", + "Dispense successful": "Dispense successful", + "Dispensing": "Dispensing", + "Dispensing in progress": "Dispensing in progress", "Display Material Code": "素材コードを表示", + "Displaying": "表示中", + "Door Closed": "Door Closed", + "Door Opened": "Door Opened", + "Download Image": "画像をダウンロード", "Draft": "下書き", + "Duration": "Duration", + "Duration (Seconds)": "Duration (Seconds)", "E.SUN Bank Scan": "玉山銀行スキャン", "E.SUN Pay": "E.SUN Pay", "E.SUN QR Pay": "玉山QR決済", - "Electronic Invoice": "電子翻訳", - "Empty": "空", - "Enable Points Mechanism": "ポイント機能を有効化", - "Enabled Features": "有効な機能", - "Error": "エラー", + "E.SUN QR Scan": "E.SUN QR Scan", + "E.SUN QR Scan Settings Description": "E.SUN QR Scan Settings Description", + "EASY_MERCHANT_ID": "EASY_MERCHANT_ID", + "ECPay Invoice": "ECPay Invoice", + "ECPay Invoice Settings Description": "ECPay Invoice Settings Description", "ESUN": "玉山銀行 (ESUN)", + "ESUN Scan Pay": "ESUN Scan Pay", + "Edit": "Edit", + "Edit Account": "Edit Account", + "Edit Advertisement": "Edit Advertisement", + "Edit Category": "Edit Category", + "Edit Customer": "Edit Customer", + "Edit Expiry": "Edit Expiry", + "Edit Machine": "Edit Machine", + "Edit Machine Model": "Edit Machine Model", + "Edit Machine Name": "Edit Machine Name", + "Edit Machine Settings": "Edit Machine Settings", + "Edit Name": "Edit Name", + "Edit Payment Config": "Edit Payment Config", + "Edit Product": "Edit Product", + "Edit Role": "Edit Role", + "Edit Role Permissions": "Edit Role Permissions", + "Edit Settings": "Edit Settings", + "Edit Slot": "Edit Slot", + "Edit Sub Account Role": "Edit Sub Account Role", + "Edit Warehouse": "倉庫を編集", + "Electronic Invoice": "電子翻訳", + "Elevator descending": "Elevator descending", + "Elevator descent error": "Elevator descent error", + "Elevator failure": "Elevator failure", + "Elevator rise error": "Elevator rise error", + "Elevator rising": "Elevator rising", + "Elevator sensor error": "Elevator sensor error", + "Email": "Email", + "Emblem / Label": "エンブレム / ラベル", + "Empty": "空", + "Empty Slot": "空き貨道", + "Empty Slots": "空き貨道", + "Enable": "Enable", + "Enable Material Code": "Enable Material Code", + "Enable Points": "Enable Points", + "Enable Points Mechanism": "ポイント機能を有効化", + "Enabled": "Enabled", + "Enabled Features": "有効な機能", + "Enabled/Disabled": "Enabled/Disabled", + "End Date": "End Date", + "End Time": "終了時間", + "Engineer": "Engineer", + "English": "English", + "Ensure your account is using a long, random password to stay secure.": "Ensure your account is using a long, random password to stay secure.", + "Enter ad material name": "Enter ad material name", + "Enter full address": "Enter full address", + "Enter login ID": "Enter login ID", + "Enter machine location": "Enter machine location", + "Enter machine name": "Enter machine name", + "Enter machine name...": "Enter machine name...", + "Enter model name": "Enter model name", + "Enter role name": "Enter role name", + "Enter serial number": "Enter serial number", + "Enter your password to confirm": "Enter your password to confirm", + "Entire Machine": "Entire Machine", + "Equipment efficiency and OEE metrics": "Equipment efficiency and OEE metrics", + "Error": "エラー", + "Error processing request": "Error processing request", + "Error report accepted": "Error report accepted", + "Error: :message (:code)": "Error: :message (:code)", + "Estimated Expiry": "予定有効期限", + "Execute": "Execute", + "Execute Change": "Execute Change", + "Execute Delivery Now": "Execute Delivery Now", + "Execute Remote Change": "Execute Remote Change", + "Execute maintenance and operational commands remotely": "Execute maintenance and operational commands remotely", + "Execution Time": "実行時間", + "Exp": "Exp", + "Expected Expiry": "予定有効期限", + "Expected Expiry Date & Time": "予想有効期限", "Expected Stock": "予想在庫", + "Expired": "期限切れ", + "Expired / Disabled": "Expired / Disabled", + "Expired Time": "Expired Time", + "Expires At": "有効期限", + "Expiring": "Expiring", "Expiry": "有効期限", + "Expiry Date": "Expiry Date", + "Expiry Management": "Expiry Management", + "Expiry Time": "有効期限時間", + "Expiry date tracking and warnings": "Expiry date tracking and warnings", + "Failed": "Failed", + "Failed to fetch machine data.": "Failed to fetch machine data.", + "Failed to load permissions": "Failed to load permissions", "Failed to load preview": "プレビューの読み込みに失敗しました", + "Failed to load tab content": "Failed to load tab content", + "Failed to save permissions.": "Failed to save permissions.", + "Failed to update machine images: ": "Failed to update machine images: ", + "Feature Settings": "Feature Settings", + "Feature Toggles": "Feature Toggles", "Fill Quantity": "補充数量", "Fill Rate": "充填率", + "Fill in the device repair or maintenance details": "Fill in the device repair or maintenance details", + "Fill in the product details below": "Fill in the product details below", + "Filter": "フィルター", + "Filter by Warehouse Presence": "倉庫の有無でフィルター", + "Firmware Version": "Firmware Version", + "Firmware updated to :version": "Firmware updated to :version", + "Fleet Avg OEE": "Fleet Avg OEE", + "Fleet Performance": "Fleet Performance", + "Force End Session": "Force End Session", + "Force end current session": "Force end current session", "From": "発送元", "From Machine": "発送元機台", "From Warehouse": "発送元倉庫", + "From:": "From:", + "Full Access": "Full Access", + "Full Name": "Full Name", + "Full Points": "Full Points", + "Functional Settings": "機能設定", + "Games": "Games", + "General permissions not linked to a specific menu.": "General permissions not linked to a specific menu.", + "Generate": "生成", + "Generate New Code": "新しいコードを生成", + "Generate Pickup Code": "受取コードを生成", + "Generate and manage one-time pickup codes for customers": "お客様向けの1回限り受取コードを生成・管理します", + "Gift Definitions": "Gift Definitions", + "Global roles accessible by all administrators.": "Global roles accessible by all administrators.", "Go Back": "戻る", "Goods & System Settings": "商品とシステム設定", + "Got it": "Got it", + "Grant UI Access": "Grant UI Access", + "Grid View": "グリッド表示", + "Half Points": "Half Points", + "Half Points Amount": "Half Points Amount", + "Hardware & Network": "Hardware & Network", + "Hardware & Slots": "Hardware & Slots", + "HashIV": "HashIV", + "HashKey": "HashKey", + "Heartbeat": "Heartbeat", + "Heating End Time": "Heating End Time", + "Heating Range": "Heating Range", + "Heating Start Time": "Heating Start Time", + "Helper": "Helper", + "Home Page": "Home Page", + "Hopper empty": "Hopper empty", + "Hopper empty (0212)": "Hopper empty (0212)", + "Hopper error (0424)": "Hopper error (0424)", + "Hopper heating timeout": "Hopper heating timeout", + "Hopper overheated": "Hopper overheated", + "Hrs": "時間", + "ITEM": "ITEM", + "Identity & Codes": "Identity & Codes", "Image": "画像", + "Image Downloaded": "画像がダウンロードされました", + "Immediate": "Immediate", "In Stock": "現在庫", "Includes Credit Card/Mobile Pay": "クレジットカード/モバイル決済を含む", + "Indefinite": "Indefinite", + "Info": "Info", + "Initial Admin Account": "Initial Admin Account", + "Initial Role": "Initial Role", + "Initial contract registration": "Initial contract registration", + "Installation": "Installation", + "Insufficient stock for transfer": "転送に必要な在庫が不足しています", "Invalid personnel selection": "無効な担当者選択", "Invalid status transition": "無効なステータス遷移", + "Inventory": "在庫", + "Inventory Alerts": "Inventory Alerts", "Inventory Management": "在庫管理", + "Inventory Overview": "在庫概要", + "Inventory Stable": "Inventory Stable", + "Inventory synced with machine": "Inventory synced with machine", + "Invoice Status": "Invoice Status", + "Item List": "品目リスト", + "Items": "Items", + "JKO_MERCHANT_ID": "JKO_MERCHANT_ID", + "Japanese": "Japanese", + "Joined": "Joined", + "Just now": "Just now", + "Key": "Key", + "Key No": "Key No", + "LEVEL TYPE": "LEVEL TYPE", + "LINE Pay Direct": "LINE Pay Direct", + "LINE Pay Direct Settings Description": "LINE Pay Direct Settings Description", + "LINE_MERCHANT_ID": "LINE_MERCHANT_ID", + "LIVE": "LIVE", + "Last Communication": "Last Communication", + "Last Heartbeat": "Last Heartbeat", + "Last Page": "Last Page", + "Last Signal": "Last Signal", + "Last Sync": "Last Sync", + "Last Time": "Last Time", + "Last Updated": "Last Updated", + "Latitude": "Latitude", + "Lease": "Lease", + "Leave empty for permanent code": "無期限にする場合は空欄にしてください", + "Leave empty or 0 for permanent code": "空白または0で永久コード", + "Level": "Level", + "Line Coupons": "Line Coupons", + "Line Machines": "Line Machines", + "Line Management": "Line Management", + "Line Members": "Line Members", + "Line Official Account": "Line Official Account", + "Line Orders": "Line Orders", + "Line Permissions": "Line Permissions", + "Line Products": "Line Products", "LinePay": "LinePay", "LinePay Payment": "LinePay 決済", + "Link": "リンク", + "Link Copied": "リンクをコピーしました", + "Live Fleet Updates": "Live Fleet Updates", + "Loading Cabinet...": "Loading Cabinet...", + "Loading Data": "Loading Data", + "Loading machines...": "Loading machines...", "Loading...": "読み込み中...", + "Location": "Location", + "Location found!": "Location found!", + "Location not found": "Location not found", + "Lock": "Lock", + "Lock Now": "Lock Now", + "Lock Page": "Lock Page", + "Lock Page Lock": "Lock Page Lock", + "Lock Page Unlock": "Lock Page Unlock", + "Locked Page": "Locked Page", + "Log Time": "Log Time", + "Login History": "Login History", + "Login failed: :account": "Login failed: :account", + "Logout": "Logout", + "Logs": "Logs", + "Longitude": "Longitude", + "Low": "Low", "Low Stock": "在庫不足", "Low Stock Alerts": "低在庫アラート", + "Low stock and out-of-stock alerts": "Low stock and out-of-stock alerts", + "Loyalty & Features": "Loyalty & Features", "Machine": "マシン", + "Machine / Slot": "機台 / 貨道", + "Machine Advertisement Settings": "Machine Advertisement Settings", + "Machine Count": "Machine Count", + "Machine Details": "Machine Details", "Machine Distribution": "機器分布", "Machine Distribution Map": "機器分布マップ", + "Machine Images": "Machine Images", + "Machine Info": "Machine Info", + "Machine Information": "Machine Information", + "Machine Inventory": "Machine Inventory", "Machine Inventory Overview": "機台在庫概要", - "Machine Stock": "マシン在庫", + "Machine List": "Machine List", + "Machine Login Logs": "Machine Login Logs", + "Machine Logs": "Machine Logs", + "Machine Management": "Machine Management", + "Machine Management Permissions": "Machine Management Permissions", + "Machine Model": "Machine Model", + "Machine Model Settings": "Machine Model Settings", + "Machine Name": "Machine Name", + "Machine Permissions": "Machine Permissions", + "Machine Reboot": "Machine Reboot", + "Machine Registry": "Machine Registry", "Machine Replenishment": "機台補充", + "Machine Reports": "Machine Reports", + "Machine Restart": "Machine Restart", "Machine Return": "機台返品", + "Machine Serial No": "Machine Serial No", + "Machine Settings": "Machine Settings", + "Machine Status": "Machine Status", + "Machine Status List": "Machine Status List", + "Machine Stock": "マシン在庫", + "Machine System Settings": "機台システム設定", + "Machine Utilization": "Machine Utilization", + "Machine created successfully.": "Machine created successfully.", + "Machine images updated successfully.": "Machine images updated successfully.", + "Machine is heartbeat normal": "Machine is heartbeat normal", + "Machine model created successfully.": "Machine model created successfully.", + "Machine model deleted successfully.": "Machine model deleted successfully.", + "Machine model updated successfully.": "Machine model updated successfully.", + "Machine normal": "Machine normal", + "Machine not found": "Machine not found", + "Machine permissions updated successfully.": "機台権限が正常に更新されました。", + "Machine settings updated successfully.": "Machine settings updated successfully.", "Machine to Warehouse": "機台から倉庫", + "Machine to warehouse returns": "Machine to warehouse returns", + "Machine updated successfully.": "Machine updated successfully.", + "Machines": "Machines", + "Machines Online": "Machines Online", "Main": "総倉庫", "Main Warehouses": "総倉庫数", + "Maintenance": "Maintenance", + "Maintenance Content": "Maintenance Content", + "Maintenance Date": "Maintenance Date", + "Maintenance Details": "Maintenance Details", + "Maintenance Operations": "Maintenance Operations", + "Maintenance Photos": "メンテナンス写真", + "Maintenance QR": "Maintenance QR", + "Maintenance QR Code": "Maintenance QR Code", + "Maintenance Records": "Maintenance Records", + "Maintenance record created successfully": "Maintenance record created successfully", + "Manage": "Manage", + "Manage Account Access": "Manage Account Access", + "Manage ad materials and machine playback settings": "Manage ad materials and machine playback settings", + "Manage administrative and tenant accounts": "Manage administrative and tenant accounts", + "Manage all tenant accounts and validity": "Manage all tenant accounts and validity", + "Manage multi-use authorization codes for testing and maintenance": "テストおよびメンテナンス用のマルチユース認証コードを管理します", "Manage stock levels, stock-in orders, and movement history": "在庫レベル、入庫伝票、および移動履歴の管理", "Manage stock transfers between warehouses and machine returns": "倉庫間の転送および機台からの返品伝票を作成", + "Manage warehouse stock levels, stock-in orders, adjustments, and movement history": "Manage warehouse stock levels, stock-in orders, adjustments, and movement history", + "Manage your ad material details": "Manage your ad material details", + "Manage your catalog, categories, and inventory settings.": "Manage your catalog, categories, and inventory settings.", + "Manage your catalog, prices, and multilingual details.": "Manage your catalog, prices, and multilingual details.", + "Manage your company's sub-accounts and role permissions": "会社のサブアカウントとロール権限の管理", + "Manage your machine fleet and operational data": "Manage your machine fleet and operational data", + "Manage your profile information, security settings, and login history": "Manage your profile information, security settings, and login history", + "Manage your warehouses, including main and branch warehouses": "Manage your warehouses, including main and branch warehouses", + "Management of operational parameters": "Management of operational parameters", + "Management of operational parameters and models": "Management of operational parameters and models", + "Manufacturer": "Manufacturer", "Material Code": "素材コード", + "Material Name": "Material Name", + "Material Type": "Material Type", + "Max": "Max", + "Max 24 Hours": "最大24時間", + "Max 3": "Max 3", + "Max 50MB": "Max 50MB", + "Max 5MB": "Max 5MB", + "Max 720 hours (30 days)": "最大 720 時間 (30 日間)", + "Max :max hours": "最大:max時間", "Max Capacity": "最大容量", + "Max Capacity:": "Max Capacity:", "Max Stock": "最大在庫", + "Member": "Member", + "Member & External": "Member & External", + "Member List": "Member List", + "Member Management": "Member Management", + "Member Price": "Member Price", + "Member Status": "Member Status", + "Member System": "Member System", + "Membership Tiers": "Membership Tiers", + "Menu Permissions": "Menu Permissions", + "Merchant IDs": "Merchant IDs", + "Merchant payment gateway settings management": "Merchant payment gateway settings management", + "Message": "Message", + "Message Content": "Message Content", + "Message Display": "Message Display", + "Microwave door error": "Microwave door error", + "Microwave door opened": "Microwave door opened", + "Min 8 characters": "Min 8 characters", + "Model": "Model", + "Model Name": "Model Name", + "Model changed to :model": "Model changed to :model", + "Models": "Models", + "Modification History": "Modification History", + "Modifying your own administrative permissions may result in losing access to certain system functions.": "Modifying your own administrative permissions may result in losing access to certain system functions.", + "Monitor and manage stock levels across your fleet": "Monitor and manage stock levels across your fleet", + "Monitor events and system activity across your vending fleet.": "Monitor events and system activity across your vending fleet.", + "Monitor warehouse stock summary": "Monitor warehouse stock summary", + "Monthly Transactions": "Monthly Transactions", + "Monthly cumulative revenue overview": "Monthly cumulative revenue overview", + "Motor not stopped": "Motor not stopped", "Movement History": "移動履歴", "Movement Logs": "移動ログ", + "Multilingual Names": "Multilingual Names", + "N/A": "N/A", + "Name": "Name", + "Name / Machine": "名称 / 機台", + "Name in English": "Name in English", + "Name in Japanese": "Name in Japanese", + "Name in Traditional Chinese": "Name in Traditional Chinese", "Needs replenishment": "補充が必要", + "Never Connected": "Never Connected", + "New Command": "New Command", + "New Machine Name": "New Machine Name", + "New Password": "New Password", + "New Password (leave blank to keep current)": "New Password (leave blank to keep current)", + "New Record": "New Record", "New Replenishment": "新規補充", + "New Role": "New Role", "New Stock-In Order": "新規入庫伝票", - "New Transfer": "新規転送", + "New Sub Account Role": "New Sub Account Role", + "New Transfer": "新規轉送", + "Next": "Next", + "No Actions": "操作なし", + "No Company": "No Company", + "No Invoice": "No Invoice", + "No Location": "場所なし", + "No Machine Selected": "No Machine Selected", + "No accounts found": "No accounts found", + "No active cargo lanes found": "No active cargo lanes found", + "No additional notes": "No additional notes", + "No address information": "No address information", + "No advertisements found.": "No advertisements found.", + "No alert summary": "No alert summary", + "No assignments": "No assignments", + "No categories found.": "No categories found.", + "No command history": "No command history", + "No configurations found": "No configurations found", + "No content provided": "内容は提供されていません", + "No customers found": "No customers found", + "No data available": "No data available", + "No file uploaded.": "No file uploaded.", + "No heartbeat for over 30 seconds": "No heartbeat for over 30 seconds", + "No history records": "No history records", + "No images uploaded": "No images uploaded", + "No location set": "No location set", + "No login history yet": "No login history yet", + "No logs found": "No logs found", + "No machines assigned": "No machines assigned", + "No machines available": "No machines available", + "No machines available in this company.": "No machines available in this company.", + "No machines found": "No machines found", + "No maintenance records found": "No maintenance records found", + "No matching logs found": "No matching logs found", + "No matching machines": "No matching machines", + "No materials available": "No materials available", "No movement records found": "移動履歴が見つかりません", + "No pass codes found": "通行コードが見つかりません", + "No permissions": "No permissions", + "No pickup codes found": "受取コードが見つかりません", "No products found in this warehouse": "この倉庫に在庫はありません", + "No products found matching your criteria.": "No products found matching your criteria.", + "No records found": "No records found", "No replenishment orders found": "補充伝票が見つかりません", + "No results found": "No results found", + "No roles available": "No roles available", + "No roles found.": "No roles found.", "No slot data": "貨道データなし", + "No slot data available": "No slot data available", + "No slots found": "No slots found", "No slots need replenishment": "補充が必要なスロットはありません", "No stock data found": "在庫データが見つかりません", "No stock-in orders found": "入庫伝票が見つかりません", "No transfer orders found": "転送伝票が見つかりません", + "No users found": "No users found", + "No warehouses found": "倉庫が見つかりません", + "None": "None", "Normal": "通常", + "Not Used": "Not Used", + "Not Used Description": "Not Used Description", "Note": "備考", "Note (optional)": "備考 (任意)", + "Notes": "Notes", + "OEE": "OEE", + "OEE Efficiency Trend": "OEE Efficiency Trend", + "OEE Score": "OEE Score", + "OEE.Activity": "OEE.Activity", + "OEE.Errors": "OEE.Errors", + "OEE.Hours": "OEE.Hours", + "OEE.Orders": "OEE.Orders", + "OEE.Sales": "OEE.Sales", "Offline": "オフライン", + "Offline Machines": "Offline Machines", + "Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.": "Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.", + "Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.": "Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.", + "One-click replenishment order generation": "One-click replenishment order generation", + "Ongoing": "Ongoing", "Online": "オンライン", + "Online Duration": "Online Duration", + "Online Machines": "Online Machines", + "Online Status": "Online Status", + "Only system roles can be assigned to platform administrative accounts.": "Only system roles can be assigned to platform administrative accounts.", + "Operation Note": "Operation Note", + "Operation Records": "Operation Records", "Operation failed": "操作に失敗しました", + "Operational Parameters": "Operational Parameters", + "Operations": "Operations", + "Operator": "Operator", + "Optimal": "Optimal", + "Optimized Performance": "Optimized Performance", + "Optimized for display. Supported formats: JPG, PNG, WebP.": "Optimized for display. Supported formats: JPG, PNG, WebP.", "Optional": "任意", "Optional remarks": "任意備考", + "Optional remarks...": "任意の備考...", "Order Details": "入庫伝票詳細", - "Order has been cancelled": "注文がキャンセルされました", + "Order Info": "注文情報", + "Order Management": "Order Management", "Order No.": "伝票番号", + "Order already completed": "注文はすでに完了しています", + "Order already processed": "注文はすでに処理されています", + "Order completed and stock updated": "注文が完了し、在庫が更新されました", + "Order has been cancelled": "注文がキャンセルされました", + "Order is now in delivery": "注文は配送中です", + "Order prepared successfully, stock deducted": "注文が正常に準備され、在庫が控除されました", + "Orders": "Orders", + "Original": "Original", + "Original Type": "Original Type", + "Original:": "Original:", + "Other Features": "Other Features", + "Other Permissions": "Other Permissions", + "Others": "Others", "Out of Stock": "在庫切れ", + "Out of stock.": "Out of stock.", + "Output Count": "Output Count", + "Overall Capacity": "全体容量", + "Owner": "Owner", + "PARTNER_KEY": "PARTNER_KEY", + "PI_MERCHANT_ID": "PI_MERCHANT_ID", + "PNG, JPG up to 2MB": "PNG, JPG up to 2MB", + "PNG, JPG, WEBP up to 10MB": "PNG, JPG, WEBP up to 10MB", + "POS Reboot": "POS Reboot", + "PS_LEVEL": "PS_LEVEL", + "PS_MERCHANT_ID": "PS_MERCHANT_ID", + "Page 0": "Page 0", + "Page 1": "Page 1", + "Page 2": "Page 2", + "Page 3": "Page 3", + "Page 4": "Page 4", + "Page 5": "Page 5", + "Page 6": "Page 6", + "Page 60": "Page 60", + "Page 61": "Page 61", + "Page 610": "Page 610", + "Page 611": "Page 611", + "Page 612": "Page 612", + "Page 62": "Page 62", + "Page 63": "Page 63", + "Page 64": "Page 64", + "Page 65": "Page 65", + "Page 66": "Page 66", + "Page 67": "Page 67", + "Page 68": "Page 68", + "Page 69": "Page 69", + "Page 7": "Page 7", + "Page Lock Status": "Page Lock Status", + "Parameters": "Parameters", + "Pass Code": "通行コード", + "Pass Code (8 Digits)": "通行コード (8桁)", + "Pass Code Management": "通行コード管理", + "Pass Code QR": "Pass Code QR", + "Pass Code Ticket": "通行コードチケット", + "Pass Codes": "通行コード", + "Pass code created: :code": "通行コードが作成されました::code", + "Pass code deleted.": "通行コードが削除されました。", + "Pass code disabled.": "通行コードを無効にしました。", + "Pass code updated.": "通行コードが更新されました。", + "Password": "Password", + "Password updated successfully.": "Password updated successfully.", + "Payment & Invoice": "Payment & Invoice", + "Payment Buffer Seconds": "Payment Buffer Seconds", + "Payment Config": "Payment Config", + "Payment Configuration": "Payment Configuration", + "Payment Configuration created successfully.": "Payment Configuration created successfully.", + "Payment Configuration deleted successfully.": "Payment Configuration deleted successfully.", + "Payment Configuration updated successfully.": "Payment Configuration updated successfully.", + "Payment Selection": "Payment Selection", "Pending": "保留中", + "Per Page": "Per Page", + "Performance": "Performance", + "Permanent": "無期限", + "Permanent Code": "永久コード", + "Permanently Delete Account": "Permanently Delete Account", + "Permission Settings": "Permission Settings", + "Permission Tags": "Permission Tags", + "Permissions": "Permissions", + "Permissions updated successfully": "Permissions updated successfully", "Personnel assigned successfully": "担当者の指定が完了しました", + "Phone": "Phone", + "Photo Slot": "Photo Slot", + "Picked up": "Picked up", + "Picked up Time": "Picked up Time", + "Pickup Code": "受取コード", + "Pickup Code (8 Digits)": "取り出しコード(8桁)", + "Pickup Codes": "受取コード", + "Pickup Ticket": "取り出し票", + "Pickup code cancelled.": "取り出しコードがキャンセルされました。", + "Pickup code generated: :code": "取り出しコードが生成されました::code", + "Pickup code updated.": "取り出しコードが更新されました。", + "Pickup door closed": "Pickup door closed", + "Pickup door error": "Pickup door error", + "Pickup door not closed": "Pickup door not closed", + "Playback Order": "Playback Order", + "Please Select Slot first": "先にスロットを選択してください", + "Please check the following errors:": "Please check the following errors:", + "Please check the form for errors.": "Please check the form for errors.", + "Please enter address first": "Please enter address first", "Please enter configuration name": "設定名を入力してください", "Please select a company": "会社を選択してください", + "Please select a machine": "機台を選択してください", + "Please select a machine first": "Please select a machine first", + "Please select a machine model": "Please select a machine model", + "Please select a machine to view and manage its advertisements.": "Please select a machine to view and manage its advertisements.", + "Please select a machine to view metrics": "Please select a machine to view metrics", + "Please select a material": "Please select a material", + "Please select a slot": "Please select a slot", "Please select warehouse and machine": "倉庫とマシンを選択してください", - "Please Select Slot first": "先にスロットを選択してください", + "Point Rules": "Point Rules", + "Point Settings": "Point Settings", "Points": "ポイント", + "Points Rule": "Points Rule", + "Points Settings": "Points Settings", + "Points toggle": "Points toggle", + "Position": "Position", "Prepared": "準備済み", "Preparing": "準備中", + "Preview": "Preview", + "Previous": "Previous", + "Price / Member": "Price / Member", + "Pricing Information": "Pricing Information", "Product": "商品", + "Product / Slot": "商品 / 貨道", + "Product / Stock": "商品 / 在庫", + "Product Count": "Product Count", "Product Details": "商品詳細", "Product ID": "商品ID", + "Product Image": "Product Image", + "Product Info": "Product Info", + "Product List": "Product List", + "Product Management": "Product Management", + "Product Name": "商品名", + "Product Name (Multilingual)": "Product Name (Multilingual)", + "Product Reports": "Product Reports", + "Product Status": "Product Status", + "Product created successfully": "Product created successfully", + "Product deleted successfully": "Product deleted successfully", + "Product empty": "Product empty", + "Product status updated to :status": "Product status updated to :status", + "Product updated successfully": "Product updated successfully", + "Production Company": "Production Company", "Products": "商品", "Products / Stock": "商品 / 在庫", + "Profile": "Profile", + "Profile Information": "Profile Information", + "Profile Settings": "Profile Settings", + "Profile updated successfully.": "Profile updated successfully.", + "Promotions": "Promotions", + "Protected": "Protected", "Publish": "配信開始", + "Publish Time": "Publish Time", + "Purchase Audit": "Purchase Audit", + "Purchase Finished": "Purchase Finished", + "Purchases": "Purchases", + "Purchasing": "Purchasing", + "QR": "QR", + "QR CODE": "QRコード", + "QR Code": "QRコード", "QR Scan Payment": "QRスキャン決済機能", "Qty": "数量", "Qty Change": "数量変更", + "Quality": "Quality", "Quantity": "数量", + "Questionnaire": "Questionnaire", + "Quick Expiry Check": "Quick Expiry Check", + "Quick Maintenance": "Quick Maintenance", "Quick Replenish": "クイック補充", + "Quick Select": "Quick Select", + "Quick replenishment from this view": "Quick replenishment from this view", + "Quick search...": "Quick search...", + "Real-time OEE analysis awaits": "Real-time OEE analysis awaits", + "Real-time Operation Logs (Last 50)": "Real-time Operation Logs (Last 50)", + "Real-time fleet efficiency and OEE metrics": "Real-time fleet efficiency and OEE metrics", + "Real-time inventory status across all machines with expiry tracking": "Real-time inventory status across all machines with expiry tracking", + "Real-time monitoring across all machines": "Real-time monitoring across all machines", + "Real-time monitoring and adjustment of cargo lane inventory and expiration dates": "Real-time monitoring and adjustment of cargo lane inventory and expiration dates", + "Real-time performance analytics": "Real-time performance analytics", "Real-time slot-level inventory across all machines": "すべての機台におけるリアルタイムの貨道別在庫", - "Replenishment cancelled, stock returned": "補充キャンセル、在庫返却", + "Real-time status monitoring": "Real-time status monitoring", + "Reason for this command...": "Reason for this command...", + "Recalculate": "再計算", + "Receipt Printing": "Receipt Printing", + "Recent Commands": "Recent Commands", + "Recent Login": "Recent Login", + "Recently reported errors or warnings in logs": "Recently reported errors or warnings in logs", + "Records": "Records", + "Regenerate": "再生成", + "Regenerating the token will disconnect the physical machine until it is updated. Continue?": "Regenerating the token will disconnect the physical machine until it is updated. Continue?", + "Remote Change": "Remote Change", + "Remote Checkout": "Remote Checkout", + "Remote Command Center": "Remote Command Center", + "Remote Dispense": "Remote Dispense", + "Remote Lock": "Remote Lock", + "Remote Management": "Remote Management", + "Remote Permissions": "Remote Permissions", + "Remote Reboot": "Remote Reboot", + "Remote Settlement": "Remote Settlement", + "Remote dispense successful for slot :slot": "Remote dispense successful for slot :slot", + "Removal": "Removal", + "Repair": "Repair", + "Replenish": "補充", + "Replenishment": "補充", + "Replenishment Audit": "Replenishment Audit", "Replenishment Details": "機台補充伝票詳細", "Replenishment Items": "補充項目", - "Replenishment order confirmed and inventory updated": "補充伝票が確定され、在庫が更新されました", - "Replenishment order created successfully": "補充伝票が正常に作成されました", "Replenishment Orders": "機台補充伝票", + "Replenishment Page": "Replenishment Page", + "Replenishment Records": "Replenishment Records", + "Replenishment Staff": "補充担当者", + "Replenishment cancelled, stock returned": "補充キャンセル、在庫返却", + "Replenishment completed": "補充完了", + "Replenishment history": "Replenishment history", + "Replenishment order confirmed and inventory updated": "補充伝票が確定され、在庫が更新されました", + "Replenishment order created": "補充注文が作成されました", + "Replenishment order created successfully": "補充伝票が正常に作成されました", "Replenishment prepare": "補充準備", + "Replenishments": "Replenishments", + "Reporting Period": "Reporting Period", + "Reservation Members": "Reservation Members", + "Reservation System": "Reservation System", + "Reservations": "Reservations", "Reset Filters": "フィルターをリセット", + "Reset POS terminal": "Reset POS terminal", + "Resolve Coordinates": "Resolve Coordinates", + "Restart entire machine": "Restart entire machine", + "Restock report accepted": "Restock report accepted", + "Restrict UI Access": "Restrict UI Access", + "Restrict machine UI access": "Restrict machine UI access", + "Result reported": "Result reported", + "Retail Price": "Retail Price", + "Returns": "Returns", + "Risk": "Risk", + "Role": "Role", + "Role Identification": "Role Identification", + "Role Management": "ロール管理", + "Role Name": "Role Name", + "Role Permissions": "Role Permissions", + "Role Settings": "Role Settings", + "Role Type": "Role Type", + "Role created successfully.": "Role created successfully.", + "Role deleted successfully.": "Role deleted successfully.", + "Role name already exists in this company.": "Role name already exists in this company.", + "Role not found.": "Role not found.", + "Role updated successfully.": "Role updated successfully.", + "Roles": "Roles", + "Roles scoped to specific customer companies.": "Roles scoped to specific customer companies.", + "Running": "Running", + "Running Status": "Running Status", + "SYSTEM": "SYSTEM", "Safety Stock": "安全在庫", "Sale Price": "販売価格", - "Search by name...": "名称で検索...", - "Search machines...": "機台を検索...", + "Sales": "Sales", + "Sales Activity": "Sales Activity", + "Sales Management": "Sales Management", + "Sales Permissions": "Sales Permissions", + "Sales Records": "Sales Records", + "Save": "保存", + "Save Changes": "Save Changes", + "Save Config": "Save Config", + "Save Material": "Save Material", + "Save Permissions": "Save Permissions", + "Save Settings": "Save Settings", + "Save error:": "Save error:", + "Saved.": "Saved.", + "Saving...": "Saving...", + "Scale level and access control": "Scale level and access control", + "Scan Pay": "Scan Pay", + "Scan QR Code": "QRコードをスキャン", + "Scan this code at the machine or share the link with the customer.": "機台でこのコードをスキャンするか、顧客とリンクを共有してください。", + "Scan this code at the machine to authorize testing or maintenance.": "Scan this code at the machine to authorize testing or maintenance.", + "Scan this code to quickly access the maintenance form for this device.": "Scan this code to quickly access the maintenance form for this device.", + "Scan to authorize testing or maintenance": "スキャンしてテストまたはメンテナンスを承認する", + "Scan to pick up your product": "商品を受け取るためにスキャンしてください", + "Schedule": "Schedule", + "Search Company Title...": "Search Company Title...", + "Search Machine...": "Search Machine...", "Search Product": "商品を検索", + "Search accounts...": "Search accounts...", + "Search by code, machine name or serial...": "コード、機台名、またはシリアルで検索...", + "Search by code, name or machine...": "コード、名称、または機台で検索...", + "Search by name or S/N...": "Search by name or S/N...", + "Search by name...": "名稱で検索...", + "Search cargo lane": "Search cargo lane", + "Search categories...": "Search categories...", + "Search company...": "Search company...", + "Search configurations...": "Search configurations...", + "Search customers...": "Search customers...", + "Search machines by name or serial...": "Search machines by name or serial...", + "Search machines...": "機台を検索...", + "Search models...": "Search models...", + "Search order number...": "注文番号を検索...", "Search products...": "商品を検索...", + "Search roles...": "Search roles...", + "Search serial no or name...": "Search serial no or name...", + "Search serial or machine...": "Search serial or machine...", + "Search serial or name...": "Search serial or name...", + "Search users...": "Search users...", "Search warehouses...": "倉庫を検索...", - "Select a team member to handle this replenishment order": "この補充注文を担当するメンバーを選択してください", - "Select all slots": "全スロットを選択", + "Search...": "Search...", + "Searching...": "Searching...", + "Seconds": "Seconds", + "Security & State": "Security & State", + "Security Controls": "Security Controls", + "Select All": "Select All", + "Select Cargo Lane": "Select Cargo Lane", + "Select Category": "Select Category", + "Select Company": "Select Company", + "Select Company (Default: System)": "Select Company (Default: System)", + "Select Date Range": "日付範囲を選択", "Select Machine": "機台を選択", "Select Machine First": "先にマシンを選択してください", + "Select Machine to view metrics": "Select Machine to view metrics", + "Select Material": "Select Material", + "Select Model": "Select Model", + "Select Owner": "Select Owner", "Select Personnel": "担当者を選択", "Select Product": "商品を選択", + "Select Slot": "貨道を選択", + "Select Slot...": "Select Slot...", + "Select Target Slot": "Select Target Slot", "Select Warehouse": "倉庫を選択", + "Select a machine to deep dive": "Select a machine to deep dive", + "Select a material to play on this machine": "Select a material to play on this machine", + "Select a team member to handle this replenishment order": "この補充注文を担当するメンバーを選択してください", + "Select all slots": "全スロットを選択", + "Select an asset from the left to start analysis": "Select an asset from the left to start analysis", + "Select date to sync data": "Select date to sync data", + "Select...": "Select...", + "Selected": "Selected", + "Selected Date": "Selected Date", + "Selected Machine": "選択した機台", + "Selected Slot": "選択した貨道", + "Selection": "Selection", + "Sent": "Sent", + "Serial & Version": "Serial & Version", + "Serial NO": "Serial NO", + "Serial No": "Serial No", "Serial No.": "シリアル番号", + "Serial Number": "Serial Number", + "Service Periods": "Service Periods", + "Service Terms": "Service Terms", + "Settings Saved": "設定が保存されました", "Settings updated successfully.": "設定が正常に更新されました。", + "Settlement": "Settlement", "Shopping Cart": "ショッピングカート", "Shopping Cart Feature": "ショッピングカート機能", + "Shopping Cart Function": "ショッピングカート機能", + "Show": "Show", + "Show material code field in products": "Show material code field in products", + "Show points rules in products": "Show points rules in products", + "Showing": "Showing", + "Showing :from to :to of :total items": "Showing :from to :to of :total items", + "Sign in to your account": "Sign in to your account", + "Signed in as": "Signed in as", "Slot": "貨道", + "Slot Mechanism (default: Conveyor, check for Spring)": "Slot Mechanism (default: Conveyor, check for Spring)", + "Slot No": "Slot No", + "Slot Status": "Slot Status", + "Slot Test": "Slot Test", + "Slot empty": "Slot empty", + "Slot jammed": "Slot jammed", + "Slot motor error (0207)": "Slot motor error (0207)", + "Slot motor error (0208)": "Slot motor error (0208)", + "Slot motor error (0209)": "Slot motor error (0209)", + "Slot normal": "Slot normal", + "Slot not closed": "Slot not closed", + "Slot not found": "Slot not found", + "Slot report synchronized success": "Slot report synchronized success", + "Slot updated successfully.": "Slot updated successfully.", + "Slots": "貨道", "Slots need replenishment": "補充が必要なスロット", + "Smallest number plays first.": "Smallest number plays first.", + "Smart replenishment suggestions": "Smart replenishment suggestions", + "Software": "Software", + "Software End": "Software End", + "Software Service": "Software Service", + "Software Start": "Software Start", + "Some fields need attention": "Some fields need attention", + "Sort Order": "Sort Order", "Source": "発送元", "Source Warehouse": "発送元倉庫", + "Special Permission": "Special Permission", + "Specification": "Specification", + "Specifications": "Specifications", + "Spring": "スプリング", + "Spring Channel Limit": "Spring Channel Limit", + "Spring Limit": "Spring Limit", + "Staff Stock": "Staff Stock", + "Standby": "Standby", + "Standby Ad": "Standby Ad", + "Start Date": "Start Date", "Start Delivery": "配送開始", + "Start Time": "開始時間", + "Statistics": "Statistics", "Status": "ステータス", + "Status / Temp / Sub / Card / Scan": "Status / Temp / Sub / Card / Scan", "Status Timeline": "ステータスタイムライン", "Status updated successfully": "ステータス更新成功", "Stock": "在庫", - "Stock flow history": "在庫移動履歴", + "Stock & Expiry": "Stock & Expiry", + "Stock & Expiry Management": "Stock & Expiry Management", + "Stock & Expiry Overview": "Stock & Expiry Overview", + "Stock / Capacity": "在庫 / 上限", "Stock In": "入庫", "Stock Level": "在庫量", + "Stock Level > 50%": "在庫 50% 以上", "Stock Levels": "在庫レベル", + "Stock Management": "Stock Management", "Stock Out": "出庫", + "Stock Quantity": "Stock Quantity", "Stock Rate": "在庫率", + "Stock Update": "在庫更新", + "Stock adjustments and damage reports": "Stock adjustments and damage reports", + "Stock flow history": "在庫移動履歴", + "Stock overview by warehouse": "Stock overview by warehouse", "Stock returned to warehouse": "在庫が倉庫に返却されました", "Stock-In Management": "入庫管理", - "Stock-in order confirmed and inventory updated": "入庫伝票が確定され、在庫が更新されました", - "Stock-in order created successfully": "入庫伝票が正常に作成されました", - "Stock-in order deleted successfully": "入庫伝票が正常に削除されました", + "Stock-In Order": "入庫注文", "Stock-In Orders": "入庫伝票", "Stock-In Orders Tab": "入庫伝票", + "Stock-in order": "入庫注文", + "Stock-in order confirmed and inventory updated": "入庫伝票が確定され、在庫が更新されました", + "Stock-in order created": "入庫注文が作成されました", + "Stock-in order created successfully": "入庫伝票が正常に作成されました", + "Stock-in order deleted successfully": "入庫伝票が正常に削除されました", + "Stock:": "Stock:", + "Store Gifts": "Store Gifts", + "Store ID": "Store ID", + "Store Management": "Store Management", + "StoreID": "StoreID", + "Sub / Card / Scan": "Sub / Card / Scan", + "Sub Account Management": "Sub Account Management", + "Sub Account Roles": "Sub Account Roles", + "Sub Accounts": "Sub Accounts", + "Sub-actions": "Sub-actions", + "Sub-machine Status Request": "Sub-machine Status Request", + "Submit Record": "Submit Record", + "Success": "Success", + "Super Admin": "Super Admin", + "Super-admin role cannot be assigned to tenant accounts.": "Super-admin role cannot be assigned to tenant accounts.", + "Superseded": "Superseded", + "Superseded by new adjustment": "Superseded by new adjustment", + "Superseded by new command": "Superseded by new command", + "Survey Analysis": "Survey Analysis", + "Syncing": "Syncing", + "Syncing Permissions...": "Syncing Permissions...", + "System": "System", + "System & Security Control": "System & Security Control", + "System Default": "System Default", + "System Default (All Companies)": "System Default (All Companies)", + "System Default (Common)": "System Default (Common)", + "System Level": "System Level", + "System Official": "System Official", + "System Reboot": "System Reboot", + "System Role": "System Role", + "System Settings": "System Settings", + "System role name cannot be modified.": "System role name cannot be modified.", + "System roles cannot be deleted by tenant administrators.": "System roles cannot be deleted by tenant administrators.", + "System roles cannot be modified by tenant administrators.": "System roles cannot be modified by tenant administrators.", "System settings updated successfully.": "システム設定が正常に更新されました。", + "System super admin accounts cannot be deleted.": "System super admin accounts cannot be deleted.", + "System super admin accounts cannot be modified via this interface.": "System super admin accounts cannot be modified via this interface.", + "Systems Initializing": "Systems Initializing", + "Table View": "テーブル表示", + "TapPay Integration": "TapPay Integration", + "TapPay Integration Settings Description": "TapPay Integration Settings Description", "Target": "対象", "Target Machine": "対象機台", "Target Warehouse": "対象倉庫", + "Tax ID": "Tax ID", + "Tax ID (Optional)": "Tax ID (Optional)", + "Tax System": "Tax System", "Taxation System": "税務システム", + "Temperature": "Temperature", + "Temperature reported: :temp°C": "Temperature reported: :temp°C", + "Temperature updated to :temp°C": "Temperature updated to :temp°C", + "Tenant": "Tenant", + "TermID": "TermID", + "The Super Admin role cannot be deleted.": "The Super Admin role cannot be deleted.", + "The Super Admin role is immutable.": "The Super Admin role is immutable.", + "The Super Admin role name cannot be modified.": "The Super Admin role name cannot be modified.", + "The image is too large. Please upload an image smaller than 1MB.": "The image is too large. Please upload an image smaller than 1MB.", + "This is a system administrator role. Its name is locked to ensure system stability.": "This is a system administrator role. Its name is locked to ensure system stability.", + "This role belongs to another company and cannot be assigned.": "This role belongs to another company and cannot be assigned.", + "This slot has a pending command. Please wait.": "This slot has a pending command. Please wait.", + "This slot has a pending update. Please wait for the previous command to complete.": "This slot has a pending update. Please wait for the previous command to complete.", + "This slot is syncing with the machine. Please wait.": "This slot is syncing with the machine. Please wait.", + "Ticket": "チケット", + "Ticket Link": "チケットリンク", "Time": "時間", + "Time Slots": "Time Slots", + "Timer": "Timer", + "Timestamp": "Timestamp", "To": "配送先", "To Warehouse": "配送先倉庫", + "To:": "To:", + "Today Cumulative Sales": "Today Cumulative Sales", + "Today's Transactions": "Today's Transactions", + "Total": "Total", + "Total Connected": "Total Connected", + "Total Customers": "Total Customers", + "Total Daily Sales": "Total Daily Sales", + "Total Gross Value": "Total Gross Value", + "Total Logins": "Total Logins", + "Total Machines": "Total Machines", "Total Quantity": "合計数量", + "Total Selected": "Total Selected", + "Total Slots": "Total Slots", "Total Stock": "総在庫", - "Total Warehouses": "倉庫総数", + "Total Stock Volume": "総在庫量", + "Total Warehouses": "倉庫總數", + "Total items": "Total items", + "Track": "トラック", + "Track Channel Limit": "Track Channel Limit", + "Track Limit": "Track Limit", + "Track Limit (Track/Spring)": "Track Limit (Track/Spring)", + "Track device health and maintenance history": "Track device health and maintenance history", "Track stock levels, stock-in orders, and movement history": "在庫レベル、入庫伝票、および移動履歴の追跡", "Track stock-in orders and movement history": "入庫伝票および移動履歴の追跡", + "Traditional Chinese": "Traditional Chinese", + "Transaction processed: :id": "Transaction processed: :id", "Transfer Audit": "転送監査", "Transfer Details": "転送伝票詳細", "Transfer In": "転送入", - "Transfer order confirmed and inventory updated": "転送伝票が確定され、在庫が更新されました", - "Transfer order created successfully": "転送伝票が正常に作成されました", - "Transfer order deleted successfully": "転送伝票が正常に削除されました", "Transfer Orders": "転送伝票", "Transfer Out": "転送出", "Transfer Type": "転送タイプ", + "Transfer completed": "転送完了", + "Transfer in": "転入", + "Transfer order confirmed and inventory updated": "転送伝票が確定され、在庫が更新されました", + "Transfer order created": "転送注文が作成されました", + "Transfer order created successfully": "転送伝票が正常に作成されました", + "Transfer order deleted successfully": "転送伝票が正常に削除されました", + "Transfer order status tracking": "Transfer order status tracking", + "Transfer out": "転出", "Transfers": "転送", + "Trigger": "Trigger", + "Trigger Dispense": "Trigger Dispense", + "Trigger Remote Dispense": "Trigger Remote Dispense", + "Try using landmark names (e.g., Hualien County Government)": "ランドマーク名を試してください(例:花蓮県政府)", + "Tutorial Page": "Tutorial Page", + "Type": "Type", + "Type to search or leave blank for system defaults.": "Type to search or leave blank for system defaults.", + "UI Elements": "UI Elements", "Unassigned": "未割り当て", + "Unassigned / No Change": "未指定 / 変更なし", + "Unauthorized Status": "Unauthorized Status", + "Unauthorized login attempt: :account": "Unauthorized login attempt: :account", + "Unauthorized: Account not authorized for this machine": "Unauthorized: Account not authorized for this machine", + "Unauthorized: Account not found": "Unauthorized: Account not found", + "Uncategorized": "Uncategorized", + "Unified Operational Timeline": "Unified Operational Timeline", + "Units": "Units", + "Unknown": "Unknown", + "Unknown Product": "不明な商品", + "Unknown error": "Unknown error", + "Unlimited": "Unlimited", + "Unlock": "Unlock", + "Unlock Now": "Unlock Now", + "Unlock Page": "Unlock Page", "Unpublish": "配信終了", - "Update failed": "更新に失敗しました", + "Update": "Update", + "Update Authorization": "Update Authorization", + "Update Customer": "Update Customer", + "Update Password": "Update Password", + "Update Product": "Update Product", "Update Settings": "設定を更新", + "Update existing role and permissions.": "Update existing role and permissions.", + "Update failed": "更新に失敗しました", + "Update identification for your asset": "Update identification for your asset", + "Update your account's profile information and email address.": "Update your account's profile information and email address.", + "Upload Image": "Upload Image", + "Upload New Images": "Upload New Images", + "Upload Video": "Upload Video", + "Uploading new images will replace all existing images.": "Uploading new images will replace all existing images.", + "Used": "使用済み", + "User": "User", + "User Info": "User Info", + "User logged in: :name": "User logged in: :name", + "Username": "Username", + "Users": "Users", + "Utilization Rate": "Utilization Rate", + "Utilization Timeline": "Utilization Timeline", + "Utilization, OEE and Operational Intelligence": "Utilization, OEE and Operational Intelligence", + "Utilized Time": "Utilized Time", + "Valid Ticket": "有効なチケット", + "Valid Until": "Valid Until", + "Validation Error": "Validation Error", + "Validity Period": "有効期間", + "Validity Period (Days)": "有効期限 (日)", + "Validity Period (Hours)": "有効期限 (時間)", + "Vending": "Vending", + "Vending Page": "Vending Page", + "Venue Management": "Venue Management", "Video": "動画", "View Details": "詳細を表示", - "Details": "詳細", + "View Full History": "View Full History", "View Inventory": "在庫を表示", + "View Logs": "View Logs", + "View More": "View More", + "View QR Code": "QRコードを表示", "View Slots": "貨道を表示", + "View all warehouses": "View all warehouses", + "View slot-level inventory for each machine": "View slot-level inventory for each machine", + "Visit Gift": "Visit Gift", "Visual overview of all machine locations": "全機器位置のビジュアル概要", + "Waiting": "Waiting", + "Waiting for Payment": "Waiting for Payment", "Warehouse": "倉庫", - "Warehouse created successfully.": "倉庫が正常に作成されました。", - "Warehouse deleted successfully.": "倉庫が正常に削除されました。", + "Warehouse :status successfully": "倉庫が:statusになりました", "Warehouse Info": "倉庫情報", "Warehouse Inventory": "倉庫在庫状況", + "Warehouse List": "Warehouse List", + "Warehouse List (All)": "Warehouse List (All)", + "Warehouse List (Individual)": "Warehouse List (Individual)", "Warehouse Management": "倉庫管理", + "Warehouse Name": "倉庫名", "Warehouse Overview": "倉庫概要", + "Warehouse Permissions": "Warehouse Permissions", + "Warehouse Stock": "倉庫在庫", + "Warehouse Transfer": "倉庫転送", + "Warehouse Type": "倉庫タイプ", + "Warehouse created successfully": "倉庫が正常に作成されました", + "Warehouse created successfully.": "倉庫が正常に作成されました。", + "Warehouse deleted successfully": "倉庫が正常に削除されました", + "Warehouse deleted successfully.": "倉庫が正常に削除されました。", "Warehouse purchase records": "倉庫購入記録", "Warehouse stock insufficient": "倉庫在庫不足", "Warehouse stock insufficient warning": "倉庫在庫が全スロットを満たすには不足していますが、注文を作成することは可能です", "Warehouse to Warehouse": "倉庫間転送", - "Warehouse Transfer": "倉庫転送", + "Warehouse to warehouse transfers": "Warehouse to warehouse transfers", + "Warehouse updated successfully": "倉庫が正常に更新されました", "Warehouse updated successfully.": "倉庫が正常に更新されました。", + "Warning": "Warning", + "Warning: You are editing your own role!": "Warning: You are editing your own role!", + "Warranty": "Warranty", + "Warranty End": "Warranty End", + "Warranty Service": "Warranty Service", + "Warranty Start": "Warranty Start", "Welcome Gift": "登録特典", "Welcome Gift Feature": "来店特典機能", - "Stock / Capacity": "在庫 / 上限", - "Warehouse Stock": "倉庫在庫", - "Recalculate": "再計算", + "Welcome Gift Function": "ウェルカムギフト機能", + "Welcome Gift Status": "Welcome Gift Status", "Work Content": "作業内容", - "No content provided": "内容は提供されていません", - "Maintenance Photos": "メンテナンス写真", - "Execution Time": "実行時間", - "Product Name": "商品名", - "Replenish": "補充", - "Total Stock Volume": "総在庫量", - "Stock Level > 50%": "在庫 50% 以上", - "Manage your company's sub-accounts and role permissions": "会社のサブアカウントとロール権限の管理", - "Role Management": "ロール管理", - "Account List": "アカウント一覧", - "Pickup Codes": "受取コード", - "Generate and manage one-time pickup codes for customers": "お客様向けの1回限り受取コードを生成・管理します", - "Generate New Code": "新しいコードを生成", - "Search by code, machine name or serial...": "コード、機台名、またはシリアルで検索...", - "Code": "コード", - "Machine / Slot": "機台 / 貨道", - "Are you sure you want to cancel this code?": "このコードをキャンセルしてもよろしいですか?", - "Cancel Code": "コードをキャンセル", - "No pickup codes found": "受取コードが見つかりません", - "Generate Pickup Code": "受取コードを生成", - "Select Slot": "貨道を選択", - "Validity Period (Hours)": "有効期限 (時間)", - "Hrs": "時間", - "Max 720 hours (30 days)": "最大 720 時間 (30 日間)", - "Generate": "生成", - "No Actions": "操作なし", - "Pass Codes": "通行コード", - "Manage multi-use authorization codes for testing and maintenance": "テストおよびメンテナンス用のマルチユース認証コードを管理します", - "Create Pass Code": "通行コードを作成", - "Search by code, name or machine...": "コード、名称、または機台で検索...", - "Pass Code": "通行コード", - "Name / Machine": "名称 / 機台", - "Are you sure you want to delete this pass code?": "この通行コードを削除してもよろしいですか?", - "Delete Code": "コードを削除", - "No pass codes found": "通行コードが見つかりません", - "Target Machine": "対象機台", - "Description / Name": "説明 / 名称", + "Yes, Cancel": "はい、キャンセルします", + "Yes, Delete": "はい、無効にします", + "Yes, Disable": "はい、無効にします", + "Yesterday": "Yesterday", + "You can assign or change the personnel handling this order": "この注文の担当者を割り当て、または変更できます", + "You cannot assign permissions you do not possess.": "You cannot assign permissions you do not possess.", + "You cannot delete your own account.": "You cannot delete your own account.", + "Your email address is unverified.": "Your email address is unverified.", + "Your recent account activity": "Your recent account activity", + "accounts": "accounts", + "admin": "admin", + "analysis": "analysis", + "app": "app", + "audit": "audit", + "basic-settings": "basic-settings", + "basic.machines": "basic.machines", + "basic.payment-configs": "basic.payment-configs", + "by": "by", + "companies": "companies", + "data-config": "data-config", + "data-config.sub-account-roles": "data-config.sub-account-roles", + "data-config.sub-accounts": "data-config.sub-accounts", + "disabled": "無効", + "e.g. 500ml / 300g": "e.g. 500ml / 300g", + "e.g. John Doe": "e.g. John Doe", + "e.g. Main Warehouse": "例:メイン倉庫", + "e.g. TWSTAR": "e.g. TWSTAR", + "e.g. Taiwan Star": "e.g. Taiwan Star", "e.g. Test Code for Maintenance": "例:メンテナンス用テストコード", - "Pass Code (8 Digits)": "通行コード (8桁)", - "Regenerate": "再生成", - "Validity Period (Days)": "有効期限 (日)", - "Days": "日", - "Leave empty for permanent code": "無期限にする場合は空欄にしてください", - "Permanent": "無期限", - "Used": "使用済み", - "Expired": "期限切れ", - "Cancelled": "キャンセル済み", - "Active": "有効", - "All Status": "すべてのステータス", - "Assign Personnel (Optional)": "担当者指定 (オプション)", - "Unassigned / No Change": "未指定 / 変更なし", - "You can assign or change the personnel handling this order": "この注文の担当者を割り当て、または変更できます" + "e.g. johndoe": "e.g. johndoe", + "e.g., Beverage": "e.g., Beverage", + "e.g., Company Standard Pay": "e.g., Company Standard Pay", + "e.g., Drinks": "e.g., Drinks", + "e.g., Taipei Station": "e.g., Taipei Station", + "e.g., お飲み物": "e.g., お飲み物", + "enabled": "有効", + "failed": "failed", + "files selected": "files selected", + "hours ago": "hours ago", + "image": "image", + "items": "items", + "john@example.com": "john@example.com", + "line": "line", + "machines": "machines", + "members": "members", + "menu.analysis": "menu.analysis", + "menu.app": "menu.app", + "menu.audit": "menu.audit", + "menu.basic": "menu.basic", + "menu.basic.machines": "menu.basic.machines", + "menu.basic.payment-configs": "menu.basic.payment-configs", + "menu.data-config": "menu.data-config", + "menu.data-config.admin-products": "menu.data-config.admin-products", + "menu.data-config.advertisements": "menu.data-config.advertisements", + "menu.data-config.badges": "menu.data-config.badges", + "menu.data-config.points": "menu.data-config.points", + "menu.data-config.products": "menu.data-config.products", + "menu.data-config.sub-accounts": "menu.data-config.sub-accounts", + "menu.line": "menu.line", + "menu.machines": "menu.machines", + "menu.machines.list": "menu.machines.list", + "menu.machines.maintenance": "menu.machines.maintenance", + "menu.machines.permissions": "menu.machines.permissions", + "menu.machines.utilization": "menu.machines.utilization", + "menu.members": "menu.members", + "menu.permission": "menu.permission", + "menu.permissions": "menu.permissions", + "menu.permissions.accounts": "menu.permissions.accounts", + "menu.permissions.companies": "menu.permissions.companies", + "menu.permissions.roles": "menu.permissions.roles", + "menu.remote": "menu.remote", + "menu.remote.commands": "リモートコマンド", + "menu.remote.stock": "リモート在庫", + "menu.reservation": "menu.reservation", + "menu.sales": "menu.sales", + "menu.sales.orders": "注文管理", + "menu.sales.pass-codes": "通行コード", + "menu.sales.pickup-codes": "取り出しコード", + "menu.sales.promotions": "プロモーション", + "menu.sales.records": "販売記録", + "menu.sales.store-gifts": "店舗ギフト", + "menu.special-permission": "menu.special-permission", + "menu.special-permission.apk-versions": "APKバージョン", + "menu.special-permission.clear-stock": "在庫クリア", + "menu.special-permission.discord-notifications": "Discord通知", + "menu.warehouses": "menu.warehouses", + "menu.warehouses.inventory": "在庫管理", + "menu.warehouses.machine-inventory": "機台在庫", + "menu.warehouses.overview": "倉庫概要", + "menu.warehouses.replenishments": "補充管理", + "menu.warehouses.transfers": "在庫転送", + "min": "min", + "mins ago": "mins ago", + "of": "of", + "of items": "件のアイテム", + "pending": "pending", + "permissions": "permissions", + "permissions.accounts": "permissions.accounts", + "permissions.companies": "permissions.companies", + "permissions.roles": "permissions.roles", + "remote": "remote", + "reservation": "reservation", + "roles": "roles", + "s": "s", + "sales": "sales", + "sent": "sent", + "set": "set", + "special-permission": "special-permission", + "standby": "standby", + "success": "success", + "super-admin": "super-admin", + "to": "to", + "user": "user", + "vending": "vending", + "video": "video", + "visit_gift": "visit_gift", + "vs Yesterday": "vs Yesterday", + "warehouses": "warehouses", + "待填寫": "待填寫" } diff --git a/lang/ja/auth.php b/lang/ja/auth.php new file mode 100644 index 0000000..554c456 --- /dev/null +++ b/lang/ja/auth.php @@ -0,0 +1,20 @@ + '認証情報が一致しません。', + 'password' => '入力されたパスワードが正しくありません。', + 'throttle' => 'ログイン試行回数が多すぎます。:seconds 秒後に再試行してください。', + +]; diff --git a/lang/ja/pagination.php b/lang/ja/pagination.php new file mode 100644 index 0000000..46e88f9 --- /dev/null +++ b/lang/ja/pagination.php @@ -0,0 +1,19 @@ + '« 前へ', + 'next' => '次へ »', + +]; diff --git a/lang/ja/passwords.php b/lang/ja/passwords.php new file mode 100644 index 0000000..ba9e286 --- /dev/null +++ b/lang/ja/passwords.php @@ -0,0 +1,22 @@ + 'パスワードがリセットされました。', + 'sent' => 'パスワードリセットリンクをメールで送信しました。', + 'throttled' => '再試行するまでしばらくお待ちください。', + 'token' => 'このパスワードリセットトークンは無効です。', + 'user' => 'そのメールアドレスのユーザーが見つかりません。', + +]; diff --git a/lang/ja/validation.php b/lang/ja/validation.php new file mode 100644 index 0000000..f6d7cc2 --- /dev/null +++ b/lang/ja/validation.php @@ -0,0 +1,213 @@ + ':attribute を承認する必要があります。', + 'accepted_if' => ':other が :value の場合、:attribute を承認する必要があります。', + 'active_url' => ':attribute は有効な URL である必要があります。', + 'after' => ':attribute は :date より後の日付である必要があります。', + 'after_or_equal' => ':attribute は :date 以降の日付である必要があります。', + 'alpha' => ':attribute は英字のみで構成される必要があります。', + 'alpha_dash' => ':attribute は英字、数字、ダッシュ、アンダースコアのみで構成される必要があります。', + 'alpha_num' => ':attribute は英字と数字のみで構成される必要があります。', + 'any_of' => ':attribute が無効です。', + 'array' => ':attribute は配列である必要があります。', + 'ascii' => ':attribute はシングルバイトの英数字と記号のみで構成される必要があります。', + 'before' => ':attribute は :date より前の日付である必要があります。', + 'before_or_equal' => ':attribute は :date 以前の日付である必要があります。', + 'between' => [ + 'array' => ':attribute は :min 〜 :max 個の要素を含む必要があります。', + 'file' => ':attribute は :min 〜 :max キロバイトの間である必要があります。', + 'numeric' => ':attribute は :min 〜 :max の間である必要があります。', + 'string' => ':attribute は :min 〜 :max 文字の間である必要があります。', + ], + 'boolean' => ':attribute は true か false である必要があります。', + 'can' => ':attribute に無効な値が含まれています。', + 'confirmed' => ':attribute の確認が一致しません。', + 'contains' => ':attribute に必要な値が含まれていません。', + 'current_password' => 'パスワードが正しくありません。', + 'date' => ':attribute は有効な日付である必要があります。', + 'date_equals' => ':attribute は :date と同じ日付である必要があります。', + 'date_format' => ':attribute は :format 形式と一致する必要があります。', + 'decimal' => ':attribute は小数点以下 :decimal 桁である必要があります。', + 'declined' => ':attribute を拒否する必要があります。', + 'declined_if' => ':other が :value の場合、:attribute を拒否する必要があります。', + 'different' => ':attribute と :other は異なる必要があります。', + 'digits' => ':attribute は :digits 桁である必要があります。', + 'digits_between' => ':attribute は :min 〜 :max 桁の間である必要があります。', + 'dimensions' => ':attribute の画像サイズが無効です。', + 'distinct' => ':attribute に重複する値が含まれています。', + 'doesnt_contain' => ':attribute には次のいずれも含めることはできません: :values。', + 'doesnt_end_with' => ':attribute は次のいずれかで終わることはできません: :values。', + 'doesnt_start_with' => ':attribute は次のいずれかで始まることはできません: :values。', + 'email' => ':attribute は有効なメールアドレスである必要があります。', + 'encoding' => ':attribute は :encoding でエンコードされている必要があります。', + 'ends_with' => ':attribute は次のいずれかで終わる必要があります: :values。', + 'enum' => '選択された :attribute は無効です。', + 'exists' => '選択された :attribute は無効です。', + 'extensions' => ':attribute は次のいずれかの拡張子である必要があります: :values。', + 'file' => ':attribute はファイルである必要があります。', + 'filled' => ':attribute は値を持つ必要があります。', + 'gt' => [ + 'array' => ':attribute は :value 個より多い要素を含む必要があります。', + 'file' => ':attribute は :value キロバイトより大きい必要があります。', + 'numeric' => ':attribute は :value より大きい必要があります。', + 'string' => ':attribute は :value 文字より多い必要があります。', + ], + 'gte' => [ + 'array' => ':attribute は :value 個以上の要素を含む必要があります。', + 'file' => ':attribute は :value キロバイト以上である必要があります。', + 'numeric' => ':attribute は :value 以上である必要があります。', + 'string' => ':attribute は :value 文字以上である必要があります。', + ], + 'hex_color' => ':attribute は有効な16進数カラーコードである必要があります。', + 'image' => ':attribute は画像である必要があります。', + 'in' => '選択された :attribute は無効です。', + 'in_array' => ':attribute は :other に存在する必要があります。', + 'in_array_keys' => ':attribute には次のキーのいずれかを含む必要があります: :values。', + 'integer' => ':attribute は整数である必要があります。', + 'ip' => ':attribute は有効な IP アドレスである必要があります。', + 'ipv4' => ':attribute は有効な IPv4 アドレスである必要があります。', + 'ipv6' => ':attribute は有効な IPv6 アドレスである必要があります。', + 'json' => ':attribute は有効な JSON 文字列である必要があります。', + 'list' => ':attribute はリストである必要があります。', + 'lowercase' => ':attribute は小文字である必要があります。', + 'lt' => [ + 'array' => ':attribute は :value 個未満の要素を含む必要があります。', + 'file' => ':attribute は :value キロバイト未満である必要があります。', + 'numeric' => ':attribute は :value 未満である必要があります。', + 'string' => ':attribute は :value 文字未満である必要があります。', + ], + 'lte' => [ + 'array' => ':attribute は :value 個以下の要素を含む必要があります。', + 'file' => ':attribute は :value キロバイト以下である必要があります。', + 'numeric' => ':attribute は :value 以下である必要があります。', + 'string' => ':attribute は :value 文字以下である必要があります。', + ], + 'mac_address' => ':attribute は有効な MAC アドレスである必要があります。', + 'max' => [ + 'array' => ':attribute は :max 個を超える要素を含むことはできません。', + 'file' => ':attribute は :max キロバイトを超えることはできません。', + 'numeric' => ':attribute は :max を超えることはできません。', + 'string' => ':attribute は :max 文字を超えることはできません。', + ], + 'max_digits' => ':attribute は :max 桁を超えることはできません。', + 'mimes' => ':attribute は次のいずれかのファイルタイプである必要があります: :values。', + 'mimetypes' => ':attribute は次のいずれかのファイルタイプである必要があります: :values。', + 'min' => [ + 'array' => ':attribute は少なくとも :min 個の要素を含む必要があります。', + 'file' => ':attribute は少なくとも :min キロバイトである必要があります。', + 'numeric' => ':attribute は少なくとも :min である必要があります。', + 'string' => ':attribute は少なくとも :min 文字である必要があります。', + ], + 'min_digits' => ':attribute は少なくとも :min 桁である必要があります。', + 'missing' => ':attribute は存在してはいけません。', + 'missing_if' => ':other が :value の場合、:attribute は存在してはいけません。', + 'missing_unless' => ':other が :value でない限り、:attribute は存在してはいけません。', + 'missing_with' => ':values が存在する場合、:attribute は存在してはいけません。', + 'missing_with_all' => ':values がすべて存在する場合、:attribute は存在してはいけません。', + 'multiple_of' => ':attribute は :value の倍数である必要があります。', + 'not_in' => '選択された :attribute は無効です。', + 'not_regex' => ':attribute の形式が無効です。', + 'numeric' => ':attribute は数値である必要があります。', + 'password' => [ + 'letters' => ':attribute には少なくとも1つの文字を含む必要があります。', + 'mixed' => ':attribute には少なくとも1つの大文字と1つの小文字を含む必要があります。', + 'numbers' => ':attribute には少なくとも1つの数字を含む必要があります。', + 'symbols' => ':attribute には少なくとも1つの記号を含む必要があります。', + 'uncompromised' => '指定された :attribute はデータ漏洩に含まれています。別の :attribute を選択してください。', + ], + 'present' => ':attribute が存在する必要があります。', + 'present_if' => ':other が :value の場合、:attribute が存在する必要があります。', + 'present_unless' => ':other が :value でない限り、:attribute が存在する必要があります。', + 'present_with' => ':values が存在する場合、:attribute が存在する必要があります。', + 'present_with_all' => ':values がすべて存在する場合、:attribute が存在する必要があります。', + 'prohibited' => ':attribute は禁止されています。', + 'prohibited_if' => ':other が :value の場合、:attribute は禁止されています。', + 'prohibited_if_accepted' => ':other が承認された場合、:attribute は禁止されています。', + 'prohibited_if_declined' => ':other が拒否された場合、:attribute は禁止されています。', + 'prohibited_unless' => ':other が :values にない限り、:attribute は禁止されています。', + 'prohibits' => ':attribute は :other の存在を禁止します。', + 'regex' => ':attribute の形式が無効です。', + 'required' => ':attribute は必須です。', + 'required_array_keys' => ':attribute には次のエントリが含まれる必要があります: :values。', + 'required_if' => ':other が :value の場合、:attribute は必須です。', + 'required_if_accepted' => ':other が承認された場合、:attribute は必須です。', + 'required_if_declined' => ':other が拒否された場合、:attribute は必須です。', + 'required_unless' => ':other が :values にない限り、:attribute は必須です。', + 'required_with' => ':values が存在する場合、:attribute は必須です。', + 'required_with_all' => ':values がすべて存在する場合、:attribute は必須です。', + 'required_without' => ':values が存在しない場合、:attribute は必須です。', + 'required_without_all' => ':values がすべて存在しない場合、:attribute は必須です。', + 'same' => ':attribute は :other と一致する必要があります。', + 'size' => [ + 'array' => ':attribute は :size 個の要素を含む必要があります。', + 'file' => ':attribute は :size キロバイトである必要があります。', + 'numeric' => ':attribute は :size である必要があります。', + 'string' => ':attribute は :size 文字である必要があります。', + ], + 'starts_with' => ':attribute は次のいずれかで始まる必要があります: :values。', + 'string' => ':attribute は文字列である必要があります。', + 'timezone' => ':attribute は有効なタイムゾーンである必要があります。', + 'unique' => ':attribute は既に使用されています。', + 'uploaded' => ':attribute のアップロードに失敗しました。', + 'uppercase' => ':attribute は大文字である必要があります。', + 'url' => ':attribute は有効な URL である必要があります。', + 'ulid' => ':attribute は有効な ULID である必要があります。', + 'uuid' => ':attribute は有効な UUID である必要があります。', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'is_confirmed' => [ + 'accepted' => '顧客への通知と署名取得を確認するチェックボックスにチェックを入れてください。', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + 'attributes' => [ + 'username' => 'ユーザー名', + 'name' => '名前', + 'email' => 'メールアドレス', + 'password' => 'パスワード', + 'current_password' => '現在のパスワード', + 'password_confirmation' => 'パスワード確認', + 'phone' => '電話番号', + 'machine_id' => '機台', + 'category' => 'カテゴリ', + 'maintenance_at' => 'メンテナンス日', + 'content' => 'メンテナンス内容', + 'is_confirmed' => '確認チェックボックス', + ], + +]; diff --git a/lang/zh_TW.json b/lang/zh_TW.json index ba698a1..eb0e56d 100644 --- a/lang/zh_TW.json +++ b/lang/zh_TW.json @@ -1,24 +1,31 @@ { - "Start Time": "開始時間", - "End Time": "結束時間", "15 Seconds": "15 秒", "30 Seconds": "30 秒", "60 Seconds": "60 秒", "A new verification link has been sent to your email address.": "已將新的驗證連結發送至您的電子郵件地址。", + "AI Prediction": "AI智能預測", + "API Token": "API 金鑰", + "API Token Copied": "API 金鑰已複製", + "API Token regenerated successfully.": "API 金鑰重新產生成功。", + "APK Versions": "APK版本", + "APP Features": "APP功能", + "APP Management": "APP管理", + "APP Version": "APP版本號", + "APP_ID": "APP_ID", + "APP_KEY": "APP_KEY", "Abnormal": "異常", "Account": "帳號", "Account :name status has been changed to :status.": "帳號 :name 的狀態已變更為 :status。", - "Account created successfully.": "帳號已成功建立。", - "Account deleted successfully.": "帳號已成功刪除。", "Account Info": "帳號資訊", "Account List": "帳號列表", "Account Management": "帳號管理", "Account Name": "帳號名稱", "Account Settings": "帳戶設定", "Account Status": "帳號狀態", + "Account created successfully.": "帳號已成功建立。", + "Account deleted successfully.": "帳號已成功刪除。", "Account updated successfully.": "帳號已成功更新。", "Account:": "帳號:", - "accounts": "帳號管理", "Accounts / Machines": "帳號 / 機台", "Actions": "操作", "Active": "有效", @@ -33,36 +40,38 @@ "Add Machine": "新增機台", "Add Machine Model": "新增機台型號", "Add Maintenance Record": "新增維修管理單", - "Add new inventory items to your warehouse": "將新商品入庫至您的倉庫", + "Add Model": "新增型號", + "Add Pass Code": "新增通行碼", + "Add Pickup Code": "新增取貨碼", "Add Product": "新增商品", "Add Role": "新增角色", "Add Warehouse": "新增倉庫", + "Add new inventory items to your warehouse": "將新商品入庫至您的倉庫", "Address": "地址", + "Adjust Inventory": "庫存管理", "Adjust Stock": "調整庫存", "Adjust Stock & Expiry": "調整庫存與效期", "Adjustment": "庫存調整", "Admin": "管理員", - "admin": "管理員", - "Admin display name": "管理員顯示名稱", "Admin Name": "名稱", "Admin Page": "管理頁", "Admin Sellable Products": "管理者可賣", + "Admin display name": "管理員顯示名稱", "Administrator": "管理員", + "Advertisement List": "廣告列表", + "Advertisement Management": "廣告管理", + "Advertisement Video/Image": "廣告影片/圖片", "Advertisement assigned successfully": "廣告投放完成", "Advertisement assigned successfully.": "廣告投放完成。", "Advertisement created successfully": "廣告建立成功", "Advertisement created successfully.": "廣告建立成功。", "Advertisement deleted successfully": "廣告刪除成功", "Advertisement deleted successfully.": "廣告刪除成功。", - "Advertisement List": "廣告列表", - "Advertisement Management": "廣告管理", "Advertisement updated successfully": "廣告更新成功", "Advertisement updated successfully.": "廣告更新成功。", - "Advertisement Video/Image": "廣告影片/圖片", "Affiliated Company": "公司名稱", "Affiliated Unit": "公司名稱", "Affiliation": "所屬單位", - "AI Prediction": "AI智能預測", "Alert Summary": "告警摘要", "Alerts": "警示", "Alerts Pending": "待處理告警", @@ -73,7 +82,7 @@ "All Companies": "所有公司", "All Levels": "所有層級", "All Machines": "所有機台", - "All slots are fully stocked": "所有貨道已滿貨", + "All Permissions": "全部權限", "All Stable": "狀態穩定", "All Status": "所有狀態", "All Statuses": "所有狀態", @@ -81,35 +90,28 @@ "All Times System Timezone": "所有時間為系統時區", "All Types": "所有類型", "All Warehouses": "所有倉庫", + "All slots are fully stocked": "所有貨道已滿貨", "Amount": "金額", "An error occurred while saving.": "儲存時發生錯誤。", - "analysis": "分析管理", "Analysis Management": "分析管理", "Analysis Permissions": "分析管理權限", - "API Token": "API 金鑰", - "API Token Copied": "API 金鑰已複製", - "API Token regenerated successfully.": "API 金鑰重新產生成功。", - "APK Versions": "APK版本", - "app": "APP 管理", - "APP Features": "APP功能", - "APP Management": "APP管理", - "APP Version": "APP版本號", - "APP_ID": "APP_ID", - "APP_KEY": "APP_KEY", "Apply changes to all identical products in this machine": "同步套用至此機台內的所有相同商品", "Apply to all identical products in this machine": "同步套用至此機台內的所有相同商品", "Approved At": "審核時間", "Are you sure to delete this customer?": "確定要刪除此客戶嗎?", "Are you sure to delete this warehouse? This action cannot be undone.": "確定要刪除此倉庫嗎?此操作無法復原。", "Are you sure to disable this warehouse?": "確定要停用此倉庫嗎?", + "Are you sure you want to cancel this code?": "確定要取消此代碼嗎?", "Are you sure you want to cancel this order? If the order has been prepared, stock will be returned to the warehouse.": "確定要取消此訂單嗎?若已備貨,庫存將退回倉庫。", + "Are you sure you want to cancel this pass code? This action cannot be undone.": "您確定要取消此通行碼嗎?此動作無法復原。", + "Are you sure you want to cancel this pickup code? This action cannot be undone.": "確定要取消此取貨碼嗎?此操作無法復原。", "Are you sure you want to change the status of this item? This will affect its visibility on vending machines.": "您確定要變更此項目的狀態嗎?這將會影響其在販賣機上的顯示內容。", "Are you sure you want to change the status of this product? Disabled products will not be visible on the machine.": "確定要變更此商品的狀態嗎?停用的商品將不會在機台上顯示。", "Are you sure you want to change the status? After disabling, this account will no longer be able to log in to the system.": "您確定要變更狀態嗎?停用之後,該帳號將會立即被登出且無法再登入系統。", "Are you sure you want to change the status? This may affect associated accounts.": "您確定要變更狀態嗎?這可能會影響相關帳號的權限效力。", - "Are you sure you want to cancel this code?": "確定要取消此代碼嗎?", + "Are you sure you want to confirm completion? This will update the machine stock.": "確定要確認完成嗎?此操作將會更新機台貨道庫存。", + "Are you sure you want to confirm preparation? This will deduct stock from the warehouse.": "確定要確認備貨嗎?此操作將會扣除倉庫庫存。", "Are you sure you want to confirm this stock-in order? This action will update your inventory levels.": "您確定要確認此進貨單嗎?此操作將會更新您的庫存數量。", - "Are you sure you want to delete this pass code?": "確定要刪除此通行碼嗎?", "Are you sure you want to confirm this transfer? This will deduct stock from source and add to target.": "您確定要確認此調撥單嗎?此操作將會扣除來源庫存並增加目標庫存。", "Are you sure you want to deactivate this account? After deactivating, this account will no longer be able to log in to the system.": "確定要停用此帳號嗎?停用後將無法登入系統。", "Are you sure you want to delete this account?": "您確定要刪除此帳號嗎?", @@ -119,14 +121,17 @@ "Are you sure you want to delete this configuration? This action cannot be undone.": "您確定要刪除此金流配置嗎?此操作將無法復原。", "Are you sure you want to delete this draft order? This action cannot be undone.": "您確定要刪除此調撥單草稿嗎?此操作將無法復原。", "Are you sure you want to delete this item? This action cannot be undone.": "確定要刪除此項目嗎?此操作無法復原。", + "Are you sure you want to delete this pass code?": "確定要刪除此通行碼嗎?", "Are you sure you want to delete this product or category? This action cannot be undone.": "您確定要刪除此商品或分類嗎?此操作將無法復原。", "Are you sure you want to delete this product?": "您確定要刪除此商品嗎?", "Are you sure you want to delete this product? All related historical translation data will also be removed.": "確定要刪除此商品嗎?所有相關的歷史翻譯數據也將被移除。", "Are you sure you want to delete this role? This action cannot be undone.": "您確定要刪除此角色嗎?此操作將無法復原。", "Are you sure you want to delete your account?": "您確定要刪除您的帳號嗎?", + "Are you sure you want to disable this pass code? It will no longer be valid for machine access.": "您確定要停用此通行碼嗎?停用後將無法再用於機台存取。", "Are you sure you want to proceed? This action cannot be undone.": "您確定要繼續嗎?此操作將無法復原。", "Are you sure you want to remove this assignment?": "您確定要移除此投放嗎?", "Are you sure you want to send this command?": "確定要發送此指令嗎?", + "Are you sure you want to start delivery?": "確定要開始配送嗎?", "Are you sure?": "確定要執行此操作嗎?", "Assign": "分配所屬機台", "Assign Advertisement": "投放廣告", @@ -138,7 +143,6 @@ "Assigned Machines": "授權機台", "Assigned To": "指派人員", "Assignment removed successfully.": "廣告投放已移除。", - "audit": "稽核管理", "Audit Management": "稽核管理", "Audit Permissions": "稽核管理權限", "Authorization updated successfully": "授權更新成功", @@ -163,9 +167,6 @@ "Basic Information": "基本資訊", "Basic Settings": "基本設定", "Basic Specifications": "基本規格", - "basic-settings": "基本設定", - "basic.machines": "機台設定", - "basic.payment-configs": "客戶金流設定", "Batch": "批號", "Batch No": "批號", "Batch Number": "批號", @@ -175,18 +176,21 @@ "Branch Warehouses": "分倉數量", "Business Type": "業務類型", "Buyout": "買斷", - "by": "由", + "CASH": "CASH", + "CREATE STOCK TRANSFERS BETWEEN WAREHOUSES AND MACHINE RETURNS": "建立倉庫間調撥或機台退庫單", "Calculate Replenishment": "計算補貨量", "Cancel": "取消", + "Cancel Pass Code": "取消通行碼", "Cancel Order": "取消訂單", + "Cancel Pickup Code": "取消取貨碼", "Cancel Purchase": "取消購買", "Cancelled": "已取消", + "Cannot Delete Role": "無法刪除該角色", "Cannot cancel this order": "無法取消此訂單", "Cannot change Super Admin status.": "無法變更超級管理員的狀態。", "Cannot delete advertisement being used by machines.": "無法刪除正在使用的廣告素材。", "Cannot delete company with active accounts.": "無法刪除仍有客用帳號的客戶。", "Cannot delete model that is currently in use by machines.": "無法刪除目前正在被機台使用的型號。", - "Cannot Delete Role": "無法刪除該角色", "Cannot delete role with active users.": "無法刪除已有綁定帳號的角色。", "Cannot delete warehouse with existing stock": "無法刪除仍有庫存的倉庫", "Card Machine System": "刷卡機系統", @@ -198,7 +202,6 @@ "Card System": "刷卡機系統", "Card Terminal": "刷卡機端", "Card Terminal System": "刷卡機系統", - "CASH": "CASH", "Cash Module": "硬幣機 / 紙鈔機模組", "Cash Module Feature": "現金模組功能", "Cash Module Function": "現金模組功能", @@ -224,18 +227,19 @@ "Click here to re-send the verification email.": "點擊此處重新發送驗證郵件。", "Click to Open Dashboard": "點擊開啟儀表板", "Click to upload": "點擊上傳", + "Close": "關閉", "Close Panel": "關閉面板", "Code": "代碼", + "Code Copied": "代碼已複製", "Coin/Banknote Machine": "硬幣機/紙鈔機", "Coin/Bill Acceptor": "硬幣機/紙鈔機", "Command Center": "指令中心", "Command Confirmation": "指令確認", + "Command Type": "指令類型", "Command error:": "指令錯誤:", "Command has been queued successfully.": "指令已成功排入佇列。", "Command not found": "找不到指令", "Command queued successfully.": "指令已加入佇列。", - "Command Type": "指令類型", - "companies": "客戶管理", "Company": "客戶公司", "Company Code": "公司代碼", "Company Information": "公司資訊", @@ -256,17 +260,14 @@ "Confirm Deletion": "確認刪除資料", "Confirm Password": "確認新密碼", "Confirm Prepare": "確認備貨", - "Confirm replenishment completed?": "確定補貨已完成?", "Confirm Status Change": "確認變更狀態", "Confirm Stock-In": "確認進貨", "Confirm Stock-in Order": "確認進貨單", - "Confirm this stock-in order?": "確定要確認此進貨單嗎?", - "Confirm this transfer?": "確定要確認此調撥作業嗎?", "Confirm Transfer": "確認調撥", "Confirm Transfer Order": "確認調撥單", - "Are you sure you want to confirm preparation? This will deduct stock from the warehouse.": "確定要確認備貨嗎?此操作將會扣除倉庫庫存。", - "Are you sure you want to start delivery?": "確定要開始配送嗎?", - "Are you sure you want to confirm completion? This will update the machine stock.": "確定要確認完成嗎?此操作將會更新機台貨道庫存。", + "Confirm replenishment completed?": "確定補貨已完成?", + "Confirm this stock-in order?": "確定要確認此進貨單嗎?", + "Confirm this transfer?": "確定要確認此調撥作業嗎?", "Connected": "通訊中", "Connecting...": "連線中", "Connection lost (LWT)": "連線中斷", @@ -282,32 +283,34 @@ "Contract End": "合約結束", "Contract History": "合約歷程", "Contract History Detail": "合約歷程詳情", - "Contract information updated": "合約資訊已更新", "Contract Model": "合約模式", "Contract Period": "合約期間", "Contract Start": "合約起始", "Contract Until (Optional)": "合約到期日 (選填)", + "Contract information updated": "合約資訊已更新", "Control": "監控操作", + "Copy": "複製", + "Copy Code": "複製代碼", + "Copy Link": "複製連結", "Cost": "成本", "Coupons": "優惠券", "Create": "建立", - "Create a new role and assign permissions.": "建立新角色並分配對應權限。", - "Create and manage replenishment orders from warehouse to machines": "建立並管理從倉庫到機台的補貨單", "Create Config": "建立配置", "Create Machine": "新增機台", - "Create main and branch warehouses": "建立總倉與分倉", "Create New Role": "建立新角色", "Create Payment Config": "新增金流配置", "Create Product": "建立商品", "Create Replenishment Order": "建立補貨單", - "Create replenishment orders and manage restocking from warehouse to machines": "建立補貨單,管理從倉庫到機台的補貨流程", - "Create stock replenishment for specific machines": "為指定機台建立庫存補貨單", "Create Role": "建立角色", - "CREATE STOCK TRANSFERS BETWEEN WAREHOUSES AND MACHINE RETURNS": "建立倉庫間調撥或機台退庫單", - "Create stock transfers between warehouses and machine returns": "建立倉庫間調撥或機台退庫單", - "Create stock-in orders": "建立入庫單", "Create Sub Account Role": "建立子帳號角色", "Create Transfer Order": "建立調撥單", + "Create a new role and assign permissions.": "建立新角色並分配對應權限。", + "Create and manage replenishment orders from warehouse to machines": "建立並管理從倉庫到機台的補貨單", + "Create main and branch warehouses": "建立總倉與分倉", + "Create replenishment orders and manage restocking from warehouse to machines": "建立補貨單,管理從倉庫到機台的補貨流程", + "Create stock replenishment for specific machines": "為指定機台建立庫存補貨單", + "Create stock transfers between warehouses and machine returns": "建立倉庫間調撥或機台退庫單", + "Create stock-in orders": "建立入庫單", "Created At": "建立時間", "Created By": "建立者", "Creation Time": "建立時間", @@ -322,15 +325,15 @@ "Current Stocks": "目前庫存", "Current Type": "當前類型", "Current:": "現:", - "Customer and associated accounts disabled successfully.": "客戶及其關聯帳號已成功停用。", - "Customer created successfully.": "客戶新增成功。", - "Customer deleted successfully.": "客戶已成功刪除。", "Customer Details": "客戶詳情", - "Customer enabled successfully.": "客戶已成功啟用。", "Customer Info": "客戶資訊", "Customer List": "客戶列表", "Customer Management": "客戶管理", "Customer Payment Config": "客戶金流設定", + "Customer and associated accounts disabled successfully.": "客戶及其關聯帳號已成功停用。", + "Customer created successfully.": "客戶新增成功。", + "Customer deleted successfully.": "客戶已成功刪除。", + "Customer enabled successfully.": "客戶已成功啟用。", "Customer updated successfully.": "客戶更新成功。", "Cycle Efficiency": "週期效率", "Daily Revenue": "當日營收", @@ -339,9 +342,6 @@ "Dashboard": "儀表板", "Data Configuration": "資料設定", "Data Configuration Permissions": "資料設定權限", - "data-config": "資料設定", - "data-config.sub-account-roles": "子帳號角色", - "data-config.sub-accounts": "子帳號管理", "Date": "日期", "Date Range": "日期區間", "Day Before": "前日", @@ -356,6 +356,7 @@ "Delete Advertisement Confirmation": "刪除廣告確認", "Delete Code": "刪除代碼", "Delete Customer": "刪除客戶", + "Delete Pass Code": "停用通行碼", "Delete Permanently": "確認永久刪除資料", "Delete Product": "刪除商品", "Delete Product Confirmation": "刪除商品確認", @@ -375,20 +376,21 @@ "Device Status Logs": "設備狀態紀錄", "Devices": "台設備", "Disable": "停用", + "Disable Code": "停用通行碼", "Disable Customer Confirmation": "停用客戶確認", + "Disable Pass Code": "停用通行碼", "Disable Product Confirmation": "停用商品確認", "Disable Warehouse": "停用倉庫", "Disabled": "已停用", - "disabled": "停用", "Disabling this customer will also disable all accounts under this customer. Are you sure you want to continue?": "停用此客戶將會連帶停用該客戶下的所有帳號,確定要繼續嗎?", "Discord Notifications": "Discord通知", + "Dispense Failed": "出貨失敗", + "Dispense Success": "出貨成功", "Dispense error (0407)": "出貨過程異常 (0407)", "Dispense error (0408)": "出貨過程異常 (0408)", "Dispense error (0409)": "出貨過程異常 (0409)", "Dispense error (040A)": "出貨過程異常 (040A)", - "Dispense Failed": "出貨失敗", "Dispense stopped": "出貨停止", - "Dispense Success": "出貨成功", "Dispense successful": "出貨成功", "Dispensing": "出貨", "Dispensing in progress": "正在出貨中", @@ -396,21 +398,10 @@ "Displaying": "目前顯示", "Door Closed": "機門已關閉", "Door Opened": "機門已開啟", + "Download Image": "下載圖片", "Draft": "草稿", "Duration": "時長", "Duration (Seconds)": "播放秒數", - "e.g. 500ml / 300g": "例如:500ml / 300g", - "e.g. John Doe": "例如:張曉明", - "e.g. johndoe": "例如:xiaoming", - "e.g. Main Warehouse": "如:總倉A", - "e.g. Taiwan Star": "例如:台灣之星", - "e.g. Test Code for Maintenance": "例如:維修測試代碼", - "e.g. TWSTAR": "例如:TWSTAR", - "e.g., Beverage": "例如:飲料", - "e.g., Company Standard Pay": "例如:公司標準支付", - "e.g., Drinks": "例如:Drinks", - "e.g., Taipei Station": "例如:台北車站", - "e.g., お飲み物": "例如:お飲み物", "E.SUN Bank Scan": "玉山銀行掃碼", "E.SUN Pay": "玉山 Pay", "E.SUN QR Pay": "玉山銀行掃碼", @@ -419,6 +410,8 @@ "EASY_MERCHANT_ID": "悠遊付 商店代號", "ECPay Invoice": "綠界電子發票", "ECPay Invoice Settings Description": "綠界科技電子發票設定", + "ESUN": "玉山銀行", + "ESUN Scan Pay": "玉山掃碼支付", "Edit": "編輯", "Edit Account": "編輯帳號", "Edit Advertisement": "編輯廣告", @@ -455,10 +448,10 @@ "Enable Points": "啟用點數規則", "Enable Points Mechanism": "啟用點數機制", "Enabled": "已啟用", - "enabled": "啟用", "Enabled Features": "啟用功能", "Enabled/Disabled": "啟用/停用", "End Date": "截止日", + "End Time": "結束時間", "Engineer": "維修人員", "English": "英文", "Ensure your account is using a long, random password to stay secure.": "確保您的帳號使用了足夠強度的隨機密碼以維持安全。", @@ -478,26 +471,28 @@ "Error processing request": "處理請求時發生錯誤", "Error report accepted": "錯誤回報已受理", "Error: :message (:code)": "錯誤::message (:code)", - "ESUN": "玉山銀行", - "ESUN Scan Pay": "玉山掃碼支付", "Execute": "執行", "Execute Change": "執行找零", "Execute Delivery Now": "立即執行出貨", - "Execute maintenance and operational commands remotely": "遠端執行維護與各項營運指令", "Execute Remote Change": "執行遠端找零", + "Execute maintenance and operational commands remotely": "遠端執行維護與各項營運指令", "Execution Time": "執行時間", "Exp": "效期", + "Estimated Expiry": "預計到期時間", + "Expected Expiry": "預計過期時間", + "Expected Expiry Date & Time": "預計到期時間", "Expected Stock": "預期庫存", "Expired": "已過期", "Expired / Disabled": "已過期 / 停用", "Expired Time": "下架時間", + "Expires At": "到期時間", "Expiring": "效期將屆", "Expiry": "效期", "Expiry Date": "有效日期", - "Expiry date tracking and warnings": "有效期限追蹤與預警", "Expiry Management": "效期管理", + "Expiry Time": "到期時間", + "Expiry date tracking and warnings": "有效期限追蹤與預警", "Failed": "執行失敗", - "failed": "失敗", "Failed to fetch machine data.": "無法取得機台資料。", "Failed to load permissions": "載入權限失敗", "Failed to load preview": "載入預覽失敗", @@ -506,19 +501,18 @@ "Failed to update machine images: ": "更新機台圖片失敗:", "Feature Settings": "功能設定", "Feature Toggles": "功能開關", - "files selected": "個檔案已選擇", - "Fill in the device repair or maintenance details": "填寫設備維修或保養詳情", - "Fill in the product details below": "請在下方填寫商品的詳細資訊", "Fill Quantity": "補貨數量", "Fill Rate": "滿載率", + "Fill in the device repair or maintenance details": "填寫設備維修或保養詳情", + "Fill in the product details below": "請在下方填寫商品的詳細資訊", "Filter": "篩選", "Filter by Warehouse Presence": "依據倉庫存貨篩選", - "Firmware updated to :version": "韌體版本更新 : :version", "Firmware Version": "韌體版本", + "Firmware updated to :version": "韌體版本更新 : :version", "Fleet Avg OEE": "全機台平均 OEE", "Fleet Performance": "全機台效能", - "Force end current session": "強制結束目前的連線", "Force End Session": "強制結束當前會話", + "Force end current session": "強制結束目前的連線", "From": "來源", "From Machine": "來源機台", "From Warehouse": "來源倉庫", @@ -529,9 +523,10 @@ "Functional Settings": "功能設定", "Games": "互動遊戲", "General permissions not linked to a specific menu.": "未連結到特定選單的一般權限。", - "Generate and manage one-time pickup codes for customers": "產生並管理客戶的一次性取貨碼", + "Generate": "產生", "Generate New Code": "產生新代碼", "Generate Pickup Code": "產生取貨碼", + "Generate and manage one-time pickup codes for customers": "產生並管理客戶的一次性取貨碼", "Gift Definitions": "禮品設定", "Global roles accessible by all administrators.": "適用於所有管理者的全域角色。", "Go Back": "返回", @@ -556,19 +551,19 @@ "Hopper error (0424)": "料斗箱異常 (0424)", "Hopper heating timeout": "料斗箱加熱逾時", "Hopper overheated": "料斗箱過熱", - "hours ago": "小時前", "Hrs": "小時", + "ITEM": "ITEM", "Identity & Codes": "識別與代碼", "Image": "圖片", - "image": "圖片", + "Image Downloaded": "圖片已下載", "Immediate": "立即", "In Stock": "當前庫存", "Includes Credit Card/Mobile Pay": "含信用卡/行動支付", "Indefinite": "無限期", "Info": "一般", "Initial Admin Account": "初始管理帳號", - "Initial contract registration": "初始合約註冊", "Initial Role": "初始角色", + "Initial contract registration": "初始合約註冊", "Installation": "裝機", "Insufficient stock for transfer": "庫存不足,無法調撥", "Invalid personnel selection": "無效的人員選擇", @@ -580,17 +575,19 @@ "Inventory Stable": "庫存穩定", "Inventory synced with machine": "庫存已與機台同步", "Invoice Status": "發票開立狀態", - "ITEM": "ITEM", "Item List": "商品清單", "Items": "筆", - "items": "筆項目", - "Japanese": "日文", "JKO_MERCHANT_ID": "街口支付 商店代號", - "john@example.com": "john@example.com", + "Japanese": "日文", "Joined": "加入日期", "Just now": "剛剛", "Key": "金鑰 (Key)", "Key No": "鑰匙編號", + "LEVEL TYPE": "層級類型", + "LINE Pay Direct": "LINE Pay 官方直連", + "LINE Pay Direct Settings Description": "LINE Pay 官方直連設定", + "LINE_MERCHANT_ID": "LINE Pay 商店代號", + "LIVE": "實時", "Last Communication": "最後通訊", "Last Heartbeat": "最後心跳時間", "Last Page": "最後頁面", @@ -601,23 +598,19 @@ "Latitude": "緯度", "Lease": "租賃", "Leave empty for permanent code": "留空表示永久有效", + "Leave empty or 0 for permanent code": "留空或輸入 0 則為永久代碼", "Level": "層級", - "LEVEL TYPE": "層級類型", - "line": "Line 管理", "Line Coupons": "Line優惠券", "Line Machines": "Line機台", "Line Management": "Line管理", "Line Members": "Line會員", "Line Official Account": "Line生活圈", "Line Orders": "Line訂單", - "LINE Pay Direct": "LINE Pay 官方直連", - "LINE Pay Direct Settings Description": "LINE Pay 官方直連設定", "Line Permissions": "Line 管理權限", "Line Products": "Line商品", - "LINE_MERCHANT_ID": "LINE Pay 商店代號", "LinePay": "LinePay", "LinePay Payment": "LinePay 支付", - "LIVE": "實時", + "Link Copied": "連結已複製", "Live Fleet Updates": "即時數據更新", "Loading Cabinet...": "正在載入機台貨盤...", "Loading Data": "載入資料中", @@ -626,7 +619,6 @@ "Location": "位置", "Location found!": "已成功獲取座標!", "Location not found": "找不到位置,您可以嘗試使用地標名稱(例如:花蓮縣政府)", - "Try using landmark names (e.g., Hualien County Government)": "您可以嘗試使用地標名稱(例如:花蓮縣政府)", "Lock": "鎖定", "Lock Now": "立即鎖定", "Lock Page": "頁面鎖定", @@ -634,46 +626,38 @@ "Lock Page Unlock": "鎖定頁解鎖", "Locked Page": "鎖定頁", "Log Time": "記錄時間", - "Login failed: :account": "登入失敗::account", "Login History": "登入歷史", + "Login failed: :account": "登入失敗::account", "Logout": "登出", "Logs": "日誌", "Longitude": "經度", + "Link": "連結", "Low": "低", "Low Stock": "庫存過低", "Low Stock Alerts": "低庫存警示", "Low stock and out-of-stock alerts": "低庫存與缺貨警示", "Loyalty & Features": "行銷與點數", - "Machine Advertisement Settings": "機台廣告設置", "Machine": "機台", + "Machine / Slot": "機台 / 貨道", + "Machine Advertisement Settings": "機台廣告設置", "Machine Count": "機台數量", - "Machine created successfully.": "機台已成功建立。", "Machine Details": "機台詳情", "Machine Distribution": "機台分布", "Machine Distribution Map": "機台分布地圖", "Machine Images": "機台照片", - "Machine images updated successfully.": "機台圖片已成功更新。", "Machine Info": "機台資訊", "Machine Information": "機台資訊", "Machine Inventory": "機台庫存", - "Machine Stock": "機台庫存", "Machine Inventory Overview": "機台庫存概覽", - "Machine is heartbeat normal": "機台通訊正常", "Machine List": "機台列表", "Machine Login Logs": "機台登入紀錄", "Machine Logs": "機台日誌", "Machine Management": "機台管理", "Machine Management Permissions": "機台管理權限", "Machine Model": "機台型號", - "Machine model created successfully.": "機台型號已成功建立。", - "Machine model deleted successfully.": "機台型號已成功刪除。", "Machine Model Settings": "機台型號設定", - "Machine model updated successfully.": "機台型號已成功更新。", "Machine Name": "機台名稱", - "Machine normal": "機台系統正常", - "Machine not found": "找不到機台", "Machine Permissions": "機台權限", - "Machine permissions updated successfully.": "機台權限已成功更新。", "Machine Reboot": "機台重啟", "Machine Registry": "機台清冊", "Machine Replenishment": "機台補貨單", @@ -682,16 +666,25 @@ "Machine Return": "機台退庫", "Machine Serial No": "機台序號", "Machine Settings": "機台設定", - "Machine settings updated successfully.": "機台設定已成功更新。", "Machine Status": "機台狀態", "Machine Status List": "機台運行狀態列表", + "Machine Stock": "機台庫存", "Machine System Settings": "機台系統設定", + "Machine Utilization": "機台稼動率", + "Machine created successfully.": "機台已成功建立。", + "Machine images updated successfully.": "機台圖片已成功更新。", + "Machine is heartbeat normal": "機台通訊正常", + "Machine model created successfully.": "機台型號已成功建立。", + "Machine model deleted successfully.": "機台型號已成功刪除。", + "Machine model updated successfully.": "機台型號已成功更新。", + "Machine normal": "機台系統正常", + "Machine not found": "找不到機台", + "Machine permissions updated successfully.": "機台權限已成功更新。", + "Machine settings updated successfully.": "機台設定已成功更新。", "Machine to Warehouse": "機台對倉庫", "Machine to warehouse returns": "機台退回倉庫", "Machine updated successfully.": "機台更新成功。", - "Machine Utilization": "機台稼動率", "Machines": "機台列表", - "machines": "機台管理", "Machines Online": "在線機台數", "Main": "總倉", "Main Warehouses": "總倉數量", @@ -703,20 +696,21 @@ "Maintenance Photos": "維修照片", "Maintenance QR": "維修掃描碼", "Maintenance QR Code": "維修掃描碼", - "Maintenance record created successfully": "維修紀錄已成功建立", "Maintenance Records": "維修管理單", + "Maintenance record created successfully": "維修紀錄已成功建立", "Manage": "管理", "Manage Account Access": "管理帳號存取", "Manage ad materials and machine playback settings": "管理廣告素材與機台播放設定", - "Manage multi-use authorization codes for testing and maintenance": "管理用於測試與維修的多用途授權碼", "Manage administrative and tenant accounts": "管理系統管理者與客戶帳號", "Manage all tenant accounts and validity": "管理所有客戶帳號及其效期", + "Manage multi-use authorization codes for testing and maintenance": "管理用於測試與維修的多用途授權碼", "Manage stock levels, stock-in orders, and movement history": "追蹤庫存水位、進貨單與異動紀錄", "Manage stock transfers between warehouses and machine returns": "建立倉庫間調撥或機台退庫單", "Manage warehouse stock levels, stock-in orders, adjustments, and movement history": "管理倉庫庫存水位、入庫單、盤點調整與異動紀錄", "Manage your ad material details": "管理您的廣告素材詳情", "Manage your catalog, categories, and inventory settings.": "管理您的商品型錄、分類及庫存設定。", "Manage your catalog, prices, and multilingual details.": "管理您的商品型錄、價格及多語系詳情。", + "Manage your company's sub-accounts and role permissions": "管理您公司的子帳號與角色權限", "Manage your machine fleet and operational data": "管理您的機台群組與營運數據", "Manage your profile information, security settings, and login history": "管理您的個人資訊、安全設定與登入紀錄", "Manage your warehouses, including main and branch warehouses": "管理您的倉庫,包含總倉與分倉設定", @@ -727,13 +721,15 @@ "Material Name": "素材名稱", "Material Type": "素材類型", "Max": "最大", + "Max 24 Hours": "最長 24 小時", "Max 3": "最多 3 張", "Max 50MB": "最大 50MB", "Max 5MB": "最大 5MB", + "Max 720 hours (30 days)": "最大 720 小時 (30 天)", + "Max :max hours": "最多 :max 小時", "Max Capacity": "最大容量", "Max Capacity:": "最大容量:", "Max Stock": "庫存上限", - "Max 720 hours (30 days)": "最大 720 小時 (30 天)", "Member": "會員價", "Member & External": "會員與外部系統", "Member List": "會員列表", @@ -741,9 +737,832 @@ "Member Price": "會員價", "Member Status": "會員狀態", "Member System": "會員系統", - "members": "會員管理", "Membership Tiers": "會員等級", "Menu Permissions": "選單權限", + "Merchant IDs": "特店代號清單", + "Merchant payment gateway settings management": "特約商店支付網關參數管理", + "Message": "訊息", + "Message Content": "日誌內容", + "Message Display": "訊息顯示", + "Microwave door error": "微波爐門異常", + "Microwave door opened": "微波爐門開啟", + "Min 8 characters": "至少 8 個字元", + "Model": "機台型號", + "Model Name": "型號名稱", + "Model changed to :model": "型號變更::model", + "Models": "型號列表", + "Modification History": "異動歷程", + "Modifying your own administrative permissions may result in losing access to certain system functions.": "修改自身管理權限可能導致失去對部分系統功能的控制權。", + "Monitor and manage stock levels across your fleet": "監控並管理所有機台的庫存水位", + "Monitor events and system activity across your vending fleet.": "跨機台連線動態與系統日誌監控。", + "Monitor warehouse stock summary": "監控倉庫庫存摘要", + "Monthly Transactions": "本月交易統計", + "Monthly cumulative revenue overview": "本月累計營收概況", + "Motor not stopped": "電機未停止", + "Movement History": "異動紀錄", + "Movement Logs": "異動紀錄", + "Multilingual Names": "多語系名稱", + "N/A": "不適用", + "Name": "名稱", + "Name / Machine": "名稱 / 機台", + "Name in English": "英文名稱", + "Name in Japanese": "日文名稱", + "Name in Traditional Chinese": "繁體中文名稱", + "Needs replenishment": "需要補貨", + "Never Connected": "從未連線", + "New Command": "新增指令", + "New Machine Name": "新機台名稱", + "New Password": "新密碼", + "New Password (leave blank to keep current)": "新密碼 (若不修改請留空)", + "New Record": "新增單據", + "New Replenishment": "新增補貨單", + "New Role": "新角色", + "New Stock-In Order": "新增進貨單", + "New Sub Account Role": "新增子帳號角色", + "New Transfer": "新增調撥單", + "Next": "下一頁", + "No Company": "系統", + "No Invoice": "不開立發票", + "No Location": "無位置資訊", + "No Machine Selected": "尚未選擇機台", + "No accounts found": "找不到帳號資料", + "No active cargo lanes found": "未找到活動貨道", + "No additional notes": "無額外備註", + "No address information": "暫無地址資訊", + "No advertisements found.": "未找到廣告素材。", + "No alert summary": "暫無告警記錄", + "No assignments": "尚未投放", + "No categories found.": "找不到分類。", + "No command history": "尚無指令紀錄", + "No configurations found": "暫無相關配置", + "No content provided": "未提供內容", + "No customers found": "找不到客戶資料", + "No data available": "暫無資料", + "No file uploaded.": "未上傳任何檔案。", + "No heartbeat for over 30 seconds": "超過 30 秒未收到心跳", + "No history records": "尚無歷史紀錄", + "No images uploaded": "尚未上傳照片", + "No location set": "尚未設定位置", + "No login history yet": "尚無登入紀錄", + "No logs found": "暫無相關日誌", + "No machines assigned": "未分配機台", + "No machines available": "目前沒有可供分配的機台", + "No machines available in this company.": "此客戶目前沒有可供分配的機台。", + "No machines found": "未找到機台", + "No maintenance records found": "找不到維修紀錄", + "No matching logs found": "找不到符合條件的日誌", + "No matching machines": "查無匹配機台", + "No materials available": "沒有可用的素材", + "No movement records found": "查無異動紀錄", + "No pass codes found": "找不到通行碼", + "No permissions": "無權限項目", + "No pickup codes found": "找不到取貨碼", + "No products found in this warehouse": "此倉庫目前無商品庫存", + "No products found matching your criteria.": "找不到符合條件的商品。", + "No records found": "未找到相關紀錄", + "No replenishment orders found": "查無補貨單紀錄", + "No results found": "查無搜尋結果", + "No roles available": "目前沒有角色資料。", + "No roles found.": "找不到角色資料。", + "No slot data": "找不到貨道資料", + "No slot data available": "尚無貨道資料", + "No slots found": "未找到貨道資訊", + "No slots need replenishment": "無需補貨的貨道", + "No stock data found": "查無庫存資料", + "No stock-in orders found": "查無進貨單紀錄", + "No transfer orders found": "查無調撥單紀錄", + "No users found": "找不到用戶資料", + "No warehouses found": "未找到倉庫", + "None": "無", + "Normal": "正常", + "Not Used": "不使用", + "Not Used Description": "不使用第三方支付介接", + "Note": "備註", + "Note (optional)": "備註 (選填)", + "Notes": "備註", + "OEE": "OEE", + "OEE Efficiency Trend": "OEE 效率趨勢", + "OEE Score": "OEE 綜合評分", + "OEE.Activity": "營運活動", + "OEE.Errors": "異常", + "OEE.Hours": "小時", + "OEE.Orders": "訂單", + "OEE.Sales": "銷售", + "Offline": "離線", + "Offline Machines": "離線機台", + "Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.": "一旦您的帳號被刪除,其所有資源和數據將被永久刪除。在刪除帳號之前,請下載您希望保留的任何數據或資訊。", + "Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.": "帳號一旦刪除,所有關連數據將被永久移除。請輸入您的密碼以確認您希望永久刪除此帳號。", + "One-click replenishment order generation": "一鍵產生補貨單", + "Ongoing": "進行中", + "Online": "線上", + "Online Duration": "累積連線時數", + "Online Machines": "在線機台", + "Online Status": "在線狀態", + "Only system roles can be assigned to platform administrative accounts.": "僅系統角色可指派給平台管理帳號。", + "Operation Note": "操作備註", + "Operation Records": "操作紀錄", + "Operation failed": "操作失敗", + "Operational Parameters": "運作參數", + "Operations": "運作設定", + "Operator": "操作人員", + "Optimal": "良好", + "Optimized Performance": "效能最佳化", + "Optimized for display. Supported formats: JPG, PNG, WebP.": "已針對顯示進行優化。支援格式:JPG, PNG, WebP。", + "Optional": "選填", + "Optional remarks": "選填備註", + "Optional remarks...": "選填備註...", + "Order Details": "進貨單詳情", + "Order Info": "單據資訊", + "Order Management": "訂單管理", + "Order No.": "單號", + "Order already completed": "訂單已完成", + "Order already processed": "訂單已處理", + "Order completed and stock updated": "訂單已完成,機台庫存已更新", + "Order has been cancelled": "訂單已取消", + "Order is now in delivery": "訂單配送中", + "Order prepared successfully, stock deducted": "訂單已成功備貨,庫存已扣除", + "Orders": "購買單", + "Original": "原始", + "Original Type": "原始類型", + "Original:": "原:", + "Other Features": "其他功能", + "Other Permissions": "其他權限", + "Others": "其他功能", + "Out of Stock": "缺貨", + "Out of stock.": "庫存不足。", + "Output Count": "出貨次數", + "Overall Capacity": "總庫存量", + "Owner": "公司名稱", + "PARTNER_KEY": "PARTNER_KEY", + "PI_MERCHANT_ID": "Pi 拍錢包 商店代號", + "PNG, JPG up to 2MB": "支援 PNG, JPG (最大 2MB)", + "PNG, JPG, WEBP up to 10MB": "支援 PNG, JPG, WEBP 格式,且不超過 10MB", + "POS Reboot": "刷卡重啟", + "PS_LEVEL": "PS_LEVEL", + "PS_MERCHANT_ID": "全盈+Pay 商店代號", + "Page 0": "離線", + "Page 1": "主頁面", + "Page 2": "販賣頁", + "Page 3": "管理頁", + "Page 4": "補貨頁", + "Page 5": "教學頁", + "Page 6": "購買中", + "Page 60": "出貨成功", + "Page 61": "貨道測試", + "Page 610": "購買結束", + "Page 611": "來店禮", + "Page 612": "出貨失敗", + "Page 62": "付款選擇", + "Page 63": "等待付款", + "Page 64": "出貨", + "Page 65": "收據簽單", + "Page 66": "通行碼", + "Page 67": "取貨碼", + "Page 68": "訊息顯示", + "Page 69": "取消購買", + "Page 7": "鎖定頁", + "Page Lock Status": "頁面鎖定狀態", + "Parameters": "參數設定", + "Pass Code": "通行碼", + "Pass Code (8 Digits)": "通行碼 (8 位數)", + "Pass Code Management": "通行碼管理", + "Pass Code QR": "通行碼 QR Code", + "Pass Code Ticket": "通行憑證", + "Pass Codes": "通行碼", + "Pass code created: :code": "通行碼已建立::code", + "Pass code deleted.": "通行碼已刪除", + "Pass code disabled.": "通行碼已停用。", + "Pass code updated.": "通行碼已更新", + "Password": "密碼", + "Password updated successfully.": "密碼已成功變更。", + "Payment & Invoice": "金流與發票", + "Payment Buffer Seconds": "金流緩衝時間(s)", + "Payment Config": "金流配置", + "Payment Configuration": "客戶金流設定", + "Payment Configuration created successfully.": "金流設定已成功建立。", + "Payment Configuration deleted successfully.": "金流設定已成功刪除。", + "Payment Configuration updated successfully.": "金流設定已成功更新。", + "Payment Selection": "付款選擇", + "Pending": "待處理", + "Per Page": "每頁顯示", + "Performance": "效能 (Performance)", + "Permanent": "永久", + "Permanent Code": "永久代碼", + "Permanently Delete Account": "永久刪除帳號", + "Permission Settings": "權限設定", + "Permission Tags": "權限標籤", + "Permissions": "權限", + "Permissions updated successfully": "授權更新成功", + "Personnel assigned successfully": "人員指派成功", + "Phone": "手機號碼", + "Photo Slot": "照片欄位", + "Picked up": "領取", + "Picked up Time": "領取時間", + "Pickup Code": "取貨碼", + "Pickup Codes": "取貨碼", + "Pickup Ticket": "取貨憑證", + "Pickup Code (8 Digits)": "取貨碼 (8 位數)", + "Pickup code cancelled.": "取貨碼已取消", + "Pickup code generated: :code": "已生成取貨碼::code", + "Pickup code updated.": "取貨碼已更新", + "Pickup door closed": "取貨門已關閉", + "Pickup door error": "取貨門運作異常", + "Pickup door not closed": "取貨門未關閉", + "Playback Order": "播放順序", + "Please Select Slot first": "請先選擇貨道", + "Please check the following errors:": "請檢查以下錯誤:", + "Please check the form for errors.": "請檢查欄位內容是否正確。", + "Please enter address first": "請先輸入地址", + "Please enter configuration name": "請輸入設定名稱", + "Please select a company": "請選擇公司", + "Please select a machine": "請選擇機台", + "Please select a machine first": "請先選擇機台", + "Please select a machine model": "請選擇機台型號", + "Please select a machine to view and manage its advertisements.": "請選擇一個機台以查看並管理其廣告。", + "Please select a machine to view metrics": "請選擇機台以查看數據", + "Please select a material": "請選擇素材", + "Please select a slot": "請選擇貨道", + "Please select warehouse and machine": "請選擇倉庫和機台", + "Point Rules": "點數規則", + "Point Settings": "點數設定", + "Points": "點數功能", + "Points Rule": "點數規則", + "Points Settings": "點數設定", + "Points toggle": "點數開關", + "Position": "投放位置", + "Prepared": "已備貨", + "Preparing": "備貨中", + "Preview": "預覽", + "Previous": "上一頁", + "Price / Member": "售價 / 會員價", + "Pricing Information": "價格資訊", + "Product": "商品", + "Product / Slot": "商品 / 貨道", + "Product / Stock": "商品 / 庫存", + "Product Count": "商品數量", + "Product Details": "商品明細", + "Product ID": "商品編號", + "Product Image": "商品圖片", + "Product Info": "商品資訊", + "Product List": "商品清單", + "Product Management": "商品管理", + "Product Name": "商品名稱", + "Product Name (Multilingual)": "商品名稱 (多語系)", + "Product Reports": "商品報表", + "Product Status": "商品狀態", + "Product created successfully": "商品已成功建立", + "Product deleted successfully": "商品已成功刪除", + "Product empty": "貨道缺貨 (PDT_EMPTY)", + "Product status updated to :status": "商品狀態已更新為 :status", + "Product updated successfully": "商品已成功更新", + "Production Company": "生產公司", + "Products": "商品", + "Products / Stock": "商品 / 庫存", + "Profile": "個人檔案", + "Profile Information": "個人基本資料", + "Profile Settings": "個人設定", + "Profile updated successfully.": "個人資料已成功更新。", + "Promotions": "促銷時段", + "Protected": "受保護", + "Publish": "發布", + "Publish Time": "發布時間", + "Purchase Audit": "採購單", + "Purchase Finished": "購買結束", + "Purchases": "採購單", + "Purchasing": "購買中", + "QR": "二維碼", + "QR CODE": "二維碼", + "QR Scan Payment": "掃碼支付功能", + "Qty": "數量", + "Qty Change": "異動數量", + "Quality": "品質 (Quality)", + "Quantity": "數量", + "Questionnaire": "問卷", + "Quick Expiry Check": "效期快速檢查", + "Quick Maintenance": "快速維護", + "Quick Replenish": "快速補貨", + "Quick Select": "快速選取", + "Quick replenishment from this view": "從此畫面快速補貨", + "Quick search...": "快速搜尋...", + "Real-time OEE analysis awaits": "即時 OEE 分析預備中", + "Real-time Operation Logs (Last 50)": "即時操作日誌 (最後 50 筆)", + "Real-time fleet efficiency and OEE metrics": "全機台即時效率與 OEE 指標", + "Real-time inventory status across all machines with expiry tracking": "即時掌握所有機台庫存狀態與有效期限追蹤", + "Real-time monitoring across all machines": "跨機台即時狀態監控", + "Real-time monitoring and adjustment of cargo lane inventory and expiration dates": "即時監控與調整各機台貨道庫存與效期狀態", + "Real-time performance analytics": "即時效能分析", + "Real-time slot-level inventory across all machines": "跨機台的即時貨道庫存追蹤", + "Real-time status monitoring": "即時監控機台連線動態", + "Reason for this command...": "請輸入執行此指令的原因...", + "Recalculate": "重新計算", + "Receipt Printing": "收據簽單", + "Recent Commands": "最近指令", + "Recent Login": "最近登入", + "Recently reported errors or warnings in logs": "近期日誌中有錯誤或警告回報", + "Records": "筆", + "Regenerate": "重新產生", + "Regenerating the token will disconnect the physical machine until it is updated. Continue?": "重新產生金鑰將導致實體機台暫時失去連線,必須於機台端更新此新金鑰才能恢復。確定繼續嗎?", + "Remote Change": "遠端找零", + "Remote Checkout": "遠端結帳", + "Remote Command Center": "遠端指令中心", + "Remote Dispense": "遠端出貨", + "Remote Lock": "遠端鎖定", + "Remote Management": "遠端管理", + "Remote Permissions": "遠端管理權限", + "Remote Reboot": "遠端結帳", + "Remote Settlement": "遠端結帳", + "Remote dispense successful for slot :slot": "貨道 :slot 遠端出貨成功", + "Removal": "撤機", + "Repair": "維修", + "Replenish": "補貨", + "Replenishment": "補貨", + "Replenishment Audit": "補貨單", + "Replenishment Details": "補貨單詳情", + "Replenishment Items": "補貨項目", + "Replenishment Orders": "機台補貨單", + "Replenishment Page": "補貨頁", + "Replenishment Records": "機台補貨紀錄", + "Replenishment Staff": "補貨人員", + "Replenishment cancelled, stock returned": "補貨取消,庫存退回", + "Replenishment completed": "補貨完成", + "Replenishment history": "補貨歷史紀錄", + "Replenishment order confirmed and inventory updated": "補貨單已確認且庫存已更新", + "Replenishment order created": "補貨單已建立", + "Replenishment order created successfully": "補貨單已成功建立", + "Replenishment prepare": "補貨備貨", + "Replenishments": "機台補貨單", + "Reporting Period": "報表區間", + "Reservation Members": "預約會員", + "Reservation System": "預約系統", + "Reservations": "預約管理", + "Reset Filters": "重設篩選", + "Reset POS terminal": "重設 POS 終端", + "Resolve Coordinates": "獲取座標", + "Restart entire machine": "重啟整台機台", + "Restock report accepted": "補貨回報已受理", + "Restrict UI Access": "限制 UI 存取權限", + "Restrict machine UI access": "限制機台介面存取", + "Result reported": "結果已回報", + "Retail Price": "零售價", + "Returns": "回庫單", + "Risk": "風險狀態", + "Role": "角色", + "Role Identification": "角色識別資訊", + "Role Management": "角色權限管理", + "Role Name": "角色名稱", + "Role Permissions": "角色權限", + "Role Settings": "角色權限", + "Role Type": "角色類型", + "Role created successfully.": "角色已成功建立。", + "Role deleted successfully.": "角色已成功刪除。", + "Role name already exists in this company.": "該公司已存在相同名稱的角色。", + "Role not found.": "角色不存在。", + "Role updated successfully.": "角色已成功更新。", + "Roles": "角色權限", + "Roles scoped to specific customer companies.": "適用於各個客戶公司的特定角色。", + "Running": "運行中", + "Running Status": "運行狀態", + "SYSTEM": "系統層級", + "Safety Stock": "安全庫存", + "Sale Price": "售價", + "Sales": "銷售管理", + "Sales Activity": "銷售活動", + "Sales Management": "銷售管理", + "Sales Permissions": "銷售管理權限", + "Sales Records": "銷售紀錄", + "Save": "儲存", + "Save Changes": "儲存變更", + "Save Config": "儲存配置", + "Save Material": "儲存素材", + "Save Permissions": "儲存權限", + "Save Settings": "儲存設定", + "Save error:": "儲存錯誤:", + "Saved.": "已儲存", + "Saving...": "儲存中...", + "Scale level and access control": "層級與存取控制", + "Scan Pay": "掃碼支付功能", + "Scan QR Code": "掃描 QR Code", + "Scan this code at the machine or share the link with the customer.": "請在機台掃描此碼,或將連結分享給客戶。", + "Scan this code at the machine to authorize testing or maintenance.": "請在機台上掃描此 QR Code 以進行測試或維護授權。", + "Scan this code to quickly access the maintenance form for this device.": "掃描此 QR Code 即可快速進入此設備的維修單填寫頁面。", + "Scan to authorize testing or maintenance": "掃描以進行測試或維護授權", + "Scan to pick up your product": "掃描以領取您的商品", + "Schedule": "排程區間", + "Search Company Title...": "搜尋公司名稱...", + "Search Machine...": "搜尋機台...", + "Search Product": "搜尋商品", + "Search accounts...": "搜尋帳號...", + "Search by code, machine name or serial...": "搜尋代碼、機台名稱或序號...", + "Search by code, name or machine...": "搜尋代碼、名稱或機台...", + "Search by name or S/N...": "搜尋名稱或序號...", + "Search by name...": "搜尋名稱...", + "Search cargo lane": "搜尋貨道編號或商品名稱", + "Search categories...": "搜尋分類...", + "Search company...": "搜尋公司...", + "Search configurations...": "搜尋設定...", + "Search customers...": "搜尋客戶...", + "Search machines by name or serial...": "搜尋機台名稱或序號...", + "Search machines...": "搜尋機台...", + "Search models...": "搜尋型號...", + "Search order number...": "搜尋單號...", + "Search products...": "搜尋商品名稱...", + "Search roles...": "搜尋角色...", + "Search serial no or name...": "搜尋序號或機台名稱...", + "Search serial or machine...": "搜尋序號或機台名稱...", + "Search serial or name...": "搜尋序號或機台名稱...", + "Search users...": "搜尋用戶...", + "Search warehouses...": "搜尋倉庫...", + "Search...": "搜尋...", + "Searching...": "搜尋中...", + "Seconds": "秒", + "Security & State": "安全性與狀態", + "Security Controls": "安全控制", + "Select All": "全選", + "Select Cargo Lane": "選擇貨道", + "Select Category": "選擇類別", + "Select Company": "選擇公司名稱", + "Select Company (Default: System)": "選擇公司 (預設:系統)", + "Select Date Range": "選擇建立日期區間", + "Select Machine": "選擇機台", + "Select Machine First": "請先選擇機台", + "Select Machine to view metrics": "請選擇機台以查看指標", + "Select Material": "選擇素材", + "Select Model": "選擇型號", + "Select Owner": "選擇公司名稱", + "Select Personnel": "選擇人員", + "Select Product": "選擇商品", + "Select Slot": "選擇貨道", + "Select Slot...": "選擇貨道...", + "Select Target Slot": "選擇目標貨道", + "Select Warehouse": "選擇倉庫", + "Select a machine to deep dive": "請選擇機台以開始深度分析", + "Select a material to play on this machine": "選擇要在此機台播放的素材", + "Select a team member to handle this replenishment order": "選擇負責此補貨單的團隊成員", + "Select all slots": "選擇所有貨道", + "Select an asset from the left to start analysis": "選擇左側機台以開始分析數據", + "Select date to sync data": "選擇日期以同步數據", + "Select...": "請選擇...", + "Selected": "已選擇", + "Selected Date": "查詢日期", + "Selected Machine": "已選擇機台", + "Selected Slot": "已選擇貨道", + "Selection": "已選擇", + "Sent": "機台已接收", + "Serial & Version": "序號與版本", + "Serial NO": "機台序號", + "Serial No": "機台序號", + "Serial No.": "序列號", + "Serial Number": "機台序號", + "Service Periods": "服務區間", + "Service Terms": "服務期程", + "Settings Saved": "設定已儲存", + "Settings updated successfully.": "設定更新成功。", + "Settlement": "結帳處理", + "Shopping Cart": "購物車", + "Shopping Cart Feature": "購物車功能", + "Shopping Cart Function": "購物車功能", + "Show": "顯示", + "Show material code field in products": "在商品資料中顯示物料編號欄位", + "Show points rules in products": "在商品資料中顯示點數規則相關欄位", + "Showing": "目前顯示", + "Showing :from to :to of :total items": "顯示第 :from 到 :to 項,共 :total 項", + "Sign in to your account": "隨時隨地掌控您的業務。", + "Signed in as": "登入身份", + "Slot": "貨道", + "Slot Mechanism (default: Conveyor, check for Spring)": "貨道機制 (預設履帶,勾選為彈簧)", + "Slot No": "貨道編號", + "Slot Status": "貨道效期", + "Slot Test": "貨道測試", + "Slot empty": "貨道空 (SLOT_EMPTY)", + "Slot jammed": "貨道卡貨 (K-PDT)", + "Slot motor error (0207)": "貨道電機故障 (0207)", + "Slot motor error (0208)": "貨道電機故障 (0208)", + "Slot motor error (0209)": "貨道電機故障 (0209)", + "Slot normal": "貨道正常", + "Slot not closed": "貨道未關閉", + "Slot not found": "找不到指定貨道", + "Slot report synchronized success": "貨道狀態同步成功", + "Slot updated successfully.": "貨道更新成功。", + "Slots": "貨道數", + "Slots need replenishment": "需要補貨的貨道", + "Smallest number plays first.": "數字愈小愈先播放。", + "Smart replenishment suggestions": "智能補貨建議", + "Software": "軟體", + "Software End": "軟體結束", + "Software Service": "軟體服務", + "Software Start": "軟體起始", + "Some fields need attention": "部分欄位需要注意", + "Sort Order": "排序", + "Source": "來源", + "Source Warehouse": "來源倉庫", + "Special Permission": "特殊權限", + "Specification": "規格", + "Specifications": "規格", + "Spring": "彈簧", + "Spring Channel Limit": "彈簧貨道上限", + "Spring Limit": "彈簧貨道上限", + "Staff Stock": "人員庫存", + "Standby": "待機廣告", + "Standby Ad": "待機廣告", + "Start Date": "起始日", + "Start Delivery": "開始配送", + "Start Time": "開始時間", + "Statistics": "數據統計", + "Status": "狀態", + "Status / Temp / Sub / Card / Scan": "狀態 / 溫度 / 下位機 / 刷卡機 / 掃碼機", + "Status Timeline": "狀態時間線", + "Status updated successfully": "狀態更新成功", + "Stock": "庫存", + "Stock & Expiry": "庫存與效期", + "Stock & Expiry Management": "庫存與效期管理", + "Stock & Expiry Overview": "庫存與效期一覽", + "Stock / Capacity": "庫存/上限", + "Stock In": "庫存入庫", + "Stock Level": "庫存量", + "Stock Level > 50%": "庫存高於 50%", + "Stock Levels": "庫存水準", + "Stock Management": "庫存管理單", + "Stock Out": "庫存出庫", + "Stock Quantity": "庫存數量", + "Stock Rate": "庫存率", + "Stock Update": "同步庫存", + "Stock adjustments and damage reports": "庫存調整與報損處理", + "Stock flow history": "庫存流向歷史", + "Stock overview by warehouse": "依倉庫查看庫存概況", + "Stock returned to warehouse": "庫存已退回倉庫", + "Stock-In Management": "進貨管理", + "Stock-In Order": "新增進貨單", + "Stock-In Orders": "進貨單管理", + "Stock-In Orders Tab": "進貨單管理", + "Stock-in order": "入庫單", + "Stock-in order confirmed and inventory updated": "進貨單已確認且庫存已更新", + "Stock-in order created": "入庫單已建立", + "Stock-in order created successfully": "進貨單已成功建立", + "Stock-in order deleted successfully": "進貨單已成功刪除", + "Stock:": "庫存:", + "Store Gifts": "來店禮", + "Store ID": "商店代號", + "Store Management": "店家管理", + "StoreID": "商店代號 (StoreID)", + "Sub / Card / Scan": "下位機 / 刷卡機 / 掃碼機", + "Sub Account Management": "子帳號管理", + "Sub Account Roles": "子帳號角色", + "Sub Accounts": "子帳號", + "Sub-actions": "子項目", + "Sub-machine Status Request": "下位機狀態回傳", + "Submit Record": "提交紀錄", + "Success": "執行成功", + "Super Admin": "超級管理員", + "Super-admin role cannot be assigned to tenant accounts.": "超級管理員角色無法指派給客戶帳號。", + "Superseded": "已取代", + "Superseded by new adjustment": "此指令已由後面最新的調整所取代", + "Superseded by new command": "此指令已由後面最新的指令所取代", + "Survey Analysis": "問卷分析", + "Syncing": "同步中", + "Syncing Permissions...": "正在同步權限...", + "System": "系統", + "System & Security Control": "系統與安全控制", + "System Default": "系統預設", + "System Default (All Companies)": "系統預設 (所有公司)", + "System Default (Common)": "系統預設 (通用)", + "System Level": "系統層級", + "System Official": "系統層", + "System Reboot": "系統重啟", + "System Role": "系統角色", + "System Settings": "系統設定", + "System role name cannot be modified.": "內建系統角色的名稱無法修改。", + "System roles cannot be deleted by tenant administrators.": "客戶管理員無法刪除系統角色。", + "System roles cannot be modified by tenant administrators.": "客戶管理員無法修改系統角色。", + "System settings updated successfully.": "系統設定更新成功。", + "System super admin accounts cannot be deleted.": "系統超級管理員帳號無法刪除。", + "System super admin accounts cannot be modified via this interface.": "系統超級管理員帳號無法透過此介面修改。", + "Systems Initializing": "系統初始化中", + "Table View": "列表視圖", + "TapPay Integration": "TapPay 支付串接", + "TapPay Integration Settings Description": "喬睿科技支付串接設定", + "Target": "目標", + "Target Machine": "目標機台", + "Target Warehouse": "目標倉庫", + "Tax ID": "統一編號", + "Tax ID (Optional)": "統一編號 (選填)", + "Tax System": "稅務系統", + "Taxation System": "稅務系統", + "Temperature": "溫度", + "Temperature reported: :temp°C": "回報溫度 : :temp°C", + "Temperature updated to :temp°C": "溫度已更新為::temp°C", + "Tenant": "客戶", + "TermID": "終端代號 (TermID)", + "The Super Admin role cannot be deleted.": "超級管理員角色不可刪除。", + "The Super Admin role is immutable.": "超級管理員角色不可修改。", + "The Super Admin role name cannot be modified.": "超級管理員角色的名稱無法修改。", + "The image is too large. Please upload an image smaller than 1MB.": "圖片檔案太大,請上傳小於 1MB 的圖片。", + "This is a system administrator role. Its name is locked to ensure system stability.": "這是系統管理員角色,名稱已鎖定以確保系統穩定性。", + "This role belongs to another company and cannot be assigned.": "此角色屬於其他公司,無法指派。", + "This slot has a pending command. Please wait.": "此貨道已有指令正在執行,請稍後。", + "This slot has a pending update. Please wait for the previous command to complete.": "此貨道已有更新指令在執行中,請等候前一個指令完成。", + "This slot is syncing with the machine. Please wait.": "此貨道正在與機台同步中,請稍候。", + "Ticket": "憑證", + "Ticket Link": "憑證連結", + "Time": "時間", + "Time Slots": "時段組合", + "Timer": "計時器", + "Timestamp": "時間戳記", + "To": "目的地", + "To Warehouse": "目標倉庫", + "To:": "終:", + "Today Cumulative Sales": "今日累積銷售", + "Today's Transactions": "今日交易額", + "Total": "總計", + "Total Connected": "總計連線數", + "Total Customers": "客戶總數", + "Total Daily Sales": "本日累計銷量", + "Total Gross Value": "銷售總額", + "Total Logins": "總登入次數", + "Total Machines": "機台總數", + "Total Quantity": "補貨總量", + "Total Selected": "已選擇總數", + "Total Slots": "總貨道數", + "Total Stock": "總庫存", + "Total Stock Volume": "總庫存量", + "Total Warehouses": "倉庫總數", + "Total items": "總計 :count 項", + "Track": "履帶", + "Track Channel Limit": "履帶貨道上限", + "Track Limit": "履帶貨道上限", + "Track Limit (Track/Spring)": "貨道上限(履帶/彈簧)", + "Track device health and maintenance history": "追蹤設備健康與維修歷史", + "Track stock levels, stock-in orders, and movement history": "追蹤庫存水位、進貨單與異動紀錄", + "Track stock-in orders and movement history": "追蹤進貨單據與庫存異動紀錄", + "Traditional Chinese": "繁體中文", + "Transaction processed: :id": "交易處理完成::id", + "Transfer Audit": "調撥單", + "Transfer Details": "調撥單詳情", + "Transfer In": "轉入", + "Transfer Orders": "調撥單管理", + "Transfer Out": "調撥轉出", + "Transfer Type": "調撥類型", + "Transfer completed": "調撥完成", + "Transfer in": "調撥調入", + "Transfer order confirmed and inventory updated": "調撥單已確認且庫存已更新", + "Transfer order created": "調撥單已建立", + "Transfer order created successfully": "調撥單已成功建立", + "Transfer order deleted successfully": "調撥單已成功刪除", + "Transfer order status tracking": "調撥單狀態追蹤", + "Transfer out": "調撥調出", + "Transfers": "調撥單", + "Trigger": "執行", + "Trigger Dispense": "觸發出貨", + "Trigger Remote Dispense": "觸發遠端出貨", + "Try using landmark names (e.g., Hualien County Government)": "您可以嘗試使用地標名稱(例如:花蓮縣政府)", + "Tutorial Page": "教學頁", + "Type": "類型", + "Type to search or leave blank for system defaults.": "輸入關鍵字搜尋,或留空以使用系統預設。", + "UI Elements": "UI元素", + "Unassigned": "未指派", + "Unassigned / No Change": "未指派 / 不變動", + "Unauthorized Status": "未授權", + "Unauthorized login attempt: :account": "越權登入嘗試::account", + "Unauthorized: Account not authorized for this machine": "授權失敗:此帳號無存取該機台的權限", + "Unauthorized: Account not found": "授權失敗:找不到帳號", + "Uncategorized": "未分類", + "Unified Operational Timeline": "整合式營運時序圖", + "Units": "台", + "Unknown": "未知", + "Unknown Product": "未知商品", + "Unknown error": "未知的錯誤", + "Unlimited": "無限期", + "Unlock": "解鎖", + "Unlock Now": "立即解鎖", + "Unlock Page": "頁面解鎖", + "Unpublish": "下架", + "Update": "更新", + "Update Authorization": "更新授權", + "Update Customer": "更新客戶", + "Update Password": "更改密碼", + "Update Product": "更新商品", + "Update Settings": "更新設定", + "Update existing role and permissions.": "更新現有角色與權限設定。", + "Update failed": "更新失敗", + "Update identification for your asset": "更新您的資產識別名稱", + "Update your account's profile information and email address.": "更新您的帳號名稱、手機號碼與電子郵件地址。", + "Upload Image": "上傳圖片", + "Upload New Images": "上傳新照片", + "Upload Video": "上傳影片", + "Uploading new images will replace all existing images.": "上傳新照片將會取代所有現有照片。", + "Used": "已使用", + "User": "一般用戶", + "User Info": "用戶資訊", + "User logged in: :name": "使用者登入::name", + "Username": "使用者帳號", + "Users": "帳號數", + "Utilization Rate": "機台稼動率", + "Utilization Timeline": "稼動時序", + "Utilization, OEE and Operational Intelligence": "稼動率、OEE 與營運情報", + "Utilized Time": "稼動持續時間", + "Valid Ticket": "有效憑證", + "Valid Until": "有效期限至", + "Validation Error": "驗證錯誤", + "Validity Period": "有效期限", + "Validity Period (Days)": "有效期限 (天)", + "Validity Period (Hours)": "有效期限 (小時)", + "Vending": "販賣頁", + "Vending Page": "販賣頁", + "Venue Management": "場地管理", + "Video": "影片", + "View Details": "查看細單", + "View Full History": "查看完整歷程", + "View Inventory": "查看庫存", + "View Logs": "查看日誌", + "View More": "查看更多", + "View QR Code": "查看 QR Code", + "View Slots": "查看貨道", + "View all warehouses": "查看所有倉庫", + "View slot-level inventory for each machine": "查看各機台貨道庫存", + "Visit Gift": "來店禮", + "Visual overview of all machine locations": "所有機台位置的視覺化概覽", + "Waiting": "等待中", + "Waiting for Payment": "等待付款", + "Warehouse": "倉庫", + "Warehouse :status successfully": "倉庫已:status", + "Warehouse Info": "倉庫資訊", + "Warehouse Inventory": "倉庫商品詳情", + "Warehouse List": "倉庫清單", + "Warehouse List (All)": "倉庫列表(全)", + "Warehouse List (Individual)": "倉庫列表(個)", + "Warehouse Management": "倉儲管理", + "Warehouse Name": "倉庫名稱", + "Warehouse Overview": "倉庫總覽", + "Warehouse Permissions": "倉庫管理權限", + "Warehouse Stock": "倉庫數量", + "Warehouse Transfer": "倉庫調撥", + "Warehouse Type": "倉庫類型", + "Warehouse created successfully": "倉庫建立成功", + "Warehouse created successfully.": "倉庫已成功建立。", + "Warehouse deleted successfully": "倉庫已刪除", + "Warehouse deleted successfully.": "倉庫已成功刪除。", + "Warehouse purchase records": "倉庫採購進貨紀錄", + "Warehouse stock insufficient": "倉庫庫存不足", + "Warehouse stock insufficient warning": "倉庫庫存不足以補滿所有貨道,但仍可建立補貨單", + "Warehouse to Warehouse": "倉庫對倉庫", + "Warehouse to warehouse transfers": "倉庫對倉庫調撥", + "Warehouse updated successfully": "倉庫更新成功", + "Warehouse updated successfully.": "倉庫已成功更新。", + "Warning": "即將過期", + "Warning: You are editing your own role!": "警告:您正在編輯目前使用的角色!", + "Warranty": "保固", + "Warranty End": "保固結束", + "Warranty Service": "保固服務", + "Warranty Start": "保固起始", + "Welcome Gift": "來店禮", + "Welcome Gift Feature": "迎賓禮功能", + "Welcome Gift Function": "迎賓禮功能", + "Welcome Gift Status": "來店禮", + "Work Content": "作業內容", + "Yes, Cancel": "確認取消", + "Yes, Delete": "是的,停用", + "Yes, Disable": "是的,停用", + "Yesterday": "昨日", + "You can assign or change the personnel handling this order": "您可以指派或變更處理此訂單的人員", + "You cannot assign permissions you do not possess.": "您無法指派您自身不具備的權限。", + "You cannot delete your own account.": "您無法刪除自己的帳號。", + "Your email address is unverified.": "您的電子郵件地址尚未驗證。", + "Your recent account activity": "最近的帳號活動", + "accounts": "帳號管理", + "admin": "管理員", + "analysis": "分析管理", + "app": "APP 管理", + "audit": "稽核管理", + "basic-settings": "基本設定", + "basic.machines": "機台設定", + "basic.payment-configs": "客戶金流設定", + "by": "由", + "companies": "客戶管理", + "data-config": "資料設定", + "data-config.sub-account-roles": "子帳號角色", + "data-config.sub-accounts": "子帳號管理", + "disabled": "停用", + "e.g. 500ml / 300g": "例如:500ml / 300g", + "e.g. John Doe": "例如:張曉明", + "e.g. Main Warehouse": "如:總倉A", + "e.g. TWSTAR": "例如:TWSTAR", + "e.g. Taiwan Star": "例如:台灣之星", + "e.g. Test Code for Maintenance": "例如:維修測試代碼", + "e.g. johndoe": "例如:xiaoming", + "e.g., Beverage": "例如:飲料", + "e.g., Company Standard Pay": "例如:公司標準支付", + "e.g., Drinks": "例如:Drinks", + "e.g., Taipei Station": "例如:台北車站", + "e.g., お飲み物": "例如:お飲み物", + "enabled": "啟用", + "failed": "失敗", + "files selected": "個檔案已選擇", + "hours ago": "小時前", + "image": "圖片", + "items": "筆項目", + "john@example.com": "john@example.com", + "line": "Line 管理", + "machines": "機台管理", + "members": "會員管理", "menu.analysis": "數據分析", "menu.app": "APP 運維", "menu.audit": "審核管理", @@ -790,823 +1609,32 @@ "menu.warehouses.overview": "倉庫概覽", "menu.warehouses.replenishments": "機台補貨單", "menu.warehouses.transfers": "調撥單", - "Merchant IDs": "特店代號清單", - "Merchant payment gateway settings management": "特約商店支付網關參數管理", - "Message": "訊息", - "Message Content": "日誌內容", - "Message Display": "訊息顯示", - "Microwave door error": "微波爐門異常", - "Microwave door opened": "微波爐門開啟", "min": "分", - "Min 8 characters": "至少 8 個字元", "mins ago": "分鐘前", - "Model": "機台型號", - "Model changed to :model": "型號變更::model", - "Model Name": "型號名稱", - "Models": "型號列表", - "Modification History": "異動歷程", - "Modifying your own administrative permissions may result in losing access to certain system functions.": "修改自身管理權限可能導致失去對部分系統功能的控制權。", - "Monitor and manage stock levels across your fleet": "監控並管理所有機台的庫存水位", - "Monitor events and system activity across your vending fleet.": "跨機台連線動態與系統日誌監控。", - "Monitor warehouse stock summary": "監控倉庫庫存摘要", - "Monthly cumulative revenue overview": "本月累計營收概況", - "Monthly Transactions": "本月交易統計", - "Motor not stopped": "電機未停止", - "Movement History": "異動紀錄", - "Movement Logs": "異動紀錄", - "Multilingual Names": "多語系名稱", - "N/A": "不適用", - "Name": "名稱", - "Name in English": "英文名稱", - "Name in Japanese": "日文名稱", - "Name in Traditional Chinese": "繁體中文名稱", - "Needs replenishment": "需要補貨", - "Never Connected": "從未連線", - "New Command": "新增指令", - "New Machine Name": "新機台名稱", - "New Password": "新密碼", - "New Password (leave blank to keep current)": "新密碼 (若不修改請留空)", - "New Record": "新增單據", - "New Replenishment": "新增補貨單", - "New Role": "新角色", - "New Stock-In Order": "新增進貨單", - "New Sub Account Role": "新增子帳號角色", - "New Transfer": "新增調撥單", - "Next": "下一頁", - "No accounts found": "找不到帳號資料", - "No active cargo lanes found": "未找到活動貨道", - "No additional notes": "無額外備註", - "No address information": "暫無地址資訊", - "No advertisements found.": "未找到廣告素材。", - "No alert summary": "暫無告警記錄", - "No assignments": "尚未投放", - "No categories found.": "找不到分類。", - "No command history": "尚無指令紀錄", - "No Company": "系統", - "No configurations found": "暫無相關配置", - "No content provided": "未提供內容", - "No customers found": "找不到客戶資料", - "No data available": "暫無資料", - "No file uploaded.": "未上傳任何檔案。", - "No heartbeat for over 30 seconds": "超過 30 秒未收到心跳", - "No history records": "尚無歷史紀錄", - "No images uploaded": "尚未上傳照片", - "No Invoice": "不開立發票", - "No Location": "無位置資訊", - "No location set": "尚未設定位置", - "No login history yet": "尚無登入紀錄", - "No logs found": "暫無相關日誌", - "No Machine Selected": "尚未選擇機台", - "No machines assigned": "未分配機台", - "No machines available": "目前沒有可供分配的機台", - "No machines available in this company.": "此客戶目前沒有可供分配的機台。", - "No machines found": "未找到機台", - "No maintenance records found": "找不到維修紀錄", - "No matching logs found": "找不到符合條件的日誌", - "No matching machines": "查無匹配機台", - "No materials available": "沒有可用的素材", - "No movement records found": "查無異動紀錄", - "No permissions": "無權限項目", - "No products found in this warehouse": "此倉庫目前無商品庫存", - "No products found matching your criteria.": "找不到符合條件的商品。", - "No records found": "未找到相關紀錄", - "No replenishment orders found": "查無補貨單紀錄", - "No results found": "查無搜尋結果", - "No roles available": "目前沒有角色資料。", - "No roles found.": "找不到角色資料。", - "No slot data": "找不到貨道資料", - "No slot data available": "尚無貨道資料", - "No slots found": "未找到貨道資訊", - "No slots need replenishment": "無需補貨的貨道", - "No stock data found": "查無庫存資料", - "No stock-in orders found": "查無進貨單紀錄", - "No transfer orders found": "查無調撥單紀錄", - "No users found": "找不到用戶資料", - "No warehouses found": "未找到倉庫", - "None": "無", - "Normal": "正常", - "Not Used": "不使用", - "Not Used Description": "不使用第三方支付介接", - "Note": "備註", - "Note (optional)": "備註 (選填)", - "Notes": "備註", - "OEE": "OEE", - "OEE Efficiency Trend": "OEE 效率趨勢", - "OEE Score": "OEE 綜合評分", - "OEE.Activity": "營運活動", - "OEE.Errors": "異常", - "OEE.Hours": "小時", - "OEE.Orders": "訂單", - "OEE.Sales": "銷售", "of": "/共", "of items": "筆項目", - "Offline": "離線", - "Offline Machines": "離線機台", - "Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.": "一旦您的帳號被刪除,其所有資源和數據將被永久刪除。在刪除帳號之前,請下載您希望保留的任何數據或資訊。", - "Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.": "帳號一旦刪除,所有關連數據將被永久移除。請輸入您的密碼以確認您希望永久刪除此帳號。", - "One-click replenishment order generation": "一鍵產生補貨單", - "Ongoing": "進行中", - "Online": "線上", - "Online Duration": "累積連線時數", - "Online Machines": "在線機台", - "Online Status": "在線狀態", - "Only system roles can be assigned to platform administrative accounts.": "僅系統角色可指派給平台管理帳號。", - "Operation failed": "操作失敗", - "Operation Note": "操作備註", - "Operation Records": "操作紀錄", - "Operational Parameters": "運作參數", - "Operations": "運作設定", - "Operator": "操作人員", - "Optimal": "良好", - "Optimized for display. Supported formats: JPG, PNG, WebP.": "已針對顯示進行優化。支援格式:JPG, PNG, WebP。", - "Optimized Performance": "效能最佳化", - "Optional": "選填", - "Optional remarks": "選填備註", - "Optional remarks...": "選填備註...", - "Order already completed": "訂單已完成", - "Order already processed": "訂單已處理", - "Order completed and stock updated": "訂單已完成,機台庫存已更新", - "Order Details": "進貨單詳情", - "Order has been cancelled": "訂單已取消", - "Order Info": "單據資訊", - "Order is now in delivery": "訂單配送中", - "Order Management": "訂單管理", - "Order prepared successfully, stock deducted": "訂單已成功備貨,庫存已扣除", - "Order No.": "單號", - "Orders": "購買單", - "Original": "原始", - "Original Type": "原始類型", - "Original:": "原:", - "Other Features": "其他功能", - "Other Permissions": "其他權限", - "Others": "其他功能", - "Out of Stock": "缺貨", - "Out of stock.": "庫存不足。", - "Output Count": "出貨次數", - "Overall Capacity": "總庫存量", - "Owner": "公司名稱", - "Page 0": "離線", - "Page 1": "主頁面", - "Page 2": "販賣頁", - "Page 3": "管理頁", - "Page 4": "補貨頁", - "Page 5": "教學頁", - "Page 6": "購買中", - "Page 60": "出貨成功", - "Page 61": "貨道測試", - "Page 610": "購買結束", - "Page 611": "來店禮", - "Page 612": "出貨失敗", - "Page 62": "付款選擇", - "Page 63": "等待付款", - "Page 64": "出貨", - "Page 65": "收據簽單", - "Page 66": "通行碼", - "Page 67": "取貨碼", - "Page 68": "訊息顯示", - "Page 69": "取消購買", - "Page 7": "鎖定頁", - "Page Lock Status": "頁面鎖定狀態", - "Parameters": "參數設定", - "PARTNER_KEY": "PARTNER_KEY", - "Pass Code": "通行碼", - "Pass Codes": "通行碼", - "Password": "密碼", - "Password updated successfully.": "密碼已成功變更。", - "Payment & Invoice": "金流與發票", - "Payment Buffer Seconds": "金流緩衝時間(s)", - "Payment Config": "金流配置", - "Payment Configuration": "客戶金流設定", - "Payment Configuration created successfully.": "金流設定已成功建立。", - "Payment Configuration deleted successfully.": "金流設定已成功刪除。", - "Payment Configuration updated successfully.": "金流設定已成功更新。", - "Payment Selection": "付款選擇", - "Pending": "待處理", "pending": "等待機台領取", - "Per Page": "每頁顯示", - "Performance": "效能 (Performance)", - "Permanent": "永久", - "Permanently Delete Account": "永久刪除帳號", - "Permission Settings": "權限設定", - "Permissions": "權限", "permissions": "權限設定", - "Permissions updated successfully": "授權更新成功", "permissions.accounts": "帳號管理", "permissions.companies": "客戶管理", "permissions.roles": "角色權限管理", - "Personnel assigned successfully": "人員指派成功", - "Phone": "手機號碼", - "Photo Slot": "照片欄位", - "PI_MERCHANT_ID": "Pi 拍錢包 商店代號", - "Picked up": "領取", - "Picked up Time": "領取時間", - "Machine / Slot": "機台 / 貨道", - "Pickup Code": "取貨碼", - "Pickup code generated: :code": "已生成取貨碼::code", - "Pickup code updated.": "取貨碼已更新", - "Pickup code cancelled.": "取貨碼已取消", - "Pass code created: :code": "通行碼已建立::code", - "Pass code updated.": "通行碼已更新", - "Pass code deleted.": "通行碼已刪除", - "Pickup Codes": "取貨碼", - "Pickup door closed": "取貨門已關閉", - "Pickup door error": "取貨門運作異常", - "Pickup door not closed": "取貨門未關閉", - "Playback Order": "播放順序", - "Please check the following errors:": "請檢查以下錯誤:", - "Please check the form for errors.": "請檢查欄位內容是否正確。", - "Please enter address first": "請先輸入地址", - "Please enter configuration name": "請輸入設定名稱", - "Please select a company": "請選擇公司", - "Please select a machine first": "請先選擇機台", - "Please select a machine model": "請選擇機台型號", - "Please select a machine to view and manage its advertisements.": "請選擇一個機台以查看並管理其廣告。", - "Please select a machine to view metrics": "請選擇機台以查看數據", - "Please select a material": "請選擇素材", - "Please select a slot": "請選擇貨道", - "Please select warehouse and machine": "請選擇倉庫和機台", - "Please Select Slot first": "請先選擇貨道", - "PNG, JPG up to 2MB": "支援 PNG, JPG (最大 2MB)", - "PNG, JPG, WEBP up to 10MB": "支援 PNG, JPG, WEBP 格式,且不超過 10MB", - "Point Rules": "點數規則", - "Point Settings": "點數設定", - "Points": "點數功能", - "Points Rule": "點數規則", - "Points Settings": "點數設定", - "Points toggle": "點數開關", - "POS Reboot": "刷卡重啟", - "Position": "投放位置", - "Prepared": "已備貨", - "Preparing": "備貨中", - "Preview": "預覽", - "Previous": "上一頁", - "Price / Member": "售價 / 會員價", - "Pricing Information": "價格資訊", - "Product": "商品", - "Product / Stock": "商品 / 庫存", - "Product Count": "商品數量", - "Product created successfully": "商品已成功建立", - "Product deleted successfully": "商品已成功刪除", - "Product Details": "商品明細", - "Product empty": "貨道缺貨 (PDT_EMPTY)", - "Product ID": "商品編號", - "Product Image": "商品圖片", - "Product Info": "商品資訊", - "Product List": "商品清單", - "Product Management": "商品管理", - "Product Name (Multilingual)": "商品名稱 (多語系)", - "Product Reports": "商品報表", - "Product Status": "商品狀態", - "Product status updated to :status": "商品狀態已更新為 :status", - "Product updated successfully": "商品已成功更新", - "Production Company": "生產公司", - "Products": "商品", - "Products / Stock": "商品 / 庫存", - "Profile": "個人檔案", - "Profile Information": "個人基本資料", - "Profile Settings": "個人設定", - "Profile updated successfully.": "個人資料已成功更新。", - "Promotions": "促銷時段", - "Protected": "受保護", - "PS_LEVEL": "PS_LEVEL", - "PS_MERCHANT_ID": "全盈+Pay 商店代號", - "Publish": "發布", - "Publish Time": "發布時間", - "Purchase Audit": "採購單", - "Purchase Finished": "購買結束", - "Purchases": "採購單", - "Purchasing": "購買中", - "QR Scan Payment": "掃碼支付功能", - "Qty": "數量", - "Qty Change": "異動數量", - "Quality": "品質 (Quality)", - "Quantity": "數量", - "Questionnaire": "問卷", - "Quick Expiry Check": "效期快速檢查", - "Quick Maintenance": "快速維護", - "Quick Replenish": "快速補貨", - "Quick replenishment from this view": "從此畫面快速補貨", - "Quick search...": "快速搜尋...", - "Quick Select": "快速選取", - "Real-time fleet efficiency and OEE metrics": "全機台即時效率與 OEE 指標", - "Real-time inventory status across all machines with expiry tracking": "即時掌握所有機台庫存狀態與有效期限追蹤", - "Real-time monitoring across all machines": "跨機台即時狀態監控", - "Real-time monitoring and adjustment of cargo lane inventory and expiration dates": "即時監控與調整各機台貨道庫存與效期狀態", - "Real-time OEE analysis awaits": "即時 OEE 分析預備中", - "Real-time Operation Logs (Last 50)": "即時操作日誌 (最後 50 筆)", - "Real-time performance analytics": "即時效能分析", - "Real-time slot-level inventory across all machines": "跨機台的即時貨道庫存追蹤", - "Real-time status monitoring": "即時監控機台連線動態", - "Reason for this command...": "請輸入執行此指令的原因...", - "Receipt Printing": "收據簽單", - "Recent Commands": "最近指令", - "Recent Login": "最近登入", - "Recently reported errors or warnings in logs": "近期日誌中有錯誤或警告回報", - "Records": "筆", - "Regenerate": "重新產生", - "Regenerating the token will disconnect the physical machine until it is updated. Continue?": "重新產生金鑰將導致實體機台暫時失去連線,必須於機台端更新此新金鑰才能恢復。確定繼續嗎?", "remote": "遠端管理", - "Remote Change": "遠端找零", - "Remote Checkout": "遠端結帳", - "Remote Command Center": "遠端指令中心", - "Remote Dispense": "遠端出貨", - "Remote dispense successful for slot :slot": "貨道 :slot 遠端出貨成功", - "Remote Lock": "遠端鎖定", - "Remote Management": "遠端管理", - "Remote Permissions": "遠端管理權限", - "Remote Reboot": "遠端結帳", - "Remote Settlement": "遠端結帳", - "Removal": "撤機", - "Repair": "維修", - "Replenishment": "補貨", - "Replenishment Audit": "補貨單", - "Replenishment Details": "補貨單詳情", - "Replenishment cancelled, stock returned": "補貨取消,庫存退回", - "Replenishment completed": "補貨完成", - "Replenishment history": "補貨歷史紀錄", - "Replenishment Items": "補貨項目", - "Replenishment order confirmed and inventory updated": "補貨單已確認且庫存已更新", - "Replenishment order created": "補貨單已建立", - "Replenishment order created successfully": "補貨單已成功建立", - "Replenishment Orders": "機台補貨單", - "Replenishment Page": "補貨頁", - "Replenishment prepare": "補貨備貨", - "Replenishment Records": "機台補貨紀錄", - "Replenishment Staff": "補貨人員", - "Replenishments": "機台補貨單", - "Reporting Period": "報表區間", "reservation": "預約系統", - "Reservation Members": "預約會員", - "Reservation System": "預約系統", - "Reservations": "預約管理", - "Reset Filters": "重設篩選", - "Reset POS terminal": "重設 POS 終端", - "Resolve Coordinates": "獲取座標", - "Restart entire machine": "重啟整台機台", - "Restock report accepted": "補貨回報已受理", - "Restrict machine UI access": "限制機台介面存取", - "Restrict UI Access": "限制 UI 存取權限", - "Result reported": "結果已回報", - "Retail Price": "零售價", - "Returns": "回庫單", - "Risk": "風險狀態", - "Role": "角色", - "Role created successfully.": "角色已成功建立。", - "Role deleted successfully.": "角色已成功刪除。", - "Role Identification": "角色識別資訊", - "Role Management": "角色權限管理", - "Role Name": "角色名稱", - "Role name already exists in this company.": "該公司已存在相同名稱的角色。", - "Role not found.": "角色不存在。", - "Role Permissions": "角色權限", - "Role Settings": "角色權限", - "Role Type": "角色類型", - "Role updated successfully.": "角色已成功更新。", - "Roles": "角色權限", "roles": "角色權限", - "Roles scoped to specific customer companies.": "適用於各個客戶公司的特定角色。", - "Running": "運行中", - "Running Status": "運行狀態", "s": "秒", - "Safety Stock": "安全庫存", - "Sale Price": "售價", - "Sales": "銷售管理", "sales": "銷售管理", - "Sales Activity": "銷售活動", - "Sales Management": "銷售管理", - "Sales Permissions": "銷售管理權限", - "Sales Records": "銷售紀錄", - "Save Changes": "儲存變更", - "Save Config": "儲存配置", - "Save error:": "儲存錯誤:", - "Save Material": "儲存素材", - "Save Permissions": "儲存權限", - "Save Settings": "儲存設定", - "Saved.": "已儲存", - "Saving...": "儲存中...", - "Scale level and access control": "層級與存取控制", - "Scan Pay": "掃碼支付功能", - "Scan this code to quickly access the maintenance form for this device.": "掃描此 QR Code 即可快速進入此設備的維修單填寫頁面。", - "Schedule": "排程區間", - "Search accounts...": "搜尋帳號...", - "Search by name or S/N...": "搜尋名稱或序號...", - "Search by name...": "搜尋名稱...", - "Search cargo lane": "搜尋貨道編號或商品名稱", - "Search categories...": "搜尋分類...", - "Search Company Title...": "搜尋公司名稱...", - "Search company...": "搜尋公司...", - "Search configurations...": "搜尋設定...", - "Search customers...": "搜尋客戶...", - "Search Machine...": "搜尋機台...", - "Search machines by name or serial...": "搜尋機台名稱或序號...", - "Search machines...": "搜尋機台...", - "Search models...": "搜尋型號...", - "Search order number...": "搜尋單號...", - "Search Product": "搜尋商品", - "Search products...": "搜尋商品名稱...", - "Search roles...": "搜尋角色...", - "Search serial no or name...": "搜尋序號或機台名稱...", - "Search serial or machine...": "搜尋序號或機台名稱...", - "Search serial or name...": "搜尋序號或機台名稱...", - "Search users...": "搜尋用戶...", - "Search warehouses...": "搜尋倉庫...", - "Search...": "搜尋...", - "Searching...": "搜尋中...", - "Seconds": "秒", - "Security & State": "安全性與狀態", - "Security Controls": "安全控制", - "Select a machine to deep dive": "請選擇機台以開始深度分析", - "Select a material to play on this machine": "選擇要在此機台播放的素材", - "Select a team member to handle this replenishment order": "選擇負責此補貨單的團隊成員", - "Select All": "全選", - "Select all slots": "選擇所有貨道", - "Select an asset from the left to start analysis": "選擇左側機台以開始分析數據", - "Select Cargo Lane": "選擇貨道", - "Select Category": "選擇類別", - "Select Company": "選擇公司名稱", - "Select Company (Default: System)": "選擇公司 (預設:系統)", - "Select Date Range": "選擇建立日期區間", - "Select date to sync data": "選擇日期以同步數據", - "Select Machine": "選擇機台", - "Select Machine First": "請先選擇機台", - "Select Machine to view metrics": "請選擇機台以查看指標", - "Select Material": "選擇素材", - "Select Model": "選擇型號", - "Select Owner": "選擇公司名稱", - "Select Personnel": "選擇人員", - "Select Product": "選擇商品", - "Select Slot...": "選擇貨道...", - "Select Target Slot": "選擇目標貨道", - "Select Warehouse": "選擇倉庫", - "Select...": "請選擇...", - "Selected": "已選擇", - "Selected Date": "查詢日期", - "Selection": "已選擇", - "Sent": "機台已接收", "sent": "機台已接收", - "Serial & Version": "序號與版本", - "Serial NO": "機台序號", - "Serial No": "機台序號", - "Serial No.": "序列號", - "Serial Number": "機台序號", - "Service Periods": "服務區間", - "Service Terms": "服務期程", "set": "已設定", - "Settings Saved": "設定已儲存", - "Settings updated successfully.": "設定更新成功。", - "Settlement": "結帳處理", - "Shopping Cart": "購物車", - "Shopping Cart Feature": "購物車功能", - "Shopping Cart Function": "購物車功能", - "Show": "顯示", - "Show material code field in products": "在商品資料中顯示物料編號欄位", - "Show points rules in products": "在商品資料中顯示點數規則相關欄位", - "Showing": "目前顯示", - "Showing :from to :to of :total items": "顯示第 :from 到 :to 項,共 :total 項", - "Sign in to your account": "隨時隨地掌控您的業務。", - "Signed in as": "登入身份", - "Slot": "貨道", - "Slot empty": "貨道空 (SLOT_EMPTY)", - "Slot jammed": "貨道卡貨 (K-PDT)", - "Slot Mechanism (default: Conveyor, check for Spring)": "貨道機制 (預設履帶,勾選為彈簧)", - "Slot motor error (0207)": "貨道電機故障 (0207)", - "Slot motor error (0208)": "貨道電機故障 (0208)", - "Slot motor error (0209)": "貨道電機故障 (0209)", - "Slot No": "貨道編號", - "Slot normal": "貨道正常", - "Slot not closed": "貨道未關閉", - "Slot not found": "找不到指定貨道", - "Slot report synchronized success": "貨道狀態同步成功", - "Slot Status": "貨道效期", - "Slot Test": "貨道測試", - "Slot updated successfully.": "貨道更新成功。", - "Slots": "貨道數", - "Slots need replenishment": "需要補貨的貨道", - "Smallest number plays first.": "數字愈小愈先播放。", - "Smart replenishment suggestions": "智能補貨建議", - "Software": "軟體", - "Software End": "軟體結束", - "Software Service": "軟體服務", - "Software Start": "軟體起始", - "Some fields need attention": "部分欄位需要注意", - "Sort Order": "排序", - "Source": "來源", - "Source Warehouse": "來源倉庫", - "Special Permission": "特殊權限", "special-permission": "特殊權限", - "Specification": "規格", - "Specifications": "規格", - "Spring": "彈簧", - "Spring Channel Limit": "彈簧貨道上限", - "Spring Limit": "彈簧貨道上限", - "Staff Stock": "人員庫存", - "Standby": "待機廣告", "standby": "待機廣告", - "Standby Ad": "待機廣告", - "Start Date": "起始日", - "Start Delivery": "開始配送", - "Statistics": "數據統計", - "Status": "狀態", - "Search by code, machine name or serial...": "搜尋代碼、機台名稱或序號...", - "Product / Slot": "商品 / 貨道", - "Pickup Ticket": "取貨憑證", - "Valid Until": "有效期限至", - "Valid Ticket": "有效憑證", - "Scan to pick up your product": "掃描以領取您的商品", - "Unknown Product": "未知商品", - "Ticket": "憑證", - "QR": "二維碼", - "QR CODE": "二維碼", - "Expires At": "到期時間", - "Copy Link": "複製連結", - "Download Image": "下載圖片", - "Image Downloaded": "圖片已下載", - "Link Copied": "連結已複製", - "Scan this code at the machine or share the link with the customer.": "請在機台掃描此碼,或將連結分享給客戶。", - "Close": "關閉", - "Copy": "複製", - "Select Slot": "選擇貨道", - "Validity Period": "有效期限", - "Max 24 Hours": "最長 24 小時", - "Expected Expiry Date & Time": "預計到期時間", - "Please select a machine": "請選擇機台", - "Status / Temp / Sub / Card / Scan": "狀態 / 溫度 / 下位機 / 刷卡機 / 掃碼機", - "Status Timeline": "狀態時間線", - "Status updated successfully": "狀態更新成功", - "Stock": "庫存", - "Stock & Expiry": "庫存與效期", - "Stock & Expiry Management": "庫存與效期管理", - "Stock & Expiry Overview": "庫存與效期一覽", - "Stock adjustments and damage reports": "庫存調整與報損處理", - "Stock flow history": "庫存流向歷史", - "Stock In": "庫存入庫", - "Stock Level": "庫存量", - "Stock Level > 50%": "庫存高於 50%", - "Stock Levels": "庫存水準", - "Stock Management": "庫存管理單", - "Stock Out": "庫存出庫", - "Stock overview by warehouse": "依倉庫查看庫存概況", - "Stock Quantity": "庫存數量", - "Stock Rate": "庫存率", - "Stock returned to warehouse": "庫存已退回倉庫", - "Stock Update": "同步庫存", - "Stock-In Management": "進貨管理", - "Stock-in order": "入庫單", - "Stock-in order confirmed and inventory updated": "進貨單已確認且庫存已更新", - "Stock-in order created": "入庫單已建立", - "Stock-in order created successfully": "進貨單已成功建立", - "Stock-in order deleted successfully": "進貨單已成功刪除", - "Stock-In Orders": "進貨單管理", - "Stock-In Orders Tab": "進貨單管理", - "Stock:": "庫存:", - "Store Gifts": "來店禮", - "Store ID": "商店代號", - "Store Management": "店家管理", - "StoreID": "商店代號 (StoreID)", - "Sub / Card / Scan": "下位機 / 刷卡機 / 掃碼機", - "Sub Account Management": "子帳號管理", - "Sub Account Roles": "子帳號角色", - "Sub Accounts": "子帳號", - "Sub-actions": "子項目", - "Sub-machine Status Request": "下位機狀態回傳", - "Submit Record": "提交紀錄", - "Success": "執行成功", "success": "成功", - "Super Admin": "超級管理員", "super-admin": "超級管理員", - "Super-admin role cannot be assigned to tenant accounts.": "超級管理員角色無法指派給客戶帳號。", - "Superseded": "已取代", - "Superseded by new adjustment": "此指令已由後面最新的調整所取代", - "Superseded by new command": "此指令已由後面最新的指令所取代", - "Survey Analysis": "問卷分析", - "Syncing": "同步中", - "Syncing Permissions...": "正在同步權限...", - "SYSTEM": "系統層級", - "System": "系統", - "System & Security Control": "系統與安全控制", - "System Default": "系統預設", - "System Default (All Companies)": "系統預設 (所有公司)", - "System Default (Common)": "系統預設 (通用)", - "System Level": "系統層級", - "System Official": "系統層", - "System Reboot": "系統重啟", - "System Role": "系統角色", - "System role name cannot be modified.": "內建系統角色的名稱無法修改。", - "System roles cannot be deleted by tenant administrators.": "客戶管理員無法刪除系統角色。", - "System roles cannot be modified by tenant administrators.": "客戶管理員無法修改系統角色。", - "System Settings": "系統設定", - "System settings updated successfully.": "系統設定更新成功。", - "System super admin accounts cannot be deleted.": "系統超級管理員帳號無法刪除。", - "System super admin accounts cannot be modified via this interface.": "系統超級管理員帳號無法透過此介面修改。", - "Systems Initializing": "系統初始化中", - "Table View": "列表視圖", - "TapPay Integration": "TapPay 支付串接", - "TapPay Integration Settings Description": "喬睿科技支付串接設定", - "Target": "目標", - "Target Machine": "目標機台", - "Target Warehouse": "目標倉庫", - "Tax ID": "統一編號", - "Tax ID (Optional)": "統一編號 (選填)", - "Tax System": "稅務系統", - "Taxation System": "稅務系統", - "Temperature": "溫度", - "Temperature reported: :temp°C": "回報溫度 : :temp°C", - "Temperature updated to :temp°C": "溫度已更新為::temp°C", - "TermID": "終端代號 (TermID)", - "The image is too large. Please upload an image smaller than 1MB.": "圖片檔案太大,請上傳小於 1MB 的圖片。", - "The Super Admin role cannot be deleted.": "超級管理員角色不可刪除。", - "The Super Admin role is immutable.": "超級管理員角色不可修改。", - "The Super Admin role name cannot be modified.": "超級管理員角色的名稱無法修改。", - "This is a system administrator role. Its name is locked to ensure system stability.": "這是系統管理員角色,名稱已鎖定以確保系統穩定性。", - "This role belongs to another company and cannot be assigned.": "此角色屬於其他公司,無法指派。", - "This slot has a pending command. Please wait.": "此貨道已有指令正在執行,請稍後。", - "This slot has a pending update. Please wait for the previous command to complete.": "此貨道已有更新指令在執行中,請等候前一個指令完成。", - "This slot is syncing with the machine. Please wait.": "此貨道正在與機台同步中,請稍候。", - "Time": "時間", - "Time Slots": "時段組合", - "Timer": "計時器", - "Timestamp": "時間戳記", - "To": "目的地", "to": "至", - "To Warehouse": "目標倉庫", - "To:": "終:", - "Today Cumulative Sales": "今日累積銷售", - "Today's Transactions": "今日交易額", - "Total": "總計", - "Total Connected": "總計連線數", - "Total Customers": "客戶總數", - "Total Daily Sales": "本日累計銷量", - "Total Gross Value": "銷售總額", - "Total items": "總計 :count 項", - "Total Logins": "總登入次數", - "Total Machines": "機台總數", - "Total Quantity": "補貨總量", - "Total Selected": "已選擇總數", - "Total Slots": "總貨道數", - "Total Stock": "總庫存", - "Total Warehouses": "倉庫總數", - "Track": "履帶", - "Track Channel Limit": "履帶貨道上限", - "Track device health and maintenance history": "追蹤設備健康與維修歷史", - "Track Limit": "履帶貨道上限", - "Track Limit (Track/Spring)": "貨道上限(履帶/彈簧)", - "Track stock levels, stock-in orders, and movement history": "追蹤庫存水位、進貨單與異動紀錄", - "Track stock-in orders and movement history": "追蹤進貨單據與庫存異動紀錄", - "Traditional Chinese": "繁體中文", - "Transaction processed: :id": "交易處理完成::id", - "Transfer Audit": "調撥單", - "Transfer completed": "調撥完成", - "Transfer Details": "調撥單詳情", - "Transfer In": "轉入", - "Transfer in": "調撥調入", - "Transfer order confirmed and inventory updated": "調撥單已確認且庫存已更新", - "Transfer order created": "調撥單已建立", - "Transfer order created successfully": "調撥單已成功建立", - "Transfer order deleted successfully": "調撥單已成功刪除", - "Transfer order status tracking": "調撥單狀態追蹤", - "Transfer Orders": "調撥單管理", - "Transfer Out": "調撥轉出", - "Transfer out": "調撥調出", - "Transfer Type": "調撥類型", - "Transfers": "調撥單", - "Trigger": "執行", - "Trigger Dispense": "觸發出貨", - "Trigger Remote Dispense": "觸發遠端出貨", - "Tutorial Page": "教學頁", - "Type": "類型", - "Type to search or leave blank for system defaults.": "輸入關鍵字搜尋,或留空以使用系統預設。", - "UI Elements": "UI元素", - "Unassigned": "未指派", - "Unassigned / No Change": "未指派 / 不變動", - "Unauthorized login attempt: :account": "越權登入嘗試::account", - "Unauthorized Status": "未授權", - "Unauthorized: Account not authorized for this machine": "授權失敗:此帳號無存取該機台的權限", - "Unauthorized: Account not found": "授權失敗:找不到帳號", - "Uncategorized": "未分類", - "Unified Operational Timeline": "整合式營運時序圖", - "Units": "台", - "Unknown": "未知", - "Unknown error": "未知的錯誤", - "Unlimited": "無限期", - "Unlock": "解鎖", - "Unlock Now": "立即解鎖", - "Unlock Page": "頁面解鎖", - "Unpublish": "下架", - "Update": "更新", - "Update Authorization": "更新授權", - "Update Customer": "更新客戶", - "Update existing role and permissions.": "更新現有角色與權限設定。", - "Update failed": "更新失敗", - "Update identification for your asset": "更新您的資產識別名稱", - "Update Password": "更改密碼", - "Update Product": "更新商品", - "Update Settings": "更新設定", - "Update your account's profile information and email address.": "更新您的帳號名稱、手機號碼與電子郵件地址。", - "Upload Image": "上傳圖片", - "Upload New Images": "上傳新照片", - "Upload Video": "上傳影片", - "Uploading new images will replace all existing images.": "上傳新照片將會取代所有現有照片。", - "User": "一般用戶", "user": "一般用戶", - "User Info": "用戶資訊", - "User logged in: :name": "使用者登入::name", - "Username": "使用者帳號", - "Users": "帳號數", - "Utilization Rate": "機台稼動率", - "Utilization Timeline": "稼動時序", - "Utilization, OEE and Operational Intelligence": "稼動率、OEE 與營運情報", - "Utilized Time": "稼動持續時間", - "Expiry Time": "到期時間", - "Validation Error": "驗證錯誤", - "Vending": "販賣頁", "vending": "販賣頁", - "Vending Page": "販賣頁", - "Venue Management": "場地管理", - "Used": "已使用", - "Video": "影片", "video": "影片", - "View all warehouses": "查看所有倉庫", - "View Details": "查看細單", - "View Full History": "查看完整歷程", - "View Inventory": "查看庫存", - "View Logs": "查看日誌", - "View More": "查看更多", - "View slot-level inventory for each machine": "查看各機台貨道庫存", - "View Slots": "查看貨道", - "Visit Gift": "來店禮", "visit_gift": "來店禮", - "Visual overview of all machine locations": "所有機台位置的視覺化概覽", "vs Yesterday": "較昨日", - "Waiting": "等待中", - "Waiting for Payment": "等待付款", - "Warehouse": "倉庫", - "Warehouse :status successfully": "倉庫已:status", - "Warehouse created successfully": "倉庫建立成功", - "Warehouse created successfully.": "倉庫已成功建立。", - "Warehouse deleted successfully": "倉庫已刪除", - "Warehouse deleted successfully.": "倉庫已成功刪除。", - "Warehouse Info": "倉庫資訊", - "Warehouse Inventory": "倉庫商品詳情", - "Warehouse List": "倉庫清單", - "Warehouse List (All)": "倉庫列表(全)", - "Warehouse List (Individual)": "倉庫列表(個)", - "Warehouse Management": "倉儲管理", - "Warehouse Name": "倉庫名稱", - "Warehouse Overview": "倉庫總覽", - "Warehouse Permissions": "倉庫管理權限", - "Warehouse purchase records": "倉庫採購進貨紀錄", - "Warehouse stock insufficient": "倉庫庫存不足", - "Warehouse stock insufficient warning": "倉庫庫存不足以補滿所有貨道,但仍可建立補貨單", - "Warehouse to Warehouse": "倉庫對倉庫", - "Warehouse to warehouse transfers": "倉庫對倉庫調撥", - "Warehouse Transfer": "倉庫調撥", - "Warehouse Type": "倉庫類型", - "Warehouse updated successfully": "倉庫更新成功", - "Warehouse updated successfully.": "倉庫已成功更新。", "warehouses": "倉庫管理", - "Warning": "即將過期", - "Warning: You are editing your own role!": "警告:您正在編輯目前使用的角色!", - "Warranty": "保固", - "Warranty End": "保固結束", - "Warranty Service": "保固服務", - "Warranty Start": "保固起始", - "Welcome Gift": "來店禮", - "Welcome Gift Feature": "迎賓禮功能", - "Welcome Gift Function": "迎賓禮功能", - "Welcome Gift Status": "來店禮", - "Yesterday": "昨日", - "You cannot assign permissions you do not possess.": "您無法指派您自身不具備的權限。", - "You cannot delete your own account.": "您無法刪除自己的帳號。", - "Your email address is unverified.": "您的電子郵件地址尚未驗證。", - "Your recent account activity": "最近的帳號活動", - "待填寫": "待填寫", - "Stock / Capacity": "庫存/上限", - "Warehouse Stock": "倉庫數量", - "Recalculate": "重新計算", - "Work Content": "作業內容", - "Product Name": "商品名稱", - "Replenish": "補貨", - "Total Stock Volume": "總庫存量", - "Manage your company's sub-accounts and role permissions": "管理您公司的子帳號與角色權限", - "Tenant": "客戶", - "Permission Tags": "權限標籤", - "All Permissions": "全部權限", - "Description / Name": "描述 / 名稱", - "Pass Code (8 Digits)": "通行碼 (8 位數)", - "Validity Period (Days)": "有效期限 (天)", - "Leave empty for permanent code": "留空表示永久有效", - "Permanent": "永久有效", - "Add Pickup Code": "新增取貨碼", - "Add Pass Code": "新增通行碼", - "Scan QR Code": "掃描 QR Code", - "View QR Code": "查看 QR Code", - "Expected Expiry": "預計過期時間", - "Max :max hours": "最多 :max 小時", - "Cancel Pickup Code": "取消取貨碼", - "Are you sure you want to cancel this pickup code? This action cannot be undone.": "確定要取消此取貨碼嗎?此操作無法復原。", - "Yes, Cancel": "確認取消", - "Delete Pass Code": "刪除通行碼", - "Are you sure you want to delete this pass code?": "確定要刪除此通行碼嗎?", - "Yes, Delete": "確認刪除", - "You can assign or change the personnel handling this order": "您可以指派或變更處理此訂單的人員" -} + "待填寫": "待填寫" +} \ No newline at end of file diff --git a/resources/views/admin/basic-settings/machines/index.blade.php b/resources/views/admin/basic-settings/machines/index.blade.php index 1a1b7f2..8a9deaa 100644 --- a/resources/views/admin/basic-settings/machines/index.blade.php +++ b/resources/views/admin/basic-settings/machines/index.blade.php @@ -375,271 +375,307 @@ } }" @execute-regenerate.window="executeRegeneration($event.detail)"> - - -
-
-
-

{{ __('Machine Settings') }}

- - - +
+
+ -

{{ __('Management of operational parameters and models') }}

+

+ {{ __('Management of operational parameters and models') }}

-
- - -
-
- - - - -
+ + + + + + -
- -
-
-
-
-
- - - -
-
-

{{ __('Loading Data') }}...

-
+
+ -
+
@@ -669,395 +705,403 @@
- + - - - - + + - + - -