-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathen.json
More file actions
2043 lines (2032 loc) · 88.2 KB
/
en.json
File metadata and controls
2043 lines (2032 loc) · 88.2 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
{
"pagination": {
"items_per_page": "Items per page"
},
"pages": {
"system_metrics": {
"cpu_usage": "CPU Usage",
"memory_usage": "Memory Usage",
"services": "Services",
"network": "Network"
},
"system_logs": {
"follow_logs": "Follow Logs",
"timestamps": "Timestamps"
},
"coming_soon": "Coming Soon!",
"tournaments": {
"title": "Upcoming Tournaments",
"create": "Create Tournament",
"open_for_registration": "Open for Registration",
"tabs": {
"finished": "Finished Tournaments",
"live": "Live",
"upcoming": "Upcoming",
"no_live_title": "No Live Tournaments",
"no_upcoming_title": "No Upcoming Tournaments",
"no_finished_title": "No Finished Tournaments"
},
"no_finished": "No finished tournaments found."
},
"manage_tournaments": {
"title": "Manage Tournaments",
"description": "View and manage all tournaments across the platform.",
"filters": "Filters",
"reset_filters": "Reset Filters",
"search_by_id": "Search by Tournament ID",
"enter_tournament_id": "Enter tournament ID...",
"search_by_name": "Search by Name",
"enter_tournament_name": "Enter tournament name...",
"filter_by_status": "Filter by Status",
"select_statuses": "Select statuses...",
"clear_all": "Clear All",
"sort_by": "Sort by",
"created_at": "Created Date",
"start": "Start Date",
"newest_first": "Newest First",
"oldest_first": "Oldest First",
"only_my_tournaments": "Only My Organized Tournaments",
"showing": "Showing",
"tournaments": "tournaments",
"loading": "Loading..."
},
"teams": {
"title": "Teams",
"description": "Manage teams and rosters.",
"create": "Create Team",
"no_teams_title": "No Teams Found",
"no_teams": "No teams found.",
"tabs": {
},
"search": "Search..."
},
"settings": {
"account": {
"title": "Account Settings",
"description": "Your Account Details",
"my_account": "My Account",
"api_keys": "API Keys",
"api_keys_management": {
"your_api_keys": "Your API Keys",
"api_keys_description": "API keys allow you to authenticate with the 5Stack API programmatically.",
"add_api_key": "Add API Key",
"create_new_api_key": "Create New API Key",
"create_new_description": "Create a new API key with a descriptive label to identify its purpose.",
"label": "Label",
"label_placeholder": "e.g., My App, Development, Production",
"label_description": "Choose a descriptive name to identify this API key.",
"created": "Created",
"last_used": "Last Used",
"never": "Never",
"actions": "Actions",
"delete_confirmation_title": "Delete API Key",
"delete_confirmation_description": "Are you sure you want to delete the API key \"{label}\"? This action cannot be undone and any applications using this key will lose access.",
"cancel": "Cancel",
"create_api_key": "Create API Key",
"delete_api_key_action": "Delete API Key",
"api_key_deleted": "API Key Deleted",
"api_key_deleted_description": "The API key has been deleted successfully.",
"error_creating": "Error",
"error_creating_description": "Failed to create API key. Please try again.",
"error_deleting": "Error",
"error_deleting_description": "Failed to delete API key. Please try again.",
"copy_key_dialog": {
"title": "API Key Created",
"description": "Your new API key has been created successfully. Please copy it now as it won't be shown again.",
"api_key_label": "API Key",
"copied_button": "I've Copied the Key",
"warning_title": "Important:",
"warning_message": "This is the only time you'll be able to see this API key. Make sure to copy and store it securely."
}
},
"name": "Name",
"avatar_url": "Avatar URL",
"country": "Country",
"select_country": "Select country...",
"search_country": "Search country...",
"no_country_found": "No country found.",
"update": "Update Account",
"matchmaking": "Matchmaking",
"update_success": "Updated Profile",
"discord": {
"unlink": "Unlink Discord",
"link": "Link Discord",
"unlink_dialog": {
"title": "Unlink Discord Account",
"description": "Are you sure you want to unlink your Discord account? This will remove the connection between your 5Stack and Discord accounts.",
"cancel": "Cancel",
"confirm": "Unlink"
},
"unlinked": "Discord account unlinked successfully"
}
},
"notifications": {
"title": "Notifications",
"description": "Configure notification preferences for chat and other events.",
"chat_sound": {
"title": "Chat Sound Notifications",
"description": "Play a sound when receiving new chat messages"
},
"volume": {
"title": "Volume"
},
"test_chat_sound": "Test Chat Sound",
"test_match_found_sound": "Test Match Found Sound",
"test_tick_sound": "Test Tick Sound",
"test_countdown_sound": "Test Countdown Sound"
},
"application": {
"update_success": "Updated",
"db_backups": {
"name": "Name",
"size": "Size",
"created_at": "Created"
},
"telemetry": {
"title": "Telemetry",
"telemetry": "Telemetry",
"telemetry_description": "Help improve 5stack by sharing anonymous usage data.",
"update": "Update Telemetry Settings",
"update_success": "Telemetry settings updated successfully",
"google_tag_manager_code": "Google Tag Manager Code",
"google_tag_manager_code_description": "Google Tag Manager is a tag management system that allows you to manage and deploy tags on your website."
},
"matchmaking": {
"title": "Matchmaking",
"description": "Matchmaking allows players to join a queue and be matched with other players.",
"updated": "Settings updated successfully"
},
"chat": {
"title": "Chat Settings",
"description": "Configure how long chat messages are retained.",
"chat_message_ttl": "Chat Message TTL (seconds)",
"chat_message_ttl_description": "Number of seconds to keep chat messages before they are deleted.",
"updated": "Chat settings updated successfully"
},
"discord": {
"title": "Discord",
"invite_link": "Discord Invite Link",
"webhook": "Discord Webhook",
"webhook_description": "We use this discord webhook to send notifications that require action from a player. Ex. match issues, bugs, etc.",
"support_role": "Discord Support Role ID",
"support_role_description": "These roles will be pinged when used for support actions. You can add multiple Role IDs separated by commas. Get a Role ID from Discord by enabling developer mode, then right-clicking the role and selecting Copy ID.",
"update": "Update",
"updated": "Updated Discord Settings",
"match_notifications": {
"title": "Match Status Notifications",
"description": "Configure Discord notifications for match status changes. These settings control both panel and Discord notifications.",
"webhook": "Match Notifications Webhook URL",
"webhook_description": "Dedicated webhook for match status notifications. Falls back to the support webhook if not set.",
"role_id": "Match Notifications Role ID",
"role_id_description": "These roles will be mentioned in match status notifications. You can add multiple Role IDs separated by commas.",
"statuses_title": "Notify on Status Changes",
"events_title": "Notify on Match Events"
}
},
"game_type_configs": {
"title": "Game Type Configs"
},
"streaming": {
"title": "Streaming",
"minimum_role_to_stream": "Minimum Role Allowed to Connect to TV (Delayed)",
"minimum_role_to_stream_description": "This role will be able to connect to TV.",
"minimum_role_to_spectate": "Minimum Role Allowed to Spectate (No Delay)",
"minimum_role_to_spectate_description": "This role will be able to connect and spectate matches.",
"playcast": "Playcast",
"playcast_description": "Enable Playcast over using TV ports directly. ",
"playcast_learn_more": "Learn more",
"updated": "Updated Streaming Settings"
},
"create_matches_role": "Minimum Role Allowed to Create Matches",
"create_matches_role_description": "This role will be able to create matches.",
"create_tournaments_role": "Minimum Role Allowed to Create Tournaments",
"create_tournaments_role_description": "This role will be able to create tournaments.",
"dedicated_servers_min_role_to_connect": "Minimum Role to Connect to Dedicated Password-Protected Servers",
"dedicated_servers_min_role_to_connect_description": "Only players at or above this role may connect to dedicated servers that require a password.",
"matchmaking_min_role": "Minimum Role Allowed to Join Matchmaking",
"matchmaking_min_role_description": "This role will be able to join matchmaking.",
"max_acceptable_latency": "Maximum Acceptable Latency",
"max_acceptable_latency_description": "This is the maximum latency that a player can have to join a match.",
"lineup_add_without_invite": "Minimum Role to Add Players to Lineup Without Invite",
"lineup_add_without_invite_description": "This role will be able to add players to match lineups without sending an invite first.",
"default_models": "Default Player Models",
"auto_cancel_duration": "Auto Cancel Duration",
"auto_cancel_duration_description": "This is the duration in minutes that a match will be auto canceled if not started within the duration.",
"matchmaking_type_description": "Toggle matchmaking for each type that will allow players to join matchmaking for this type of match.",
"update": "Update",
"players": {
"force_name_registration": "Force Player Name Registration",
"force_name_registration_description": "If forced to have player registration, the player will be required to submit a name that will be used on the platform."
},
"servers": {
"title": "Server Settings",
"enable_cpu_pinning": "Enable CPU Pinning",
"enable_cpu_pinning_description": "Enable CPU pinning on game server nodes for better performance",
"number_of_cpus_per_server": "Number of CPUs per Server",
"number_of_cpus_per_server_description": "Number of CPUs to allocate per server",
"update": "Update",
"update_cpu_pinning": "CPU Pinning updated"
},
"demo_settings": {
"update": "Update",
"title": "Demo Settings",
"min_retention": "Minimum Retention",
"max_storage": "Maximum Storage",
"cloudflare_worker_url": "Cloudflare Worker URL",
"max_storage_description": "The maximum storage size for the demo files in GB.",
"cloudflare_worker_url_description": "The URL of the Cloudflare worker that will be used to store and retrieve the demo files.",
"min_retention_description": "The minimum retention days for the demo files.",
"used_storage": "Approximate Storage Used",
"test_s3_title": "Test S3",
"test_s3_description": "Test the S3 connection and upload a file to the demo bucket.",
"test_upload": "Test Upload",
"test_upload_success": "Test Upload Success",
"test_upload_failed": "Test Upload Failed",
"test_download": "Test Download",
"test_download_failed": "Test Download Failed",
"demo_network_limiter": "Global Demo Network Limiter",
"demo_network_limiter_description": "The global network limiter for the demo files.",
"updated_s3_settings": "Updated S3 Settings"
},
"update_map_pools": {
"title": "Automatic Update Map Pools",
"description": "Automatically add / update map pools when new maps are added or removed from the active duty pool."
}
},
"language": {
"title": "Language",
"description": "Choose your preferred language for the application interface.",
"select": "Select Language",
"search": "Search language..."
},
"matchmaking": {
"title": "Matchmaking Settings",
"description": "Configure your matchmaking preferences and view region latencies.",
"region": "Region",
"average_latency": "Latency",
"preferred": "Preferred",
"max_acceptable_latency": "Maximum Acceptable Latency",
"max_latency_description": "If no regions are preferred, matchmaking will only use regions with latency below this value."
}
},
"watch": {
"title": "Watch",
"description": "Watch matches and tournaments.",
"live_matches": "Live Matches",
"upcoming_matches": "Upcoming Matches",
"finished_matches": "Finished Matches"
},
"regions": {
"title": "Regions",
"description": "Regions allow you to group game servers by geographic location. Players can select preferred regions during matchmaking and veto undesired regions during match setup.",
"create": "Create Region",
"table": {
"name": "Name",
"status": "Status",
"available_servers": "Available Servers / Total Servers",
"description": "Description",
"use_lan_ip": "Use LAN IP",
"use_steam_relay": "Use Steam Relay",
"use_steam_relay_description": "Enable Steam Relay for game servers to hide their IP address from the public.",
"actions": "Actions"
},
"edit": "Edit Region",
"delete": {
"title": "Delete Region",
"description": "Are you sure you want to delete this region? This action cannot be undone.",
"cancel": "Cancel",
"confirm": "Delete"
},
"deleted": "Deleted Region"
},
"players": {
"title": "Players",
"search": "Search Players",
"filter_by_privilege": "Filter by Privilege",
"select_privileges": "Select Privileges",
"filter_by_country": "Filter by Country",
"select_country": "Select country...",
"search_country": "Search country...",
"no_country_found": "No country found.",
"countries_selected": "countries selected",
"elo_min": "Minimum Elo",
"elo_max": "Maximum Elo",
"min_elo": "Min Elo",
"max_elo": "Max Elo",
"only_played_matches": "Only Players Who Have Played Matches",
"played_matches": "Played Matches",
"all_players": "All Players",
"min_sanctions": "Minimum Sanctions",
"is_banned": "Banned",
"is_gagged": "Gagged",
"is_muted": "Muted",
"banned_only": "Banned Only",
"gagged_only": "Gagged Only",
"muted_only": "Muted Only",
"table": {
"player": "Player",
"elo": "Elo",
"last_sign_in_at": "Last Sign In At",
"privilege": "Privilege",
"wins": "Wins",
"losses": "Losses",
"kdr": "KDR",
"no_players": "No players found"
},
"detail": {
"player_stats": "Player Stats",
"kills": "Kills",
"kd": "KD",
"recent_wins_and_losses": "Recent Wins and Losses",
"elo_history": "ELO History",
"no_elo_history": "Play A Match to genreate ELO",
"play_a_match": "Play",
"teams": "Teams",
"matches": "Matches",
"tournaments": "Tournaments",
"no_matches": "No matches yet",
"no_matches_description": "Match history will appear here after playing games.",
"no_tournaments": "No tournaments found for this player.",
"no_tournaments_description": "Tournaments this player has joined will appear here.",
"weapon_kills": "Most Used Weapons",
"no_weapon_kills": "No weapons recorded",
"wins": "Wins",
"losses": "Losses",
"win_rate": "Win Rate"
}
},
"play": {
"open_matches": {
"title": "Open Matches",
"description": "Matches that are open lobbies for anyone to join."
},
"open_registration_tournaments": {
"title": "Open Registration Tournaments",
"description": "Tournaments that are open for registration for anyone to join."
}
},
"matches": {
"create": "Create Match",
"match_updated": "Match Updated",
"create_page": {
"title": "Create Match",
"pick_up_game": "Pick Up Game",
"pick_up_game_description": "A Pick up game does not require selection of teams.",
"team_1": "Team 1",
"search_team": "Search for a Team ...",
"team_2": "Team 2",
"intra_team_scrimmage": "You can select the same team for both slots to create an intra-team scrimmage.",
"create_button": "Create Match",
"update_button": "Update Match"
},
"detail": {
"schedule": "Schedule"
}
},
"toasts": {
"copied_to_clipboard": "Copied to Clipboard"
},
"game_server_nodes": {
"title": "Game Server Nodes",
"description": "Game server nodes expand your server offerings into different regions or provide redundancy for on-demand servers.",
"not_supported": {
"title": "Your Panel currently does not support Game Server Nodes.",
"description": "View the documentation to setup Game Server Nodes."
},
"no_nodes_title": "No Game Server Nodes",
"display_metrics": "Display Metrics",
"filters": "Filters",
"create": "Create Game Server Node",
"installation_script": "Installation Script",
"cs_version_info": "CS2 Version Information:",
"hide_offline": "Hide Offline Nodes",
"only_enabled": "Only Enabled Nodes",
"setup_dialog": {
"title": "Game Server Node Setup",
"description": "Run this installation script on your server to connect it to 5Stack",
"installation_script": "Installation Script",
"game_server_id": "Game Server ID",
"node_status": "Node Status",
"waiting_title": "Waiting for node to connect...",
"waiting_description": "Run the installation script on your server. The status will update automatically when the node connects.",
"new_node": "Game server node successfully connected",
"status_label": "Status",
"region_label": "Region",
"capacity_label": "Capacity",
"capacity_available": "available",
"connected_message": "You can now close this screen.",
"close": "Close"
},
"status": {
"offline": "Offline",
"online": "Online",
"setup": "Setup",
"not_accepting": "Not Accepting New Matches"
},
"table": {
"node": "Node",
"cs_build_id": "CS Build",
"pin_plugin_version": "Plugin Version",
"region": "Region",
"capacity": "Capacity",
"ports": "Ports",
"ports_tooltip": "Forwarded Ports to Node",
"enabled": "Enabled",
"no_nodes": "No Game Server Nodes",
"supports_low_latency": "Supports Low Latency",
"supports_cpu_pinning": "Supports CPU Pinning",
"cpu_governor": "CPU Governor"
},
"build_id": "Build ID: {id}",
"last_updated": "Last Updated: {date}"
},
"dedicated_servers": {
"title": "Dedicated Servers",
"description": "You can set up a dedicated server that will always run the game server mod",
"no_servers_title": "No Dedicated Servers",
"no_servers": "No dedicated servers found.",
"create": {
"title": "Create Dedicated Server"
},
"table": {
"connection_details": "Connection Details",
"label": "Label",
"type": "Type",
"region": "Region",
"plugin_version": "Plugin Version",
"port": "Game Port",
"tv_port": "TV Port",
"enabled": "Enabled",
"yes": "Yes",
"no": "No"
},
"detail": {
"enabled": "Enabled",
"server_plugin_config": "Server Plugin Config",
"hide_config": "Hide Config",
"show_config": "Show Config",
"config_location": "This config should be placed in:",
"edit": "Edit",
"delete": "Delete",
"files": "Files",
"status": {
"disconnected": "Server is disconnected",
"no_rcon": "Server is connected but RCON is not available",
"connected": "Server is connected and RCON is available",
"plugin_version_mismatch": "plugin version is not up to date"
},
"delete_confirm": {
"title": "Are you absolutely sure?",
"description": "This action cannot be undone. This will permanently delete your server and remove associated data from our servers.",
"cancel": "Cancel",
"continue": "Continue"
}
}
},
"public_servers": {
"title": "Public Servers",
"description": "Browse and join public servers",
"table": {
"label": "Label",
"region": "Region",
"map": "Map",
"type": "Type",
"players": "Players",
"connect": "Connect"
},
"no_servers_title": "No Servers Available",
"no_public_servers": "No public servers available at the moment.",
"lan_servers_title": "LAN Servers"
},
"map_pools": {
"title": "Map Pools",
"description": "Manage map pools and available maps for matchmaking.",
"form": {
"name": "Name",
"name_description": "This must match the name of the map in the game that the server recognizes.",
"label": "Label",
"poster": "Poster (optional)",
"poster_placeholder": "http://example.com/poster.png",
"patch": "Patch (optional)",
"patch_placeholder": "http://example.com/patch.png",
"workshop_map_id": "Workshop Map ID (optional)",
"create_map": "Create Map",
"update_map": "Update Map",
"delete_map": "Delete Map",
"delete_confirm": {
"title": "Delete Map",
"description": "Are you sure you want to delete this map? This action cannot be undone.",
"cancel": "Cancel",
"confirm": "Delete"
},
"success": {
"create": "Map created successfully",
"update": "Map updated successfully",
"delete": "Map deleted successfully",
"workshop_refresh": "Workshop map details refreshed successfully"
},
"error": {
"create": "Error creating map",
"update": "Error updating map",
"invalid_workshop": "Invalid workshop map ID. Please verify the ID exists on Steam Workshop.",
"workshop_refresh": "Error refreshing workshop map details"
},
"refresh_workshop": "Refresh Details"
},
"pool": {
"title": "Default {type} Map Pool",
"description": "Manage maps in the {type} pool",
"modify_maps": "Modify maps in the pool"
},
"add_new_map": "Add New Map",
"edit": "Edit",
"maps": "Available Maps",
"active_duty": "Active Duty",
"available_modes": "Available In Modes",
"workshop_id": "Workshop Link",
"search": "Search Maps"
},
"map_pool": {
"toggle_pool_type": "Updated Map Pools",
"toggle_active_pool": "Maps Activity Status Updated",
"save_success": "Map pool saved successfully"
},
"manage_matches": {
"title": "Manage Matches",
"only_my_matches": "Only My Organized Matches",
"description": "View and manage all matches across the platform.",
"no_matches": "No matches found.",
"filters": "Filters",
"reset_filters": "Reset Filters",
"search_by_name": "Search by Name",
"enter_name": "Enter name...",
"search_by_id": "Search by Match ID",
"enter_match_id": "Enter match ID...",
"search_by_team": "Search by Team",
"enter_team_name": "Enter team name...",
"filter_by_status": "Filter by Status",
"select_statuses": "Select statuses...",
"filter_by_regions": "Filter by Regions",
"select_regions": "Select regions...",
"clear_all": "Clear All",
"sort_by": "Sort by",
"created_at": "Created Date",
"started_at": "Started Date",
"scheduled_at": "Scheduled Date",
"ended_at": "Ended Date",
"newest_first": "Newest First",
"oldest_first": "Oldest First",
"showing": "Showing",
"matches": "matches",
"loading": "Loading..."
},
"leaderboard": {
"title": "Leaderboard",
"description": "Top players ranked by performance across different categories.",
"no_results": "No leaderboard data available for the selected filters.",
"categories": {
"elo": "ELO",
"best_kdr": "KDR",
"best_win_rate": "Win Rate",
"highest_hs_pct": "HS%"
},
"time_periods": {
"last_7_days": "Last 7 Days",
"last_30_days": "Last 30 Days",
"all_time": "All Time"
},
"match_types": {
"all": "All Types",
"competitive": "Competitive",
"wingman": "Wingman",
"duel": "Duel"
},
"columns": {
"rank": "#",
"player": "Player",
"matches": "Matches"
},
"col": {
"elo": "ELO",
"elo_change": "ELO Change",
"win_streak": "Win Streak",
"kdr": "K/D Ratio",
"kills": "Kills",
"deaths": "Deaths",
"win_rate": "Win Rate",
"wins": "Wins",
"losses": "Losses",
"hs_pct": "HS%",
"total_kills": "Total Kills"
},
"exclude_tournaments": "Exclude Tournaments"
},
"database": {
"title": "Database Monitoring",
"query_copied": "Query copied to clipboard",
"copy_failed": "Failed to copy to clipboard",
"auto_refresh": {
"play": "Play",
"pause": "Pause",
"interval": "Interval"
},
"filters": {
"schemas": "Filter by Schemas",
"select_schemas": "Select schemas...",
"search_schemas": "Search schemas...",
"no_schemas": "No schemas found",
"schemas_selected": "schemas selected",
"reset": "Reset"
},
"tabs": {
"queries": "Query Performance",
"connections": "Connections",
"locks": "Locks & Transactions",
"io": "I/O & Buffers",
"index_usage": "Index Usage",
"storage": "Storage",
"timescale": "TimescaleDB",
"backups": "Backups"
},
"query_performance": {
"no_stats": "No query statistics found"
},
"connections": {
"no_active_queries": "No active queries",
"no_connections": "No connections found"
},
"locks": {
"no_locks": "No active locks",
"no_table_stats": "No table statistics available"
},
"io": {
"tabs": {
"table_io": "Table I/O",
"index_io": "Index I/O"
},
"table_io_stats": "Table I/O Statistics",
"index_io_stats": "Index I/O Statistics",
"no_table_stats": "No table I/O statistics available",
"no_index_io_stats": "No index I/O statistics available"
},
"index_usage": {
"title": "Index Usage Statistics",
"schema": "Schema",
"table": "Table",
"index": "Index",
"index_scans": "Index Scans",
"tuples_read": "Tuples Read",
"tuples_fetched": "Tuples Fetched",
"index_size": "Index Size",
"table_size": "Table Size",
"size_ratio": "% of Table",
"no_stats": "No index usage statistics available"
},
"storage": {
"overview": "Storage Overview",
"total_database_size": "Total Database Size",
"total_table_size": "Total Table Size",
"total_indexes_size": "Total Index Size",
"reclaimable_space": "Reclaimable Space",
"from_dead_tuples": "From dead tuples",
"table_sizes": "Table Storage Details",
"schema": "Schema",
"table": "Table",
"total_size": "Total Size",
"table_size": "Table Size",
"indexes_size": "Indexes",
"live_tuples": "Live Tuples",
"dead_tuples": "Dead Tuples",
"dead_tuple_size": "Dead Tuple Size",
"no_tables": "No table storage information available"
},
"timescale": {
"no_data_title": "No TimescaleDB Data",
"no_data_description": "TimescaleDB extension is not installed or no hypertables are configured.",
"no_jobs": "No background jobs configured"
},
"backups": {
"no_backups": "No database backups available"
},
"query_detail": {
"title": "Query Details",
"query": "Query",
"copy": "Copy",
"query_copied": "Query copied to clipboard",
"plan_copied": "Execution plan copied to clipboard",
"copy_failed": "Failed to copy to clipboard",
"statistics": "Statistics",
"calls": "Calls",
"avg_time": "Avg Time",
"max_time": "Max Time",
"total_rows": "Total Rows",
"execution_times": "Execution Times (ms)",
"min": "Min",
"mean": "Mean",
"max": "Max",
"std_dev": "Std Dev",
"buffer_stats": "Buffer Statistics",
"shared_blocks_hit": "Shared Blocks Hit",
"shared_blocks_read": "Shared Blocks Read",
"cache_hit_ratio": "Cache Hit Ratio",
"local_blocks_hit": "Local Blocks Hit",
"local_blocks_read": "Local Blocks Read",
"temp_blocks_written": "Temp Blocks Written",
"execution_plan": "Execution Plan",
"no_explain_plan": "EXPLAIN plan could not be generated for this query",
"not_found": "Query details not found"
}
}
},
"custom_match": {
"title": "Custom Match",
"description": "Create and customize your own match. Set rules, choose maps, and invite friends for a personalized gaming experience."
},
"layouts": {
"account_settings": {
"title": "Account Settings",
"description": "Manage your account settings and preferences"
},
"application_settings": {
"title": "Application Settings",
"description": "Settings that effect the application."
},
"system_update": {
"title": "System Update Available",
"description": "The following services have updates:",
"note": "Please note: It will take a few minutes to process and verify the new updates.",
"fix_link": "If a system upgrade persists, you may need to fix your versions",
"cancel": "Cancel",
"update": "Update",
"updating": "System is Updating",
"panel_update": "Your panel is out of date, pull and run the update script"
},
"match_lobby": {
"versus": "VS"
},
"notifications": {
"title": "Notifications",
"delete": "Delete",
"dismiss": "Dismiss",
"dismiss_all": "Dismiss All Notifications",
"delete_all_read": "Delete All Read Notifications",
"no_notifications_title": "No notifications",
"no_notifications": "No notifications at the moment."
},
"app_nav": {
"brand": "5stack",
"navigation": {
"dashboard": "My Stats",
"play": "Play",
"watch": "Watch",
"tournaments": "Tournaments",
"public_servers": "Public Servers",
"players": "Players",
"teams": "Teams",
"leaderboard": "Leaderboard",
"search": "Search"
},
"community": {
"title": "Community"
},
"administration": {
"title": "Administration",
"regions": "Regions",
"servers": "Servers",
"dedicated_servers": "Dedicated Servers",
"game_server_nodes": "Game Server Nodes",
"app_settings": "App Settings",
"map_pools": "Map Pools",
"manage_matches": "Manage Matches",
"manage_tournaments": "Manage Tournaments"
},
"system": {
"title": "System",
"logs": "Logs",
"database": "Database",
"metrics": "Metrics"
},
"profile": {
"my_account": "My Settings",
"logout": "Logout"
},
"footer": {
"report_issue": "Report an Issue",
"join_discord": "Join our Discord"
},
"tooltips": {
"dashboard": "My Stats",
"play": "Play",
"watch": "Watch",
"matches": "Matches",
"tournaments": "Tournaments",
"players": "Players",
"teams": "Teams",
"leaderboard": "Leaderboard",
"public_servers": "Public Servers",
"regions": "Regions",
"servers": "Servers",
"dedicated_servers": "Dedicated Servers",
"game_server_nodes": "Game Server Nodes",
"system_logs": "System Logs",
"database": "Database",
"system_metrics": "System Metrics",
"app_settings": "App Settings",
"report_issue": "Report an Issue",
"join_discord": "Join our Discord",
"map_pools": "Map Pools",
"manage_matches": "Manage Matches",
"manage_tournaments": "Manage Tournaments",
"search_players": "Search Players"
},
"logout_dialog": {
"title": "Logout",
"description": "Are you sure you want to logout?",
"cancel": "Cancel",
"confirm": "Logout"
}
},
"top_nav": {
"home": "My Stats",
"play_menu": "Play",
"community_menu": "Community",
"watch_menu": "Watch",
"login": "Login to Play",
"play": {
"find_match": "Find a Match",
"tournaments": "Tournaments",
"public_servers": "Public Servers",
"hero": {
"title": "Play & Compete",
"subtitle": "Join matches, tournaments."
}
},
"community": {
"watch": {
"title": "Watch",
"subtitle": "Watch matches, tournaments."
},
"players": {
"title": "Players",
"subtitle": "Browse and search for players"
},
"teams": {
"title": "Teams",
"subtitle": "Find and manage teams"
},
"leaderboard": {
"title": "Leaderboard",
"subtitle": "Top players and rankings"
},
"social": {
"title": "Social",
"join_discord": {
"title": "Join our Discord",
"subtitle": "Chat, support, and announcements"
},
"github": {
"title": "5stack.gg",
"subtitle": "View 5stack on GitHub"
}
}
},
"tooltip": {
}
},
"lobby_panel": {
"lobby_invites": "Lobby Invites",
"your_squad": "Your Squad",
"squad_description": "Organize your team, send invites, and prepare for voice / Discord comms.",
"create_lobby_description": "Create a lobby to invite friends and queue together.",
"create_lobby_button": "Create Lobby",
"voice_discord": "Voice & Discord",
"discord_linked": "Discord Linked",
"link_discord": "Link Discord"
},
"chat_panel": {
"default_title": "Chat",
"participants_in_chat": "{count} in chat",
"expand_chat": "Expand chat",
"pop_out_tooltip": "Pop out to window",
"pop_out_button": "Pop out",
"no_chats_title": "No chats yet",
"no_chats_description": "Once you join a chat, it will appear here."
},
"recent_games": {
"title": "Recent Games",
"last_matches": "Last {count} matches",
"performance": "Performance",
"wins_label": "Wins",
"losses_label": "Losses",
"draws_label": "Draws",
"win_rate": "Win Rate",
"most_played_maps": "Most Played Maps",
"no_maps": "Maps will appear here as you play.",
"no_recent_matches_title": "No recent matches",
"no_recent_matches_description": "Once you play some games, they will appear here."
}
},
"pwa": {
"install": {
"title": "Add to Home Screen",
"description": "This website offers app-like features. Add it to your home screen for easy access.",
"step1": "Press the 'Share' button",
"step2": "Select 'Add to Home Screen'",
"tooltip": "Install App",
"button": "Install App"
}
},
"common": {
"manage_custom_plugins_and_shared_files": "These files are moutned to `csgo` directory when the server is started.",
"delete": "Delete",
"cancel": "Cancel",
"save": "Save",
"error": "Error",
"enabled": "Enabled",
"all": "All",
"tbd": "TBD",
"yes": "Yes",
"no": "No",
"boolean": {
"yes": "Yes",
"no": "No"
},
"are_you_sure": "Are you sure you want to run this command?",
"actions": {
"edit": "Edit",
"delete": "Delete"
},
"actions_label": "Actions",
"close": "Close",
"confirm": "Confirm",
"refresh": "Refresh",
"create": "Create",
"rename": "Rename",
"creating": "Creating...",
"saving": "Saving...",
"loading": "Loading...",
"file": "File",
"directory": "Directory",
"undo": "Undo",
"redo": "Redo"
},
"spotlight_search": {
"placeholder": "Search players...",
"searching": "Searching...",
"no_results": "No players found",
"start_typing": "Start typing to search players"
},
"file_manager": {
"location": "Location",
"dedicated_server_files": "Dedicated Server Files",
"game_server_node_files": "Game Server Node Files",
"loading_server_info": "Loading server information...",
"create_directory": {
"title": "Create New Directory",
"description": "Enter a name for the new directory",
"label": "Directory Name",
"placeholder": "my-directory"
},
"create_file": {
"title": "Create New File",
"description": "Enter a name for the new file",
"label": "File Name",
"placeholder": "my-file.txt",
"failed": "Failed to create file"