-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathen.json
More file actions
3565 lines (3565 loc) · 196 KB
/
en.json
File metadata and controls
3565 lines (3565 loc) · 196 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "../i18n.schema.json",
"activeAgent": {
"ActiveAgents": "Active Agents",
"ActiveAgentsTooltip": "Shows an at-a-glance overview of all agents currently running in the system."
},
"adminDeploymentPreset": {
"AddPresetValue": "Add Preset Value",
"AddResourceOpt": "Add Resource Option",
"AddResourceSlot": "Add Resource Slot",
"BootstrapScript": "Bootstrap Script",
"BootstrapScriptPlaceholder": "Enter bootstrap script to run before startup.",
"Cluster": "Cluster",
"ClusterMode": "Cluster Mode",
"ClusterModeRequired": "Cluster mode is required",
"ClusterSize": "Cluster Size",
"ClusterSizePlaceholder": "e.g., 2",
"ClusterSizeRequired": "Cluster size is required",
"ConfirmDelete": "Are you sure you want to delete the deployment preset \"{{name}}\"?",
"CreatePreset": "Create Preset",
"DeletePreset": "Delete Preset",
"Description": "Description",
"DescriptionPlaceholder": "Describe the purpose of this deployment preset.",
"EditPreset": "Edit Preset",
"EnvironmentVariables": "Environment Variables",
"Image": "Image",
"ImageRequired": "Image is required.",
"ModelDefinition": "Model Definition",
"ModelDefinitionInvalidJson": "Model definition must be valid JSON.",
"ModelDefinitionPlaceholder": "Enter JSON model definition.",
"MultiNode": "Multi-Node",
"Name": "Name",
"NamePlaceholder": "e.g., vLLM-GPU-Large",
"NameRequired": "Name is required.",
"NotSupported": "Deployment preset management is not supported by the current backend version.",
"OpenToPublic": "Open to Public",
"OpenToPublicTooltip": "Default value for whether the endpoint of deployments created from this preset is reachable without an access token.",
"OptNamePlaceholder": "e.g., cuda_visible_devices",
"OptValuePlaceholder": "e.g., 0",
"PresetCreated": "Deployment preset has been created.",
"PresetDeleted": "Deployment preset has been deleted.",
"PresetUpdated": "Deployment preset has been updated.",
"PresetValues": "Preset Values",
"Rank": "Rank",
"RankTooltip": "Display ordering among presets of the same runtime. Lower values appear first.",
"Replicas": "Replica Count",
"ReplicasPlaceholder": "e.g., 2",
"ReplicasTooltip": "Default replica count applied when a deployment is created from this preset.",
"ResourceOpts": "Resource Options",
"ResourceSlots": "Resource Slots",
"RevisionHistoryLimit": "Revision History Limit",
"RevisionHistoryLimitPlaceholder": "e.g., 10",
"RevisionHistoryLimitTooltip": "Number of past revisions kept for each deployment created from this preset. Older revisions are pruned automatically.",
"Runtime": "Runtime",
"RuntimeRequired": "Runtime is required.",
"RuntimeVariantId": "Runtime ID",
"SectionAdvanced": "Advanced",
"SectionBasicInfo": "Basic Info",
"SectionCluster": "Cluster",
"SectionDeploymentDefaults": "Deployment Defaults",
"SectionExecution": "Execution",
"SectionImage": "Image",
"SectionResources": "Resources",
"SelectClusterMode": "Select cluster mode",
"SelectImage": "Select container image",
"SelectRuntimeVariant": "Select runtime",
"SelectStrategy": "Select strategy",
"Shmem": "Shared Memory",
"SingleNode": "Single-Node",
"StartupCommand": "Startup Command",
"StartupCommandPlaceholder": "Enter the startup command for the inference server.",
"Strategy": "Deployment Strategy",
"TabTitle": "Deployment Presets",
"modelDef": {
"Action": "Action",
"ActionPlaceholder": "e.g., wait_for_file",
"AddModel": "Add Model",
"AddPreStartAction": "Add Pre-Start Action",
"Architecture": "Architecture",
"Args": "Args (JSON)",
"Author": "Author",
"Category": "Category",
"CommaSeparated": "Comma-separated",
"Description": "Description",
"EnableHealthCheck": "Enable Health Check",
"EnableMetadata": "Add Metadata",
"EnableService": "Configure Service",
"Framework": "Framework",
"FrameworkPlaceholder": "e.g., PyTorch, TensorFlow",
"HealthCheckExpectedStatus": "Expected Status",
"HealthCheckInitialDelay": "Initial Delay (s)",
"HealthCheckInterval": "Interval (s)",
"HealthCheckMaxRetries": "Max Retries",
"HealthCheckMaxWaitTime": "Max Wait Time (s)",
"HealthCheckPath": "Path",
"Label": "Label",
"LabelPlaceholder": "e.g., nlp, vision",
"License": "License",
"Model": "Model",
"ModelName": "Model Name",
"ModelNamePlaceholder": "e.g., my-model",
"ModelPath": "Model Path",
"ModelPathPlaceholder": "e.g., /models/my-model",
"Port": "Port",
"PreStartActions": "Pre-Start Actions",
"Shell": "Shell",
"StartCommand": "Start Command",
"StartCommandPlaceholder": "e.g., python server.py",
"Task": "Task",
"Title": "Title",
"Version": "Version"
},
"nav": {
"SkipToReview": "Skip to Review"
},
"step": {
"BasicInfo": "Basic Info",
"Deployment": "Deployment",
"ModelAndExecution": "Model & Execution",
"Resources": "Resources",
"Review": "Review"
}
},
"adminModelCard": {
"AccessLevel": "Access Level",
"AccessLevelRequired": "Access Level is required.",
"AccessLevelTooltip": "Controls who can see this model. Public models are visible to all users, Private models are only visible within the project.",
"AccessLevelUpdated": "Access level has been updated.",
"AddFramework": "Add framework",
"AddLabel": "Add label",
"AlsoDeleteModelFolder": "Also delete the associated model folder",
"AlsoDeleteModelFolderCascadeWarning": "Deleting the associated model folder will also delete every model card that uses it.",
"AlsoDeleteModelFolderTooltip": "The model folder will be moved to trash. You can permanently delete it from Data > Trash.",
"AlsoDeleteModelFolders": "Also delete the associated model folders",
"AlsoDeleteModelFoldersCascadeWarning": "Deleting the associated model folders will also delete every model card that uses them.",
"Architecture": "Architecture",
"ArchitectureTooltip": "The model architecture (e.g., Transformer, CNN, RNN).",
"Author": "Author",
"AuthorTooltip": "The creator or maintainer of the model.",
"BulkDeleteCompleted": "{{count}} model card(s) have been deleted.",
"BulkDeleteModelCards": "Delete Model Cards",
"BulkDeleteModelCardsAndFoldersCompleted": "{{count}} model card(s) and their folders have been moved to trash.",
"BulkDeletePartiallyCompleted": "{{successCount}} model card(s) deleted. {{failureCount}} failed to delete.",
"Category": "Category",
"CategoryPlaceholder": "e.g., LLM",
"CategoryTooltip": "The category of the model (e.g., LLM, Vision, Audio).",
"ConfirmBulkDelete": "Are you sure you want to delete {{count}} selected model card(s)?",
"ConfirmDelete": "Are you sure you want to delete the model card \"{{name}}\"?",
"CreateModelCard": "Create Model Card",
"DeleteModelCard": "Delete Model Card",
"DeleteSelected": "Delete Selected ({{count}})",
"Description": "Description",
"DescriptionTooltip": "A brief summary of the model and its capabilities.",
"Domain": "Domain",
"EditModelCard": "Edit Model Card",
"EnterProjectId": "Enter project ID",
"Framework": "Framework",
"FrameworkTooltip": "Frameworks used by the model (e.g., PyTorch, TensorFlow). Press Enter to add.",
"GoToTrash": "Go to Data > Trash",
"Label": "Label",
"LabelTooltip": "Custom tags for categorizing and filtering models. Press Enter to add.",
"License": "License",
"LicenseTooltip": "The license under which the model is distributed (e.g., MIT, Apache-2.0).",
"ModelCardAndFolderDeleted": "Model card and its associated folder have been moved to trash.",
"ModelCardCreated": "Model card has been created.",
"ModelCardDeleted": "Model card has been deleted.",
"ModelCardDeletedFolderKept": "Model card has been deleted. The model folder was not deleted.",
"ModelCardUpdated": "Model card has been updated.",
"ModelCards": "Model Cards",
"ModelStorageFolder": "Model Storage Folder",
"ModelStoreManagement": "Model Store Management",
"ModelVersion": "Model Version",
"ModelVersionTooltip": "Version string of the model (e.g., 1.0, v2.1).",
"Name": "Name",
"NameRequired": "Name is required.",
"NameTooltip": "Unique identifier for the model card. Used for API references.",
"Private": "Private",
"Project": "Project",
"ProjectId": "Project ID",
"ProjectIdRequired": "Project ID is required.",
"Public": "Public",
"Readme": "README.md",
"ReadmeTooltip": "Detailed documentation in Markdown format. Displayed in the model store detail view.",
"Scan": "Scan",
"ScanCompleted": "Scan completed: {{created}} created, {{updated}} updated.",
"ScanProjectModelCards": "Scan Project Model Cards",
"Task": "Task",
"TaskPlaceholder": "e.g., text-generation",
"TaskTooltip": "The type of task the model is designed for (e.g., text-generation, image-classification).",
"Title": "Title",
"TitleTooltip": "A human-readable display name for the model card.",
"UniqueConstraintViolation": "A model card with this name already exists in the same domain and project.",
"VFolder": "VFolder",
"VFolderRequired": "VFolder is required."
},
"adminSession": {
"PendingSessions": "Pending Sessions",
"PendingSessionsScopedToResourceGroup": "Showing pending sessions for the selected resource group only. Switch resource groups to view sessions in other groups."
},
"agent": {
"AcceleratorAllocations": "Accelerator Allocations",
"Agent": "Agent",
"AgentInfo": "Agent Info",
"AgentSetting": "Agent Settings",
"AgentSettingUpdated": "Agent Setting Updated.",
"Allocation": "Allocation",
"Architecture": "Architecture",
"AutoRefreshEvery5s": "Auto refresh every 5s",
"BackendType": "Backend Type",
"Capabilities": "Capabilities",
"ComputePlugins": "Compute Plugins",
"Connected": "Connected",
"DetailedInformation": "Detailed Information",
"DiskPerc": "Disk %",
"ElapsedTime": "Elapsed Time",
"Endpoint": "Endpoint",
"Maintaining": "Maintaining",
"NoAgentToDisplay": "No Agents to display",
"NoAvailableLiveStat": "No available live stat",
"NoChanges": "No changes.",
"NoNetworkSignal": "No network signals.",
"Region": "Region",
"ResourceAllocation": "Resource Allocation",
"ResourceGroup": "Resource Group",
"Resources": "Resources",
"Running": "Running",
"Schedulable": "Schedulable",
"Settings": "Settings",
"Starts": "Starts",
"StartsAt": "Started At",
"Status": "Status",
"StatusChanged": "Changed",
"Terminated": "Terminated",
"Utilization": "Utilization"
},
"agentStats": {
"AgentStats": "Agent Statistics",
"AgentStatsDescription": "This panel shows all used resources across all agents in the system. The values represent the total used resources by all active sessions.",
"UsedResources": "Used Resources"
},
"aiAgent": {
"ApiKey": "API Key",
"ApiKeyPlaceholder": "Enter API key",
"BackendAIEndpoint": "Backend.AI Endpoint",
"BuiltinReadonlyDescription": "Built-in agents come from the public catalog and cannot be modified in place. Use \"Save as Copy\" to create an editable custom copy.",
"BuiltinReadonlyTitle": "Built-in agent (read-only)",
"Connection": "Connection",
"ConnectionType": "Connection Type",
"ContextCompressionThreshold": "Context Compression Threshold",
"CreateAgent": "Create AI Agent",
"Custom": "Custom",
"DefaultTimeoutSeconds": "Default Timeout (seconds)",
"DeleteAgent": "Delete Agent",
"DeleteConfirmTitle": "Delete this agent?",
"Description": "Description",
"DisabledTools": "Disabled Tools",
"EditAgent": "Edit AI Agent",
"Edited": "Edited",
"EnabledTools": "Enabled Tools",
"EndpointId": "Endpoint ID",
"EndpointName": "Endpoint Name",
"EndpointUrl": "Endpoint URL",
"EndpointUrlRequired": "Endpoint URL is required for external connections",
"ExternalEndpoint": "External Endpoint",
"Icon": "Icon",
"Instructions": "Instructions",
"InstructionsTooltip": "Standing instructions applied to every task in addition to the system prompt.",
"InvalidUrl": "Please enter a valid URL",
"MaxIterations": "Max Iterations",
"MaxToolCalls": "Max Tool Calls",
"MinContextWindow": "Min Context Window (tokens)",
"ModelPreferences": "Model Preferences",
"Name": "Name",
"NameRequired": "Name is required",
"NoToolPermissions": "No per-tool permission overrides.",
"NotConfigured": "Not configured",
"PreferredModelId": "Preferred Model ID",
"PreferredModelIdPlaceholder": "e.g. gpt-4o, claude-3-opus",
"PreferredModelIdTooltip": "Optional model identifier paired with this agent. Used as the default model in chat.",
"RequiresToolCalling": "Requires Tool Calling",
"RequiresVision": "Requires Vision",
"ResetConfirmTitle": "Reset this agent?",
"ResetToDefault": "Reset to Default",
"SaveAsCopy": "Save as Copy",
"SaveFailed": "Failed to save the agent. Please try again.",
"SettingsOverrides": "Settings Overrides",
"SystemPrompt": "System Prompt",
"SystemPromptRequired": "System prompt is required",
"SystemPromptTooltip": "The system prompt defines the behavior and capabilities of the agent.",
"Tags": "Tags",
"ToolCallingComingSoonDescription": "Tool calling is not yet supported in the chat UI. These fields are read-only and shown for reference; they will become editable in a future release.",
"ToolCallingComingSoonTitle": "Tool calling — coming soon",
"ToolConfig": "Tool Configuration",
"ToolPermissionOverrides": "Tool Permission Overrides"
},
"autoScalingRule": {
"AddAutoScalingRule": "Add Auto Scaling Rule",
"Comparator": "Comparator",
"Condition": "Condition",
"ConditionTooltip": "Set the threshold range of the selected metric value that triggers auto-scaling.",
"CoolDownSeconds": "Cooldown Sec.",
"CoolDownSecondsValue": "{{value}}s",
"CoolDownTooltip": "The cooldown period in seconds after a scaling event before the next scaling action can occur.",
"CreatedAt": "Created At",
"CurrentValue": "Current value",
"EditAutoScalingRule": "Edit Auto Scaling Rule",
"LastTriggered": "Last Triggered",
"LastTriggeredTooltip": "The most recent time this rule fired and adjusted the replica count. Empty if the rule has never triggered.",
"Lower": "Lower",
"MIN/MAXReplicas": "Min / MAX Replicas",
"MaxReplicas": "Max Replicas",
"MaxReplicasTooltip": "The maximum number of replicas that auto-scaling allows.",
"MaxReplicasValue": "Max: {{value}}",
"MaxThreshold": "Max Threshold",
"MaxThresholdRequired": "Max threshold is required.",
"Metric": "Metric",
"MetricName": "Metric Name",
"MetricNamePrometheusPreset": "Metric Name (Prometheus Preset)",
"MetricNameTooltip": "Name of the metric to monitor. For Kernel, use built-in resource metrics (cpu_util, mem, net_rx, net_tx). For Prometheus, the metric name is filled in automatically from the selected preset.",
"MetricSource": "Metric Source",
"MetricSourceInferenceFramework": "Inference Framework",
"MetricSourceKernel": "Kernel",
"MetricSourcePrometheus": "Prometheus",
"MetricSourceTooltip": "Where the metric value is collected from. Kernel uses container-level resource usage, and Prometheus runs a query against the configured Prometheus instance.",
"MinMaxReplicasTooltip": "The lower and upper bounds enforced by this rule. Auto-scaling will not reduce replicas below Min or grow them beyond Max.",
"MinMustBeLessThanMax": "Min threshold must be less than max threshold.",
"MinReplicas": "Min Replicas",
"MinReplicasTooltip": "The minimum number of replicas that auto-scaling maintains.",
"MinReplicasValue": "Min: {{value}}",
"MinThreshold": "Min Threshold",
"MinThresholdRequired": "Min threshold is required.",
"MultipleSeriesResult": "{{count}} series found, latest: {{value}}",
"NoDataAvailable": "No data available",
"PrometheusPreset": "Prometheus Preset",
"PrometheusPresetRequired": "Please select a Prometheus preset.",
"PrometheusPresetTooltip": "Pre-defined Prometheus query template. Selecting a preset auto-fills the metric name and may set a default cooldown window.",
"QueryExecutionFailed": "Query execution failed",
"QueryTemplate": "Query Template",
"Range": "Range",
"RefreshCurrentValue": "Refresh current value",
"RefreshPreview": "Refresh preview",
"ScaleIn": "Scale In",
"ScaleInAndOut": "Scale In & Out",
"ScaleOut": "Scale Out",
"ScalingType": "Type",
"Seconds": "s",
"SelectPrometheusPreset": "Select a Prometheus preset",
"Single": "Single",
"StepSize": "Step Size",
"StepSizeTooltip": "The number of replicas to add or remove per scaling event.",
"SuccessfullyCreated": "Auto scaling rule has been successfully created.",
"SuccessfullyDeleted": "Auto scaling rule has been successfully deleted.",
"SuccessfullyUpdated": "Auto scaling rule has been successfully updated.",
"Threshold": "Threshold",
"ThresholdMustBeNonNegative": "Threshold must be a non-negative number.",
"ThresholdRequired": "Threshold is required.",
"Upper": "Upper"
},
"button": {
"Add": "Add",
"Apply": "Apply",
"AutoRefresh": "Auto refresh",
"Cancel": "Cancel",
"ChangeProject": "Change Project",
"Clear": "Clear",
"ClearLogs": "Clear Logs",
"ClickForMoreDetails": "Click for more details",
"Clone": "Clone",
"Close": "Close",
"Collapse": "Collapse",
"Commit": "Commit",
"Config": "Config",
"Confirm": "Confirm",
"CopySomething": "Copy {{name}}",
"Create": "Create",
"Delete": "Delete",
"DeleteAll": "Delete All",
"Discard": "Discard",
"DismissAndProceed": "Dismiss and Proceed",
"DontSave": "Don't Save",
"Download": "Download",
"Edit": "Edit",
"EnterManually": "Enter Manually",
"Expand": "Expand",
"Finish": "Finish",
"ForceTerminate": "Force Terminate",
"Generate": "Generate",
"GoBackToStartPage": "Go back to the {{title}} page",
"Info": "Info",
"More": "More",
"Move": "Move",
"Next": "Next",
"No": "No",
"OK": "OK",
"Okay": "Okay",
"Overwrite": "Overwrite",
"Previous": "Previous",
"PushToImage": "Push session to customized image",
"Refresh": "Refresh",
"RefreshModelInformation": "Refresh Model Information",
"Reset": "Reset",
"Retry": "Retry",
"Save": "Save",
"SaveAndClose": "Save And Close",
"SaveChanges": "Save Changes",
"SaveWithoutClose": "Save Without Close",
"SeeErrorLogs": "See error",
"Settings": "Settings",
"Share": "Share",
"Unset": "Unset",
"Update": "Update",
"Upload": "Upload",
"Yes": "Yes"
},
"chatui": {
"Attachments": "Attachments",
"CannotFindModel": "LLM models not found. Verify the base path and token compatibility with OpenAI, then press 'Refresh Model Information'",
"CompareWithOtherModels": "Compare with other models",
"CreateCompareChat": "Add comparison chat",
"DeleteChatHistory": "Clear Chat",
"DeleteChattingSession": "Delete Chat",
"DeleteChattingSessionDescription": "You are about to delete this topic. Once deleted, it cannot be recovered. Please proceed with caution.",
"DropFileHere": "Drop file here",
"History": "History",
"NewChat": "New Chat",
"SelectEndpoint": "Select Endpoint",
"SelectModel": "Select Model",
"SelectToken": "Select Token",
"SenderPlaceholder": "Type your message here...",
"SyncInput": "Sync chat input",
"Thinking": "Thinking",
"TokenCounterTooltip": "TPS represents the number of tokens processed per second. This value is measured on the client side and includes network latency. Total tokens represent the total number of tokens in the input and chat messages.",
"UploadFiles": "Upload files",
"UploadFilesDescription": "Click or drag files to this area to upload",
"ViewReasoning": "View reasoning",
"chat": {
"parameter": {
"FrequencyPenalty": "Penalizes frequent tokens to reduce repetition",
"MaxTokens": " Limits the number of tokens in the output",
"PresencePenalty": "Penalizes tokens that have already appeared to encourage new topics",
"Temperature": "Controls randomness; lower is more focused, higher is more creative",
"Title": "Parameters",
"TopK": "Samples from the top K most likely tokens",
"TopP": "Samples from tokens whose cumulative probability is within P",
"label": {
"FrequencyPenalty": "Frequency Penalty",
"MaxTokens": "Max Tokens",
"PresencePenalty": "Presence Penalty",
"Temperature": "Temperature",
"TopK": "Top K",
"TopP": "Top P"
}
}
}
},
"credential": {
"2FAEnabled": "2FA Enabled",
"AccessKey": "Access Key",
"AccessKeyOptional": "Access Key (optional)",
"Activate": "Activate",
"ActivateCredential": "Activate credential",
"ActivateUser": "Activate user",
"AddCredential": "Add Credential",
"AdminCanOnlyRemoveTotp": "Only disabling 2FA of other users is possible.",
"Allocation": "Allocation",
"AllowedClientIP": "Allowed client IPs",
"AllowedClientIPHint": "CIDR address (e.g., 10.20.30.40, 10.20.30.0/24)",
"AllowedClientIPPlaceholder": "Enter IP or CIDR (e.g., 10.20.30.40, 10.20.30.0/24)",
"AllowedClientIpNotIncluded": "Your current IP ({{ip}}) is not in the allowed list. Saving this may prevent you from logging in.",
"Association": "Association",
"BeforeVerification": "Before Verification",
"BulkCreateEmailPreview": "Generated email preview",
"BulkCreateUser": "Bulk Create Users",
"BulkCreateUserDescription": "Enter an email prefix and domain. Emails and usernames will be auto-generated by appending zero-padded sequential numbers to the prefix.",
"BulkCreateUserPartialFailure": "{{successCount}} user(s) created. {{failCount}} user(s) failed.",
"BulkCreateUserSuccess": "Successfully created {{count}} user(s).",
"CannotViewAgainWarning": "This information cannot be viewed again after closing this window. Please save it in a safe place.",
"ConcurrentSessions": "Concurrent Sessions",
"ContainerGID": "Container GID",
"ContainerGIDTooltip": "Default numeric group ID assigned to processes inside the container",
"ContainerSupplementaryGIDs": "Supplementary GID",
"ContainerSupplementaryGIDsPlaceholder": "Enter GIDs separated by commas or spaces",
"ContainerSupplementaryGIDsTooltip": "Additional numeric group IDs assigned to container processes",
"ContainerUID": "Container UID",
"ContainerUIDTooltip": "Numeric User ID assigned to processes inside the container",
"Controls": "Controls",
"Create": "Create",
"CreatePolicy": "Create Policy",
"CreateResourcePolicy": "Create Resource Policy",
"CreateUser": "Create User",
"Created": "Created",
"CreatedAt": "Created At",
"Credentials": "Credentials",
"CurrentClientIp": "Current client IP: {{ip}}",
"Days": "Days",
"Deactivate": "Deactivate",
"DeactivateConfirm": "Are you sure you want to deactivate this keypair?",
"DeactivateCredential": "Deactivate credential",
"DeactivateUser": "Deactivate user",
"DeleteCredential": "Delete credential",
"DeleteKeypair": "Delete Keypair",
"DeleteModelServicesAsWell": "Delete created model services as well?",
"DeleteSharedVirtualFolders": "Delete shared virtual folders as well?",
"Deleted": "Deleted",
"DescActiveUser": "Active user?",
"DescRequirePasswordChange": "Password change required",
"Description": "Description",
"Domain": "Domain",
"DownloadCSV": "Download CSV",
"EmailPrefix": "Email prefix (before @)",
"EmailSuffix": "Email suffix (after @)",
"EnableSudoSession": "Enable sudo session",
"ExportCSV": "export CSV",
"ExportCSVFile": "Export CSV File",
"FailedToDeleteUsers": "Failed to permanently delete the user(s): {{users}}",
"FailedToUpdateUsers": "Failed to update users: {{users}}",
"FileName": "File name",
"For900Seconds": "for 900 seconds",
"FullName": "Full Name",
"GeneratedKeypairInfo": "This keypair is used to authenticate API requests. For security, share it only with the newly created user and do not share it with anyone else.",
"GeneratedKeypairSuccess": "An access key and a secret key have been generated for the created user account.",
"GeneratedKeypairWarning": "This keypair will be displayed only once. Copy or download it and store it in a safe place.",
"InactivateTheFollowingUsers": "Inactivate the following users.",
"InactiveIncludeKeypair": "Inactive (include keypair)",
"Information": "Information",
"InvalidIP": "Invalid IP",
"InvalidRateLimitValue": "Input a valid Rate Limit value.",
"IssueNewKeypair": "Issue New Keypair",
"KeyAge": "Key Age",
"KeypairCreated": "Keypair successfully created.",
"KeypairCredentialInfo": "Keypair Credential Information",
"KeypairDeactivated": "Keypair deactivated.",
"KeypairDeleted": "Keypair deleted.",
"KeypairDetail": "Keypair Detail",
"KeypairRestored": "Keypair restored.",
"KeypairStatusUpdatedSuccessfully": "The keypair status has changed.",
"KeypairSuccessfullyDeleted": "KeyPair is successfully deleted.",
"LastUsed": "Last Used",
"MainAccessKey": "Main Access Key",
"MainKeyCannotDeactivate": "Cannot deactivate the main access key. Switch to another key first.",
"MainKeyChanged": "Main access key changed.",
"MainKeyChangedNeedRelogin": "The main access key has been changed. Please log in again to apply the change.",
"Max#": "Max. # of folders",
"ModifiedAt": "Modified At",
"ModifyKeypairResourcePolicy": "Modify keypair resource policy",
"ModifyUserDetail": "Modify User Detail",
"MyKeypairManagement": "My Keypair Management",
"Name": "Name",
"NewCredentialCreated": "Keypair for new users",
"NoActiveKeypairs": "No active keypairs.",
"NoChanges": "No changes were made",
"NoCredentialToDisplay": "No Credentials to display",
"NoInactiveKeypairs": "No inactive keypairs.",
"NoUserToDisplay": "No Users to display",
"NumberOfQueries": "Number Of Queries",
"PermanentlyDelete": "Permanently Delete",
"PermanentlyDeleteUsers": "Permanently Delete Users",
"Permission": "Permission",
"PolicyGroup": "Policy Group",
"ProjectAndGroup": "Projects & Groups",
"Projects": "Project",
"PurgeUsersWarningAlertTitle": "User's virtual folders, kernel history, and related keypairs will also be deleted. This action is irreversible.",
"Queries": "Queries",
"RateLimit": "Rate Limit",
"RateLimitFor15min": "Rate Limit (for 15 min.)",
"RateLimitInputRequired": "Input required.",
"RateLimitValidation": "Rate Limit should be greater than zero and below 50000.",
"ReLoginRequired": "Re-Login Required",
"ReqPer15Min": "Req per 15 min",
"ResourcePolicies": "Resource Policies",
"ResourcePolicy": "Resource Policy",
"Restore": "Restore",
"RestoreConfirm": "Are you sure you want to restore this keypair?",
"Role": "Role",
"SSHPublicKey": "SSH Public Key",
"SecretKey": "Secret Key",
"SelectAccessKey": "Select Access Key",
"SelectPolicy": "Select Policy",
"Sessions": "Sessions",
"SetAsMain": "Set as Main",
"SetAsMainConfirm": "Are you sure you want to set this keypair as the main access key?",
"SignoutSuccessfullyFinished": "Signout is seccessfully finished",
"Status": "Status",
"StatusInfo": "Status Info",
"StatusUpdatedSuccessfully": "The user status has changed.",
"TooltipForRequirePasswordChange": "When enabled, the user must change their password at next login.",
"TypePermanentlyDelete": "Please type \"{{text}}\".",
"UpdateUsers": "Update Users",
"UpdateUsersWarningAlertTitle": "Setting UID or GID(s) may restrict the use of previously created folder mounts.",
"UpdatedUsers": "Updated {{count}} out of {{total}} users.",
"UserAccountCreated": "User account is successfully created",
"UserAccountCreatedError": "A user account with the same email or username already exists.",
"UserCount": "Number of users",
"UserDetail": "User Detail",
"UserID": "User ID",
"UserIDAsEmail": "User ID as email",
"UserIDRequired": "User ID is required.",
"UserName": "User Name",
"UserNotFound": "Credential creation failed, since the following user ID could't be found : ",
"UserStatus": "User Status",
"Users": "Users",
"UsersPermanentlyDeleted": "Permanently deleted {{count}} out of {{total}} users.",
"WarningLessRateLimit": "If the Rate Limit value is small, API operations such as login may be blocked.",
"WrongEmail": "Invalid email address",
"validation": {
"MaxUserCount": "Maximum number of users is {{count}}.",
"PleaseEnterPositiveAndUnder2_31": "Please enter a positive value less than 2^31",
"PleaseEnterPositiveInteger": "Please enter a positive value.",
"PleaseEnterUniqueNumbers": "Enter a unique number.",
"PleaseEnterValidNumber": "Please enter a valid number.",
"PleaseSelectDomain": "Please select domain first."
}
},
"dashboard": {
"Free": "Free",
"Used": "Used"
},
"data": {
"Active": "Active",
"Add": "Add",
"All": "All",
"AllowsLettersNumbersAnd-_Dot": "Only letters (A–Z, a–z), numbers, '-', '_', and '.' are allowed.",
"AutoMount": "Auto Mount",
"AutomountFolderCreationDesc": "Auto-mount folders are automatically mounted when a session starts.",
"AutomountFolderNameMustStartWithDot": "The name of the auto-mount folder must start with a dot ('.').",
"AutomountFolders": "Automount Folders",
"BelongsToDifferentProject": "This folder belongs to a different project.",
"CloningIsOnlyPossibleSameHost": "Currently, cloning is only possible on the same host.",
"Create": "Create",
"CreateANewStorageFolder": "Create a new storage folder",
"CreateFolder": "Create Folder",
"CreateFolderAndUploadFiles": "Create Folder and Upload Files",
"Created": "Created",
"CreatedFolders": "Created Folders",
"Deleted": "Deleted",
"DialogDataFolder": "Pipeline dedicated folders that are automatically created when creating pipelines in FastTrack.",
"DialogFolderStartingWithDotAutomount": "Folders starting with a .(dot) are automatically mounted when a new session is started.",
"DialogModelFolder": "You can serve and manage models.",
"DotPrefixReservedForAutomount": "Folders starting with '.' are reserved for auto-mount usage.",
"EnterDifferentValue": "Please enter a value different from the existing file or folder name. Please Check whether space character in the input field or not.",
"ExistingFolderName": "Existing folder name",
"FileAndFolderNameRequired": "File/Folder name is required",
"FolderAlreadyExists": "A folder with this name already exists",
"FolderInfo": "Forder Info",
"FolderNameRequired": "Folder name is required",
"FolderNameTooLong": "Enter folder name less than 64 characters",
"FolderStatus": "Folder Status",
"FolderToCopy": "Folder to copy",
"Foldername": "Folder name",
"Folders": "Folders",
"From": "From",
"General": "General",
"Host": "Host",
"HostDetails": "Displays quota information for the selected storage host.",
"InvalidEmail": "Invalid email address",
"Invited": "Invited",
"InvitedFolders": "Invited Folders",
"InvitedFoldersTooltip": "Click to check pending {{count}} invitation(s)",
"Limit": "Limit",
"ModelStore": "Model Store",
"Models": "Models",
"MyFolders": "My Folders",
"New": "New",
"NewFolder": "New Folder",
"NewFolderName": "New folder name",
"NoStorageDescriptionFound": "No description.",
"NotInProject": "This folder belongs to '{{ projectName }}' project.",
"NumberOfFolders": "Number of folders",
"Permission": "Permission",
"Pipeline": "Pipeline",
"Project": "Project",
"ProjectFolder": "Project Folder",
"ProjectFolders": "Project Folders",
"QuotaPerStorageVolume": "Quota per storage volume",
"QuotaScopeId": "Quota Scope ID",
"ReadOnly": "Read only",
"ReadWrite": "Read & Write",
"SearchByName": "Search by name",
"SelectStorageHost": "Select storage host",
"SharedFolderPermission": "Shared Folder Permission",
"Type": "Type",
"Update": "Update",
"UsageMode": "Usage Mode",
"Used": "Used",
"User": "User",
"UserQuotaScopeId": "Quota Scope ID",
"explorer": {
"Actions": "Actions",
"Allowed": "Allowed",
"ClickFilebrowserButton": "To upload Folder(s), Please click Execute filebrowser button.",
"CreateANewFolder": "Create a new folder",
"Created": "Created",
"Delete": "Delete",
"DoYouWantToOverwrite": "Do you want to overwrite?",
"DownloadFile": "Download File",
"DownloadNotAllowed": "Downloading file/folder is not allowed in this folder.",
"EditFile": "Edit File",
"EditFileUnsavedChangesDescription": "Your changes will be lost if you don't save them.",
"EditFileUnsavedChangesTitle": "Do you want to save the changes you made to {{fileName}}?",
"EmptyFilesAndFoldersAreNotUploaded": "Empty files and empty folders are not uploaded",
"EnterEmailAddress": "Enter email address",
"ExecuteFileBrowser": "Execute filebrowser",
"ExecutingFileBrowser": "Executing filebrowser...",
"FailedToLoadFile": "Failed to load file",
"FailedToLoadFileDescription": "The file contents cannot be loaded. Please confirm that this is the correct file and try again.",
"FileAlreadyExists": "The file about to be uploaded already exists.",
"FileExtensionChanged": "Would you like to change the file extension?",
"FileUploadSizeLimit": "File size exceeds upload size limit.",
"Filename": "File name",
"FolderAlreadyExists": "The folder about to be uploaded already exists.",
"Foldername": "Folder name",
"InviteeEmail": "Invitee email",
"KeepFileExtension": "Keep ",
"LessThan10Sec": "Less than 10 seconds",
"MoreThanADay": "More than a day",
"Name": "Name",
"NewFileName": "New file name",
"NewFolder": "New Folder",
"NoAccessPermissionToVolume": "Current Project does not have access to SFTP volume.",
"NoImagesSupportingFileBrowser": "There is no image supporting filebrowser yet. At least one or more image that supports filebrowser is required to upload folder(s).",
"NoImagesSupportingSystemSession": "There is no image supporting SSH / SFTP yet. At least one or more image that supports system role images to use SSH / SFTP.",
"NoPermissionToMountFolder": "The current project does not have mount permissions for the storage host associated with this folder.",
"NoSFTPSupportingScalingGroup": "This folder’s storage host has no SFTP resource group.",
"NoSharedFolders": "No shared folders",
"NoSharedUsers": "No one has been invited",
"NotEnoughResourceForFileBrowserSession": "No enough resources(cpu: 1 Core, mem: 0.5GB) to create the session for filebrowser. please check the available resources.",
"NumberOfSFTPSessionsExceededBody": "You are running all available upload sessions you are allowed to create. Please terminated unused upload sessions before starting a new session.",
"NumberOfSFTPSessionsExceededTitle": "Reached limit of running upload session count",
"People": "People",
"Permission": "Permission",
"Permissions": "Permissions",
"ReadOnlyFolderOnFileBrowser": "Opening read-only folder in filebrowser, only downloading file(s)/folder(s) are allowed.",
"ReadonlyFolder": "Read-only Folder",
"RemoveFileExtension": "Remove ",
"RenameAFile": "Rename File",
"RenameAFolder": "Rename Folder",
"RetryingOperation": "Retrying to establish session...",
"RunSSH/SFTPserver": "Run SFTP server",
"SFTPSessionNotAvailable": "SFTP Session is not available now",
"ShareFolder": "Share Folder",
"Size": "Size",
"StartingSSH/SFTPSession": "Starting SFTP session...",
"StopUploading": "Stop Uploading",
"TouchToDownload": "Touch to Download file",
"UploadFiles": "Upload Files",
"UploadFolder": "Upload Folder",
"UseNewFileExtension": "Use ",
"ValueRequired": "Value is required",
"ValueShouldBeStarted": "Path should start with .(dot) or letters, numbers only.",
"WritePermissionRequiredInUploadFiles": "Write permission is required in uploading file(s)."
},
"folders": {
"AdminDataPageAlert": "Only project-owned folders can be created on the Admin Data Page.",
"CannotDeleteFolder": "Cannot delete folder mounted in one or more sessions. Please terminate the session first.",
"CannotDeletePipelineFolder": "You can't delete pipeline folders.",
"CannotRestorePipelineFolder": "You can't restore pipeline folders.",
"ChangeTheVFolderTypeToCreateAutoMountFolder": "Unable to create the auto-mount folder as a project folder.",
"CloneAFolder": "Clone folder",
"CloneFolder": "Clone folder",
"Cloneable": "Cloneable",
"Control": "Controls",
"CreateModelFolderOnlyInExclusiveProject": "Model project folders can only be created in model-store–exclusive projects.",
"CreatedAt": "Created At",
"Delete": "Delete",
"DeleteAFolder": "Delete folder",
"DeleteForever": "Delete forever",
"DeleteForeverConfirmText": "delete",
"DeleteForeverDescription": "The folder \"{{ folderName }}\" will be permanently deleted and cannot be restored.",
"DeleteForeverMultipleDescription": "{{ folderLength }} folders will be permanently deleted and cannot be restored.",
"DescYouAreFolderOwner": "You are the owner of this folder.",
"DownloadingModel": "Downloading Model...",
"Edit": "Edit",
"EditDelete": "Edit+Delete",
"ExcludedFolders": "The following folder(s) without delete permission will be excluded.",
"FailedToDeleteFolders": "Failed to delete folders: {{folderNames}}",
"FileDeleted": "File deleted",
"FileRenamed": "File renamed",
"FolderCloneFailed": "Failed to clone the folder.",
"FolderClonePending": "Cloning the folder is in progress.",
"FolderCloned": "Folder cloned",
"FolderCreated": "Folder created",
"FolderCreationFailed": "Failed to create folder.",
"FolderDeleted": "The {{ folderName }} folder has been deleted.",
"FolderDeletedForever": "Permanently deleted the {{ folderName }} folder.",
"FolderDisconnected": "Folder disconnected.",
"FolderInfo": "Info",
"FolderNameMismatched": "Folder name mismatched. Please Check whether space character in the input field or not.",
"FolderOptionUpdate": "Update folder option",
"FolderQuota": "Capacity",
"FolderRenamed": "Folder renamed",
"FolderRestored": "The {{ folderName }} folder has been restored.",
"FolderUpdated": "Folder option(s) updated",
"FolderUsage": "Folder usage",
"FolderUsing": "Using",
"InviteUsers": "Invite User",
"KickOut": "Stop sharing",
"KickOutConfirm": "Stop sharing with {{email}}?",
"Leave": "Leave",
"LeaveAFolder": "Leave folder",
"LeaveFolder": "Leave folder",
"Location": "Location",
"ManageProjectFolderInAdmin": "Project folder management is available in admin settings.",
"MaxFolderQuota": "Max Folder Quota",
"MaxSize": "Max Size",
"ModelProjectFolderRestrictedToReadOnly": "'Read & Write' permission is not supported for model store folder",
"ModifyPermissions": "Modify permissions",
"MountPermission": "Mount Permission",
"MountedSessions": "Mounted Sessions",
"MoveToTrash": "Move to trash bin",
"MoveToTrashDescription": "Are you sure you want to move \"{{ folderName }}\" to trash bin?",
"MoveToTrashMultipleDescription": "Are you sure you want to move {{ folderLength }} folders to trash bin?",
"MoveToTrashRestoreHint": "Moved folders can be restored later.",
"MovedToTrashBin": "Moved the {{ folderName }} folder to the trash bin.",
"MultipleFilesDeleted": "Multiple Files deleted",
"MultipleFolderDeleted": "Deleted {{count}} folders out of {{total}}",
"MultipleFolderDeletedForever": "Permanently deleted {{count}} folders out of {{total}}.",
"MultipleFolderRestored": "Selected {{ folderLength }} folders has been restored.",
"Name": "Name",
"NoDeletePermission": "No delete permission",
"NoFolderToDisplay": "No Folders to display",
"NoRestorePermission": "No restore permission",
"NumberOfFiles": "Number of files",
"OpenAFolder": "Open folder",
"Owner": "Owner",
"Ownership": "Ownership",
"Path": "Path",
"Permission": "Permission",
"ProjectAdminDataPageAlert": "Only project-owned folders can be created on the Project Admin Data page.",
"ProjectFolderAlertDesc": "This folder is shared with all members of the project",
"ProjectFolderCreationHelp": "A folder accessible by \"{{projectName}}\" project users will be created.",
"Rename": "Rename",
"Restore": "Restore",
"RestoreDescription": "Do you want to restore \"{{ folderName }}\" folder?",
"RestoreMultipleDescription": "Do you want to restore {{ folderLength }} folders?",
"SameFileName": "The input value is same as the filename to update. Please change it to a different name.",
"SelectPermission": "Select permission",
"Serve": "Model serving",
"ShareFolder": "Share folder",
"SharedFolderAlertDesc": "This is an externally shared folder.",
"SharedUser": "Shared Users",
"SharedUserDesc": "Only users who accepted the invitation are displayed on the list.\n\nUsers who are still inviting are not displayed.",
"Status": "Status",
"TrashBin": "Trash",
"Type": "Type",
"TypeFolderNameToDelete": "Type folder name to delete",
"TypeFolderNameToLeave": "Type folder name to leave",
"TypeNewFolderName": "Type new folder name",
"TypeToConfirmDeleteForever": "Type the word below to permanently delete",
"View": "View"
},
"invitation": {
"FailedToAcceptInvitation": "Failed to accept invitation",
"FailedToDeclineInvitation": "Failed to decline invitation",
"FolderSharingNotAvailableToUser": "Folder sharing is not available for requested user(s): ",
"InvitationError": "Invitation failed. User may already be invited.",
"Invited": "Successfully invited",
"LeaveSharedFolder": "Leave the shared folder",
"LeaveSharedFolderDesc": "Do you want to leave the shared folder ‘{{folderName}}’?",
"NoMoreInvitation": "There are no invitations to review.",
"NoOneWasInvited": "No one invited since invitation already exists",
"NoOneWasShared": "Failed to share the group folder",
"NoValidEmails": "No valid emails were entered",
"PendingInvitations": "Pending invitations",
"Shared": "Successfully shared the group folder",
"SharingError": "Sharing failed. User may already be shared or does not belong to appropriate project.",
"SuccessfullyAcceptedInvitation": "Successfully accepted invitation",
"SuccessfullyDeclinedInvitation": "Successfully declined invitation",
"SuccessfullyLeftSharedFolder": "Successfully left the shared folder",
"UserIsAlreadyInvited": "{{email}} is already invited"
},
"modelStore": {
"AddedItems": "Added items",
"Author": "Author",
"ChangeTheCurrentProjectToModelStore": "Change the current project to 'model-store'.",
"CheckHuggingFaceUrl": "Check",
"HuggingFaceUrlPlaceholder": "Input Hugging Face URL",
"Import": "Import",
"ImportAndStartService": "Import & Start Service",
"ImportAndStartServiceSucceeded": "The model has been successfully imported and the service was executed",
"ImportAndStartServiceSuccessDesc": "The new model folder and service are ready. Click the 'View service info' button to check the model details and start the desired operation.",
"ImportFromHuggingFace": "Import from Hugging Face",
"ImportOnly": "Import only",
"ImportOnlySuccessDesc": "The new model folder is ready. Start the service now and try the operation you want.",
"ImportSucceeded": "The model has been successfully imported",
"InferenceEngineVersion": "Inference Engine Version",
"InvalidHuggingFaceUrl": "Invalid Hugging Face URL.",
"ModelFolderName": "Model folder name",
"ModelName": "Model name",
"ModelStoreFolderName": "Model store folder name",
"NewModelFolderHasBeenCreated": "A new model folder has been created",
"NewModelStoreFolderHasBeenCreated": "A new model store folder has been created",
"NewServiceHasBeenCreated": "A new service has been created",
"NotSupportedModel": "The model is not supported. Please use the LLM model.",
"OpenModelFolder": "Open model folder",
"ReplicaNumber": "Replica Number",
"ServiceName": "Service name",
"StartService": "Start Service",
"StartWithHuggingFaceUrl": "It should start with https://huggingface.co",
"ViewServiceInfo": "View service info"
},
"permission": {
"FailedToModifyPermission": "Failed to modify permission.",
"NoChanges": "No changes made",
"PermissionModified": "Permission updated"
},
"usage": {
"Adequate": "Adequate",
"Caution": "Caution",
"HostStatusTooltip": "Host usage status: {{status}}",
"Insufficient": "Insufficient",
"Status": "Status",
"StatusOfSelectedHost": "Status Of Selected Host",
"Unknown": "Unknown",
"Used": "used"
}
},
"deployment": {
"AccessToken": "Access Token",
"AccessTokens": "Access Tokens",
"ActivePool": "Active Pool",
"ActivePoolDescription": "Replicas currently receiving traffic through AppProxy.",
"ActivenessStatus": "Activeness Status",
"AddRevision": "Add Revision",
"AdditionalMounts": "Additional Mounts",
"AnotherDeploymentInProgress": "Another deployment update is already in progress. Please wait for it to complete before trying again.",
"Apply": "Apply",
"ApplyConfirm": "Are you sure you want to apply revision #{{revisionNumber}}? The current revision will be replaced.",
"ApplyDisabled": "Cannot select the current revision or one that is being applied.",
"ApplySuccess": "Apply of revision #{{revisionNumber}} has been requested.",
"Applying": "Applying",
"ApplyingRevision": "Applying revision {{revisionNumber}}.",
"ApplyingRevisionDetail": "Applying Revision Detail",
"AutoApply": "Apply immediately after adding",
"AutoScaling": "Auto-scaling",
"AutoScalingRules": "Auto-scaling Rules",
"BasicInformation": "Basic Information",
"ClusterMode": "Cluster Mode",
"ClusterModeTooltip": "Clustering layout for the replica's compute session, formatted as \"mode / size\". Single means one container; Multi-node distributes the workload across multiple agents.",
"ClusterSize": "Cluster Size",
"Command": "Command",
"Configuration": "Configuration",
"ConfigurationSummary": "Configuration Summary",
"ConfirmDeleteDeployment": "Are you sure you want to delete the deployment \"{{name}}\"?",
"CopyEndpointUrl": "Copy endpoint URL",
"CreateDeployment": "Create Deployment",
"CreatedAt": "Created At",
"CreatedBy": "Created By",
"Current": "Current",
"CurrentRevision": "Current Revision",
"CurrentRevisionAvailableDescription": "Load its configuration to use it as a starting point for the new revision.",
"CustomMode": "Advanced Mode",
"DeleteDeployment": "Delete Deployment",
"Deployment": "Deployment",
"DeploymentCreated": "Deployment has been created.",
"DeploymentDeleted": "Deployment has been deleted.",
"DeploymentDetail": "Deployment Detail",
"DeploymentId": "Deployment ID",
"DeploymentName": "Deployment Name",
"DeploymentNameTooltip": "A unique name for this deployment. Used to identify it across the dashboard, API, and the endpoint URL.",
"DeploymentReady": "Deployment is ready",
"DeploymentUpdated": "Deployment has been updated.",
"Deployments": "Deployments",
"DesiredReplicas": "Desired Replicas",
"DesiredReplicasRequired": "Desired replicas is required.",
"DesiredReplicasTooltip": "Number of replicas to keep running for this deployment. The system scales the active pool toward this target.",
"Domain": "Domain",
"EditConfiguration": "Edit Configuration",
"EditDeployment": "Edit Deployment",
"EditModeBanner": "Saving will create a new Revision. The previous Revision will be preserved.",
"EndpointUrl": "Endpoint URL",
"Environ": "Environment Variables",
"ExtraMounts": "Additional Mounts",
"FailedToCreateDeployment": "Failed to create deployment.",
"FailedToDeleteDeployment": "Failed to delete deployment.",
"FailedToRollback": "Failed to rollback to the selected revision.",
"FailedToUpdateDeployment": "Failed to update deployment.",
"GoToDetailPage": "View Deployment Details",
"HealthStatus": "Health Status",
"HealthStatusTooltip": "Result of the most recent health check. Indicates whether the replica is currently passing its readiness probe.",
"HealthySummary": "{{healthy}} / {{total}} Healthy",
"Image": "Image",
"LegacyRouteRedirected": "The endpoint URL has moved. You have been redirected to the new Deployments page.",
"LivenessStatus": "Liveness Status",
"LoadCurrentRevision": "Load current revision",
"ManageAccessTokens": "Manage Access Tokens",
"Model": "Model",
"ModelDefinitionPath": "Model Definition File Path",
"ModelFolder": "Model Folder",
"ModelFolderTooltip": "The model folder mounted into each replica. Only folders in MODEL usage mode and READY status are listed.",
"ModelMountDestination": "Mount Destination For Model Folder",
"ModelVersion": "Model Name",
"Name": "Name",
"NamePlaceholder": "Enter a deployment name",
"NameRequired": "Deployment name is required.",
"NewDeployment": "New Deployment",
"NewRevisionWillBeCreated": "A new Revision will be created. The previous Revision will be preserved.",
"NewRevisionWillBeCreatedConfirm": "Saving will create a new Revision. Continue?",
"NoCurrentRevisionDeployed": "No revision is deployed — add a revision to activate this service.",
"NoDeployments": "No deployments found.",
"NoPresetsAvailable": "No deployment preset available",