This repository has been archived by the owner on Oct 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLocSource.xaml
923 lines (898 loc) · 75.3 KB
/
LocSource.xaml
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
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-namespace:System;assembly=mscorlib">
<!--
THIS FILE IS NOT PART OF THE THEME, DO NOT MODIFY!
-->
<sys:String x:Key="LanguageName">English</sys:String>
<sys:String x:Key="LOCLanguageSettingsLabel">Playnite language</sys:String>
<sys:String x:Key="LOCExitAppLabel">Exit</sys:String>
<sys:String x:Key="LOCFilterActiveLabel">Filter Active</sys:String>
<sys:String x:Key="LOCFilterInactiveLabel">Filter Disabled</sys:String>
<sys:String x:Key="LOCAditionalFilters">Additional filters</sys:String>
<sys:String x:Key="LOCFilters">Filters</sys:String>
<sys:String x:Key="LOCFilter">Filter</sys:String>
<sys:String x:Key="LOCInvalidDataTitle">Invalid Data</sys:String>
<sys:String x:Key="LOCSaveChangesAskTitle">Save Changes?</sys:String>
<sys:String x:Key="LOCAboutHomePageLink">Homepage at www.playnite.link</sys:String>
<sys:String x:Key="LOCAboutSourceLink">Source Code at GitHub</sys:String>
<sys:String x:Key="LOCAboutCreateDiagButton">Create diag. package</sys:String>
<sys:String x:Key="LOCAboutSendDiagButton">Send diag. information</sys:String>
<sys:String x:Key="LOCAboutWindowTitle">About Playnite</sys:String>
<sys:String x:Key="LOCAboutAuthor">Made by Josef Němec</sys:String>
<sys:String x:Key="LOCCategoryWindowTitle">Assign Category</sys:String>
<sys:String x:Key="LOCCategorySetButton">Set Categories</sys:String>
<sys:String x:Key="LOCCategoryAddCatButton">Add Category</sys:String>
<sys:String x:Key="LOCCategoryTooltip" xml:space="preserve">Checked - Assign category
Unchecked - Remove category
Indeterminate - No changes (when editing multiple games)</sys:String>
<sys:String x:Key="LOCNoCategory">No Category</sys:String>
<sys:String x:Key="LOCNoPlatform">No Platform</sys:String>
<sys:String x:Key="LOCCrashWindowTitle">Whoops! Something went wrong…</sys:String>
<sys:String x:Key="LOCCrashDescription" xml:space="preserve">An unrecoverable error has occurred.
If you would like to help us fix this issue, please briefly describe the actions taken before the crash, and then send diagnostic information. If you are online, the package will be uploaded to the Playnite server for analysis.
Alternatively, you can click on the 'Report Crash' button to create a new GitHub issue and report the crash manually.
Thank you for your help.</sys:String>
<sys:String x:Key="LOCExtCrashDescription" xml:space="preserve">Extension "{0}" caused an unrecoverable error.
We recommend saving the log file and reporting the issue to extension's developer. If the issue keeps reoccurring, disable the extension.</sys:String>
<sys:String x:Key="LOCExtCrashDescriptionFS" xml:space="preserve">Extension "{0}" caused an unrecoverable error.
We recommend reporting the issue to extension's developer. If the issue keeps reoccurring, disable the extension.</sys:String>
<sys:String x:Key="LOCCrashDescriptionFullscreen" xml:space="preserve">Unrecoverable error occurred.
If you want to help us fix this issue, please send diagnostic information. Thank you.</sys:String>
<sys:String x:Key="LOCCrashDisableExtension">Disable extension</sys:String>
<sys:String x:Key="LOCCrashSaveLog">Save log file</sys:String>
<sys:String x:Key="LOCCrashSendDiag">Send diag. info</sys:String>
<sys:String x:Key="LOCCrashReportIssue">Report Crash</sys:String>
<sys:String x:Key="LOCCrashRestartPlaynite">Restart Playnite</sys:String>
<sys:String x:Key="LOCCrashRestartSafe">Restart in Safe Mode</sys:String>
<sys:String x:Key="LOCCrashRestartSafeTooltip">Disabling all 3rd party extensions and using default theme.</sys:String>
<sys:String x:Key="LOCCrashClosePlaynite">Exit Playnite</sys:String>
<sys:String x:Key="LOCCrashUserActionsDescription">Actions taken before the crash (in English):</sys:String>
<sys:String x:Key="LOCLibraryManager">Library Manager</sys:String>
<sys:String x:Key="LOCGameRemoveAskTitle">Remove Game(s)?</sys:String>
<sys:String x:Key="LOCGameRemoveRunningError">Cannot remove - Game or installer is running. </sys:String>
<sys:String x:Key="LOCGameUninstallRunningError">Cannot uninstall - Game is running.</sys:String>
<sys:String x:Key="LOCGameRemoveAskMessage" xml:space="preserve">Are you sure you want to remove this game?</sys:String>
<sys:String x:Key="LOCGamesRemoveAskMessage" xml:space="preserve">Are you sure you want to remove {0} games?</sys:String>
<sys:String x:Key="LOCGameRemoveAskMessageIgnoreOption" xml:space="preserve">Are you sure you want to remove this game?
Selecting "add to exclusion list" option will prevent game from being imported again next time library is updated.</sys:String>
<sys:String x:Key="LOCGamesRemoveAskMessageIgnoreOption" xml:space="preserve">Are you sure you want to remove {0} games?
Selecting "add to exclusion list" option will prevent games from being imported again next time library is updated.</sys:String>
<sys:String x:Key="LOCRemoveUnusedFieldsAskMessage">Are you sure you want to remove {0} entries that are currently not in use?</sys:String>
<sys:String x:Key="LOCRemoveUnusedFieldsNoUnusedMessage">No unused fields found.</sys:String>
<sys:String x:Key="LOCRemoveAskAddToExlusionListYesResponse">Yes (add to exclusion list)</sys:String>
<sys:String x:Key="LOCSteamFriendsTooltip">Steam Friends</sys:String>
<sys:String x:Key="LOCGameEditChangeNotif">There are unsaved changes in this section</sys:String>
<sys:String x:Key="LOCDBUpgradeProgress">Updating game library format…</sys:String>
<sys:String x:Key="LOCDBUpgradeFail">Database update failed.</sys:String>
<sys:String x:Key="LOCDBUpgradeEmptySpaceFail">Cannot update game library. {0} MBs of free space is required.</sys:String>
<sys:String x:Key="LOCGameError">GameError</sys:String>
<sys:String x:Key="LOCGameStartErrorNoGame">Cannot start game. '{0}' was not found in database.</sys:String>
<sys:String x:Key="LOCGameStartError">Cannot start game: {0}</sys:String>
<sys:String x:Key="LOCGameStartActionError">Cannot start action: {0}</sys:String>
<sys:String x:Key="LOCGameOpenLocationError">Cannot open game location: {0}</sys:String>
<sys:String x:Key="LOCGameShortcutError">Failed to create shortcut: {0}</sys:String>
<sys:String x:Key="LOCManualOpenError">Failed to open manual: {0}</sys:String>
<sys:String x:Key="LOCGameInstallError">Cannot install game: {0}</sys:String>
<sys:String x:Key="LOCGameUninstallError">Cannot un-install game: {0}</sys:String>
<sys:String x:Key="LOCErrorNoPlayAction">Play action is not configured.</sys:String>
<sys:String x:Key="LOCErrorLibraryPluginNotFound">The library plugin responsible for this game is disabled or not installed.</sys:String>
<sys:String x:Key="LOCErrorNoMetadataDownloader">Official metadata download is not available.</sys:String>
<sys:String x:Key="LOCErrorNoGameSelected">No game is selected.</sys:String>
<sys:String x:Key="LOCErrorGameScriptAction">Game's script action execution failed.</sys:String>
<sys:String x:Key="LOCErrorGlobalScriptAction">Global script action execution failed.</sys:String>
<sys:String x:Key="LOCErrorPowerShellNotInstalled">PowerShell 3.0 or newer is not installed.</sys:String>
<!--General-->
<sys:String x:Key="LOCEnabledTitle">Enabled</sys:String>
<sys:String x:Key="LOCRemoveTitle">Remove</sys:String>
<sys:String x:Key="LOCRemoveUnusedTitle">Remove unused</sys:String>
<sys:String x:Key="LOCRenameTitle">Rename</sys:String>
<sys:String x:Key="LOCCopyTitle">Copy</sys:String>
<sys:String x:Key="LOCAddTitle">Add</sys:String>
<sys:String x:Key="LOCDefaultIconTitle">Default Icon</sys:String>
<sys:String x:Key="LOCDefaultCoverTitle">Default Cover Image</sys:String>
<sys:String x:Key="LOCDefaultBackgroundTitle">Default Background Image</sys:String>
<sys:String x:Key="LOCFinishLabel">Finish</sys:String>
<sys:String x:Key="LOCNextLabel">Next</sys:String>
<sys:String x:Key="LOCBackLabel">Back</sys:String>
<sys:String x:Key="LOCDoneCapLabel">DONE</sys:String>
<sys:String x:Key="LOCBackCapLabel">BACK</sys:String>
<sys:String x:Key="LOCClearCapLabel">CLEAR</sys:String>
<sys:String x:Key="LOCClearLabel">Clear</sys:String>
<sys:String x:Key="LOCDismiss">Dismiss</sys:String>
<sys:String x:Key="LOCDismissAll">Dismiss All</sys:String>
<sys:String x:Key="LOCImportLabel">Import</sys:String>
<sys:String x:Key="LOCNameLabel">Name</sys:String>
<sys:String x:Key="LOCAuthorLabel">Author</sys:String>
<sys:String x:Key="LOCModuleLabel">Module</sys:String>
<sys:String x:Key="LOCSeriesLabel">Series</sys:String>
<sys:String x:Key="LOCVersionLabel">Version</sys:String>
<sys:String x:Key="LOCLastPlayedLabel">Last Played</sys:String>
<sys:String x:Key="LOCMostPlayedLabel">Most Played</sys:String>
<sys:String x:Key="LOCPlayCountLabel">Play Count</sys:String>
<sys:String x:Key="LOCNotesLabel">Notes</sys:String>
<sys:String x:Key="LOCAddedLabel">Added</sys:String>
<sys:String x:Key="LOCDateAddedLabel">Date Added</sys:String>
<sys:String x:Key="LOCModifiedLabel">Modified</sys:String>
<sys:String x:Key="LOCDateModifiedLabel">Date Modified</sys:String>
<sys:String x:Key="LOCWebsiteLabel">Website</sys:String>
<sys:String x:Key="LOCPathLabel">Path</sys:String>
<sys:String x:Key="LOCOKLabel">OK</sys:String>
<sys:String x:Key="LOCSaveLabel">Save</sys:String>
<sys:String x:Key="LOCCloseLabel">Close</sys:String>
<sys:String x:Key="LOCCancelLabel">Cancel</sys:String>
<sys:String x:Key="LOCYesLabel">Yes</sys:String>
<sys:String x:Key="LOCNoLabel">No</sys:String>
<sys:String x:Key="LOCWelcomeLabel">Welcome</sys:String>
<sys:String x:Key="LOCLocalUserLabel">Local User</sys:String>
<sys:String x:Key="LOCAuthenticateLabel">Authenticate</sys:String>
<sys:String x:Key="LOCGeneralLabel">General</sys:String>
<sys:String x:Key="LOCMediaLabel">Media</sys:String>
<sys:String x:Key="LOCLinksLabel">Links</sys:String>
<sys:String x:Key="LOCInstallationLabel">Installation</sys:String>
<sys:String x:Key="LOCActionsLabel">Actions</sys:String>
<sys:String x:Key="LOCDownloadingLabel">Downloading…</sys:String>
<sys:String x:Key="LOCDownloadingMediaLabel">Downloading media…</sys:String>
<sys:String x:Key="LOCLoadingLabel">Loading…</sys:String>
<sys:String x:Key="LOCTypeLabel">Type</sys:String>
<sys:String x:Key="LOCProfileLabel">Profile</sys:String>
<sys:String x:Key="LOCProfilesLabel">Profiles</sys:String>
<sys:String x:Key="LOCRemoveLabel">Remove</sys:String>
<sys:String x:Key="LOCDownloadLabel">Download</sys:String>
<sys:String x:Key="LOCSearchLabel">Search</sys:String>
<sys:String x:Key="LOCZoomLabel">Zoom</sys:String>
<sys:String x:Key="LOCListViewLabel">List View</sys:String>
<sys:String x:Key="LOCCoversLabel">Covers</sys:String>
<sys:String x:Key="LOCGridViewLabel">Grid View</sys:String>
<sys:String x:Key="LOCDetailsViewLabel">Details View</sys:String>
<sys:String x:Key="LOCCustomLabel">Custom</sys:String>
<sys:String x:Key="LOCURLLabel">URL</sys:String>
<sys:String x:Key="LOCPatronsLabel">Patrons</sys:String>
<sys:String x:Key="LOCLicenseLabel">License</sys:String>
<sys:String x:Key="LOCContributorsLabel">Contributors</sys:String>
<sys:String x:Key="LOCClosingPlaynite">Exiting Playnite…</sys:String>
<sys:String x:Key="LOCToday">Today</sys:String>
<sys:String x:Key="LOCYesterday">Yesterday</sys:String>
<sys:String x:Key="LOCMonday">Monday</sys:String>
<sys:String x:Key="LOCTuesday">Tuesday</sys:String>
<sys:String x:Key="LOCWednesday">Wednesday</sys:String>
<sys:String x:Key="LOCThursday">Thursday</sys:String>
<sys:String x:Key="LOCFriday">Friday</sys:String>
<sys:String x:Key="LOCSaturday">Saturday</sys:String>
<sys:String x:Key="LOCSunday">Sunday</sys:String>
<sys:String x:Key="LOCPastWeek">Past Week</sys:String>
<sys:String x:Key="LOCPastMonth">Past Month</sys:String>
<sys:String x:Key="LOCPastYear">Past Year</sys:String>
<sys:String x:Key="LOCMoreThenYear">More than a year ago</sys:String>
<sys:String x:Key="LOCImportCompleted">Import completed successfully.</sys:String>
<sys:String x:Key="LOCAllGames">All Games</sys:String>
<sys:String x:Key="LOCGameId">Game Id</sys:String>
<sys:String x:Key="LOCDatabaseId">Database Id</sys:String>
<sys:String x:Key="LOCPresets">Presets</sys:String>
<sys:String x:Key="LOCColumn">Column</sys:String>
<sys:String x:Key="LOCColumns">Columns</sys:String>
<sys:String x:Key="LOCRow">Row</sys:String>
<sys:String x:Key="LOCRows">Rows</sys:String>
<sys:String x:Key="LOCGameVariablesTooltip" xml:space="preserve">Special variables can be used to add a dynamic string:
{InstallDir} - Game installation directory
{InstallDirName} - Installation folder name
{ImagePath} - Game ISO/ROM path if set
{ImageName} - Game ISO/ROM file name
{ImageNameNoExt} - Game ISO/ROM file name without extension
{PlayniteDir} - Playnite installation directory
{Name} - Game name
Example: -image "{ImagePath}" -fullscreen
Results in: -image "c:\folder\image.iso" -fullscreen</sys:String>
<sys:String x:Key="LOCExecIconMissingPlayAction">Cannot get icon if Play action is missing or is set to URL.</sys:String>
<sys:String x:Key="LOCMetaSkipNonEmpty">Only download missing metadata</sys:String>
<sys:String x:Key="LOCMetaSkipNonEmptyTooltip" xml:space="preserve">Enabling this option will skip downloading metadata for data fields that already contain information.</sys:String>
<sys:String x:Key="LOCMetaGamesSourceIntro">Games selection</sys:String>
<sys:String x:Key="LOCMetaGamesSourceDescription">Please select which games should to be updated with new metadata:</sys:String>
<sys:String x:Key="LOCMetaGameSourceAll">All games from database</sys:String>
<sys:String x:Key="LOCMetaGameSourceFiltered">All currently filtered games</sys:String>
<sys:String x:Key="LOCMetaGameSourceSelected">Selected games only</sys:String>
<sys:String x:Key="LOCMetaSourceStore">Official Store</sys:String>
<sys:String x:Key="LOCMetaSourceIGDB">IGDB</sys:String>
<sys:String x:Key="LOCMetaDescriptionFields">Please select which fields should be automatically populated by Playnite and which sources should be used to obtain the data from.</sys:String>
<sys:String x:Key="LOCMetaIgdbContribNotif">Please consider clicking on the logo above and contribute updates to igdb.com database in order to improve data Playnite uses.</sys:String>
<!--Progess string-->
<sys:String x:Key="LOCProgressSteamLibImport">Downloading Steam library updates…</sys:String>
<sys:String x:Key="LOCProgressGOGLibImport">Downloading GOG library updates…</sys:String>
<sys:String x:Key="LOCProgressOriginLibImport">Downloading Origin library updates…</sys:String>
<sys:String x:Key="LOCProgressBattleNetLibImport">Downloading Battle.net library updates…</sys:String>
<sys:String x:Key="LOCProgressMetadata">Downloading metadata…</sys:String>
<sys:String x:Key="LOCProgressInstalledGames">Importing installed games…</sys:String>
<sys:String x:Key="LOCProgressImportinGames">Importing {0} games…</sys:String>
<sys:String x:Key="LOCProgressLibraryGames">Downloading library updates…</sys:String>
<sys:String x:Key="LOCProgressSteamCategoryImport">Downloading library updates…</sys:String>
<sys:String x:Key="LOCProgressLibImportFinish">Library update finished</sys:String>
<sys:String x:Key="LOCProgressReleasingResources">Releasing resources…</sys:String>
<!--Menu-->
<sys:String x:Key="LOCMenuConfigurationTitle">Configuration</sys:String>
<sys:String x:Key="LOCMenuPlayniteSettingsTitle">Settings…</sys:String>
<sys:String x:Key="LOCMenuPlatformEmulatorSettingsTitle">Platforms and Emulators</sys:String>
<sys:String x:Key="LOCMenuConfigureEmulatorsMenuTitle">Configure Emulators…</sys:String>
<sys:String x:Key="LOCMenuLibraryManagerTitle">Library Manager…</sys:String>
<sys:String x:Key="LOCMenuTools">Tools</sys:String>
<sys:String x:Key="LOCMenuDownloadMetadata">Download Metadata…</sys:String>
<sys:String x:Key="LOCMenuSoftwareTools">Software Tools…</sys:String>
<sys:String x:Key="LOCMenuConfigureIntegrations">Configure Integrations…</sys:String>
<sys:String x:Key="LOCMenuOpenClient">Open 3rd Party Client</sys:String>
<sys:String x:Key="LOCMenuClients">3rd Party Clients</sys:String>
<sys:String x:Key="LOCMenuReloadLibrary">Update Game Library</sys:String>
<sys:String x:Key="LOCMenuAddGame">Add Game</sys:String>
<sys:String x:Key="LOCMenuAddGameManual">Manually…</sys:String>
<sys:String x:Key="LOCMenuAddGameInstalled">Scan Automatically…</sys:String>
<sys:String x:Key="LOCMenuAddGameEmulated">Emulated Game…</sys:String>
<sys:String x:Key="LOCMenuAddWindowsStore">Microsoft Store application…</sys:String>
<sys:String x:Key="LOCMenuAbout">About Playnite</sys:String>
<sys:String x:Key="LOCMenuIssues">Send Feedback</sys:String>
<sys:String x:Key="LOCMenuOpenFullscreen">Switch to Fullscreen Mode</sys:String>
<sys:String x:Key="LOCMenuLinksTitle">Links</sys:String>
<sys:String x:Key="LOCMenuHelpTitle">Help</sys:String>
<sys:String x:Key="LOCMenuPatreonSupport">Support on Patreon</sys:String>
<sys:String x:Key="LOCSDKDocumentation">SDK Documentation</sys:String>
<sys:String x:Key="LOCMenuRestartSystem">Restart System</sys:String>
<sys:String x:Key="LOCMenuShutdownSystem">Turn Off System</sys:String>
<sys:String x:Key="LOCMenuSuspendSystem">Suspend System</sys:String>
<sys:String x:Key="LOCMenuHibernateSystem">Hibernate System</sys:String>
<sys:String x:Key="LOCMenuSelectRandomGame">Pick a Random Game</sys:String>
<!--Settings Window-->
<sys:String x:Key="LOCSettingsDetailsPanelItems">Game fields to be displayed on details panel:</sys:String>
<sys:String x:Key="LOCSettingsGridItemSpacing">Item spacing</sys:String>
<sys:String x:Key="LOCSettingsGridItemDrawBackground">Draw grid item background</sys:String>
<sys:String x:Key="LOCSettingsGridItemCoverMargin">Grid item border width</sys:String>
<sys:String x:Key="LOCSettingsDefaulIconSource">Missing game icon source</sys:String>
<sys:String x:Key="LOCSettingsDefaulCoverSource">Missing game cover source</sys:String>
<sys:String x:Key="LOCSettingsDefaulBackgroundSource">Missing game background source</sys:String>
<sys:String x:Key="LOCSettingsIndentGameDetails">Vertical spacing to game details</sys:String>
<sys:String x:Key="LOCSettingsGridViewDetailsPosition">Grid view details position</sys:String>
<sys:String x:Key="LOCSettingsDetailsGameListPosition">Details view game list position</sys:String>
<sys:String x:Key="LOCSettingsDrawPanelSeparators">Draw separator between panels</sys:String>
<sys:String x:Key="LOCSettingsGameDetailsCoverHeight">Game cover image height</sys:String>
<sys:String x:Key="LOCSettingsGameDetailsListIconSize">Game list icon height</sys:String>
<sys:String x:Key="LOCSettingsInterfaceFont">Application font</sys:String>
<sys:String x:Key="LOCSettingsFilterPanelPosition">Filter panel position</sys:String>
<sys:String x:Key="LOCSettingsExplorerPanelPosition">Explorer panel position</sys:String>
<sys:String x:Key="LOCSettingsCoverArtRenderingLabel">Cover art rendering</sys:String>
<sys:String x:Key="LOCSettingsTargetAspectRatioLabel">Target aspect ratio</sys:String>
<sys:String x:Key="LOCSettingsGridTileLayoutFSNote">Following options also affect tile rendering in Fullscreen mode!</sys:String>
<sys:String x:Key="LOCSettingsStrechModeLabel">Stretch mode</sys:String>
<sys:String x:Key="LOCSettingsCovertAspectDVD">DVD Box</sys:String>
<sys:String x:Key="LOCSettingsCovertAspectEpicGamesStore">Epic Games Store</sys:String>
<sys:String x:Key="LOCSettingsCovertAspectGogGalaxy2">GOG Galaxy 2.0</sys:String>
<sys:String x:Key="LOCSettingsCovertAspectIgdb">IGDB</sys:String>
<sys:String x:Key="LOCSettingsCovertAspectSquare">Square</sys:String>
<sys:String x:Key="LOCSettingsCovertAspectSteam">Steam Banner</sys:String>
<sys:String x:Key="LOCSettingsCovertAspectSteamVertical">Steam vertical cover</sys:String>
<sys:String x:Key="LOCSettingsCovertAspectTwitch">Twitch</sys:String>
<sys:String x:Key="LOCSettingsRestartNotification">* Requires restart to apply</sys:String>
<sys:String x:Key="LOCSettingsLabel">Settings</sys:String>
<sys:String x:Key="LOCSettingsGeneralLabel">General</sys:String>
<sys:String x:Key="LOCSettingsAppearanceLabel">Appearance</sys:String>
<sys:String x:Key="LOCSettingsGameDetailsLabel">Game Details</sys:String>
<sys:String x:Key="LOCSettingsLayoutLabel">Layout</sys:String>
<sys:String x:Key="LOCSettingsAdvancedLabel">Advanced</sys:String>
<sys:String x:Key="LOCSettingsFullscreenLabel">Fullscreen</sys:String>
<sys:String x:Key="LOCSettingsProvidersLabel">Providers</sys:String>
<sys:String x:Key="LOCSettingsInputLabel">Input</sys:String>
<sys:String x:Key="LOCSettingsPerformanceLabel">Performance</sys:String>
<sys:String x:Key="LOCSettingsMetadataLabel">Metadata</sys:String>
<sys:String x:Key="LOCSettingsImportLabel">Import changes in library automatically</sys:String>
<sys:String x:Key="LOCSettingsImportInstalledLabel">Import installed games</sys:String>
<sys:String x:Key="LOCSettingsConnectAccount">Connect account</sys:String>
<sys:String x:Key="LOCSettingsImportUninstalledLabel">Import not installed games</sys:String>
<sys:String x:Key="LOCSettingsImportLibraryLabel">Import all games</sys:String>
<sys:String x:Key="LOCSettingsImportSteamLibraryLabel">Import all games (Public account or API key must be provided)</sys:String>
<sys:String x:Key="LOCSettingsInvalidDBLocation">Invalid database file location, proper file path must be set.</sys:String>
<sys:String x:Key="LOCSettingsInvalidAccountName">Account name cannot be empty.</sys:String>
<sys:String x:Key="LOCSettingsInvalidSteamAccountLibImport">No Steam account selected for library import.</sys:String>
<sys:String x:Key="LOCSettingsInvalidSteamAccountCatImport">No Steam account selected for category import.</sys:String>
<sys:String x:Key="LOCSettingsUpdateLibStartup">Download 3rd party library updates on startup</sys:String>
<sys:String x:Key="LOCSettingsDownloadMetadataOnImport">Download metadata after importing games</sys:String>
<sys:String x:Key="LOCSettingsStartMinimized">Launch Playnite minimized</sys:String>
<sys:String x:Key="LOCSettingsStartOnBoot">Launch Playnite when you start your computer</sys:String>
<sys:String x:Key="LOCSettingsStartOnBootRegistrationError">Failed to register Playnite to launch when computer starts.</sys:String>
<sys:String x:Key="LOCSettingsStartInFullscreen">Launch in Fullscreen Mode</sys:String>
<sys:String x:Key="LOCSettingsUpdateLibStartupTooltip">Includes Steam, Origin and others.</sys:String>
<sys:String x:Key="LOCSettingsAsyncImageLoading">Asynchronous image loading</sys:String>
<sys:String x:Key="LOCSettingsAsyncImageLoadingTooltip">Improves scrolling smoothness of game lists in exchange for slower image load times.</sys:String>
<sys:String x:Key="LOCSettingsShowNameEmptyCover">Show game name if cover art is missing</sys:String>
<sys:String x:Key="LOCSettingsShowNamesUnderCover">Show game names on Grid view</sys:String>
<sys:String x:Key="LOCSettingsDarkenUninstalledGridCovers">Darken not installed games</sys:String>
<sys:String x:Key="LOCSettingsShowIconList">Show game icons on Details view list</sys:String>
<sys:String x:Key="LOCSettingsShowGroupCount">Show item count on group descriptions</sys:String>
<sys:String x:Key="LOCSettingsUsedFieldsOnlyOnFilterLists">Show only assigned fields on filter and explorer panels</sys:String>
<sys:String x:Key="LOCSettingsDisableAcceleration">Disable hardware acceleration</sys:String>
<sys:String x:Key="LOCSettingsDisableAccelerationTooltip">Use when experiencing stuttering or similar UI issues</sys:String>
<sys:String x:Key="LOCSettingsDisableDpiAwareness">Disable DPI Scaling</sys:String>
<sys:String x:Key="LOCSettingsShowSteamFriendsButton">Show Steam friends button</sys:String>
<sys:String x:Key="LOCSettingsHiddenInQuickLaunch">Show hidden games in quick launch lists</sys:String>
<sys:String x:Key="LOCSettingsHiddenInQuickLaunchTooltip">Affects Jump List and tray menu lists.</sys:String>
<sys:String x:Key="LOCSettingsQuicLaunchItems">Number of quick launch items</sys:String>
<sys:String x:Key="LOCSettingsShowBackgroundWindowImage">Use game background image as window background</sys:String>
<sys:String x:Key="LOCSettingsBlurWindowBackgrounImage">Blur background</sys:String>
<sys:String x:Key="LOCSettingsBlurHighQuality">High Quality</sys:String>
<sys:String x:Key="LOCSettingsDarkenWindowBackghrounImage">Darken background</sys:String>
<sys:String x:Key="LOCSettingsShowBackImageOnGridView">Show on Grid view</sys:String>
<sys:String x:Key="LOCSettingsSkin">Theme</sys:String>
<sys:String x:Key="LOCSettingsSkinColor">Theme Profile</sys:String>
<sys:String x:Key="LOCSettingsSkinFullscreen">Fullscreen Theme</sys:String>
<sys:String x:Key="LOCSettingsSkinColorFullscreen">Fullscreen Theme Profile</sys:String>
<sys:String x:Key="LOCSettingsDBLocation">Database Location</sys:String>
<sys:String x:Key="LOCSettingsWhatsSteamName">What's my account name?</sys:String>
<sys:String x:Key="LOCSettingsLoginStatus">Login status:</sys:String>
<sys:String x:Key="LOCSettingsWindowTitle">Playnite Settings</sys:String>
<sys:String x:Key="LOCSettingsSteamImportMetadata">Import metadata from Steam account:</sys:String>
<sys:String x:Key="LOCImportSteamCategoriesLabel">Import Steam Categories</sys:String>
<sys:String x:Key="LOCImportSteamLastActivityLabel">Import Steam Last Played</sys:String>
<sys:String x:Key="LOCSettingsClearWebCache">Clear web cache</sys:String>
<sys:String x:Key="LOCSettingsClearWebCacheTooltip">May solve issues encountered while linking accounts.</sys:String>
<sys:String x:Key="LOCSettingsShowTray">Show system tray icon</sys:String>
<sys:String x:Key="LOCSettingsMinimizeToTray">Minimize Playnite to system tray</sys:String>
<sys:String x:Key="LOCSettingsCloseToTray">Minimize Playnite to system tray when the application window is closed</sys:String>
<sys:String x:Key="LOCSettingsAfterGameStart">When game starts:</sys:String>
<sys:String x:Key="LOCSettingsAfterGameClose">After game closes:</sys:String>
<sys:String x:Key="LOCSettingsGOGUseGalaxy">Launch games using GOG Galaxy client</sys:String>
<sys:String x:Key="LOCSettingsGOGUseGalaxyTooltip">This will enable GOG Galaxy features like cloud saves, game time tracking, etc.</sys:String>
<sys:String x:Key="LOCSettingsSteamCatImportWarn">This will overwrite current categories as well as hidden and favorite states on all Steam games. Do you want to continue?</sys:String>
<sys:String x:Key="LOCSettingsSteamCatImportWarnTitle">Import Categories?</sys:String>
<sys:String x:Key="LOCSettingsSteamCatImportErrorAccount">Cannot import categories, account for import is not selected.</sys:String>
<sys:String x:Key="LOCSettingsSteamCatImportErrorDb">Cannot import categories, database is not opened.</sys:String>
<sys:String x:Key="LOCSettingsSteamCatImportError">Failed to import Steam categories: {0}</sys:String>
<sys:String x:Key="LOCSettingsSteamLastActivityImportErrorAccount">Cannot import last played information, account for import is not selected.</sys:String>
<sys:String x:Key="LOCSettingsSteamLastActivityImportErrorDb">Cannot import last played information, database is not opened.</sys:String>
<sys:String x:Key="LOCSettingsSteamLastActivityImportError">Failed to import Steam last played information: {0}</sys:String>
<sys:String x:Key="LOCSettingsClearCacheWarn">This will log you out of all linked services. Application restart is required, do you want to proceed?</sys:String>
<sys:String x:Key="LOCSettingsClearCacheTitle">Clear Cache?</sys:String>
<sys:String x:Key="LOCSettingsApiKeyTooltip">API Key is required for Steam private accounts</sys:String>
<sys:String x:Key="LOCSettingsApiKeyUrlText">Get API key</sys:String>
<sys:String x:Key="LOCSettingsSkinChangeRestart">Playnite restart is required to apply new theme</sys:String>
<sys:String x:Key="LOCSettingsGetThemes">Get more themes</sys:String>
<sys:String x:Key="LOCSettingsCreateThemes">Create new theme</sys:String>
<sys:String x:Key="LOCSettingsGetExtensions">Get more extensions</sys:String>
<sys:String x:Key="LOCSettingsCreateExtensions">Create new extension</sys:String>
<sys:String x:Key="LOCSettingsCreateLocalization">Help us translate Playnite</sys:String>
<sys:String x:Key="LOCSettingsRestartAskMessage" xml:space="preserve">Playnite needs to be restarted in order to apply new settings. Restart now?
Restarting will cancel any active tasks (downloads) currently in progress.</sys:String>
<sys:String x:Key="LOCSettingsRestartTitle">Restart Playnite?</sys:String>
<sys:String x:Key="LOCSettingsDBPathNotification" xml:space="preserve">Playnite cannot move your library files automatically. You must manually move/copy the files before changing the location. If there is no library in the target location, a new one will be created.
The new database location will not be used until Playnite is restarted. </sys:String>
<sys:String x:Key="LOCSettingsClosePlaytimeNotif">Play time will not be recorded if "Close" action is set.</sys:String>
<sys:String x:Key="LOCSettingsFullscreenRows">Number of rows</sys:String>
<sys:String x:Key="LOCSettingsFullscreenColumns">Number of columns</sys:String>
<sys:String x:Key="LOCSettingsFullscreenRowDetails">Number of detail view rows</sys:String>
<sys:String x:Key="LOCSettingsFullscreenBackgroundOnMainScreen">Show Background Image on Main Screen</sys:String>
<sys:String x:Key="LOCSteamBackgroundSource">Background image source:</sys:String>
<sys:String x:Key="LOCSteamBackgroundSourceImage">Game Image</sys:String>
<sys:String x:Key="LOCSteamBackgroundSourceScreenshot">Store Screenshot</sys:String>
<sys:String x:Key="LOCSteamBackgroundSourceStore">Store Background</sys:String>
<sys:String x:Key="LOCSteamBackgroundSourceBanner">Banner</sys:String>
<sys:String x:Key="LOCBackgroundImageScreenOptionTooltip" xml:space="preserve">Doesn't apply retrospectively to existing games without re-downloading metadata.</sys:String>
<sys:String x:Key="LOCSettingsForceDownloadPlaynite">Prioritize play time for supported libraries</sys:String>
<sys:String x:Key="LOCSettingsForceDownloadPlayniteTooltip">Always download recorded play time from remote library during library sync, ignoring time recorded by Playnite.</sys:String>
<sys:String x:Key="LOCSettingsXInputInDesktopMode">Enable controller support in Desktop Mode</sys:String>
<sys:String x:Key="LOCSettingsXInputGuideOpensFullscreen">Guide button opens Fullscreen mode</sys:String>
<sys:String x:Key="LOCSettingsDefaultMetadataDescription">Automatic Metadata download settings for newly imported games.</sys:String>
<sys:String x:Key="LOCSettingsTargetMonitor">Target Monitor</sys:String>
<sys:String x:Key="LOCSettingsFullscreenShowGameTitles">Show Game Titles</sys:String>
<sys:String x:Key="LOCSettingsShowBatteryStatus">Show Battery Status</sys:String>
<sys:String x:Key="LOCSettingsShowBatteryPercentage">Show Battery Percentage</sys:String>
<sys:String x:Key="LOCSettingsShowClock">Show Clock</sys:String>
<sys:String x:Key="LOCSettingsFullscreenQuickFilterInstalled">Installed Only in Quick Filters</sys:String>
<sys:String x:Key="LOCSettingsFullscreenButtonPrompts">Button Prompts</sys:String>
<sys:String x:Key="LOCSettingsFullscreenLayout">Layout</sys:String>
<sys:String x:Key="LOCSettingsFullscreenHorizontalScrolling">Horizontal Scrolling</sys:String>
<sys:String x:Key="LOCSettingsSelectChildSection">Select one of the subsections</sys:String>
<sys:String x:Key="LOCSettingsNoSettingsAvailable">No settings available</sys:String>
<sys:String x:Key="LOCSettingsErrorLoadingSettings">Failed to load settings</sys:String>
<sys:String x:Key="LOCSettingsScriptingNotice">These scripts are executed for every game in the library. Individual scripts can be assigned to each game separately while editing game details.</sys:String>
<sys:String x:Key="LOCSettingsBackgroundImageAnimation">Animate background image transitions</sys:String>
<sys:String x:Key="LOCSettingsFontSizes">Font sizes</sys:String>
<sys:String x:Key="LOCSettingsTextRenderingModeOptionAuto">Auto</sys:String>
<sys:String x:Key="LOCSettingsTextRenderingModeOptionAliased">Aliased</sys:String>
<sys:String x:Key="LOCSettingsTextRenderingModeOptionGrayscale">Grayscale</sys:String>
<sys:String x:Key="LOCSettingsTextRenderingModeOptionClearType">ClearType</sys:String>
<sys:String x:Key="LOCSettingsTextFormattingModeOptionIdeal">Ideal</sys:String>
<sys:String x:Key="LOCSettingsTextFormattingModeOptionDisplay">Display</sys:String>
<sys:String x:Key="LOCSettingsTextFormattingMode">Text formatting mode</sys:String>
<sys:String x:Key="LOCSettingsTextRenderingMode">Text rendering mode</sys:String>
<sys:String x:Key="LOCSettingsTextRenderingNotice">Text rendering and formatting methods are currently not used for game descriptions.</sys:String>
<sys:String x:Key="LOCSettingsImmediateBackgroundDownload">Preload background images</sys:String>
<sys:String x:Key="LOCSettingsImmediateBackgroundDownloadTooltip" xml:space="preserve">If enabled, Playnite will download background artwork while downloading metadata, using more disk space and making artwork available when offline.
If disabled, background artwork is downloaded only when first needed, using less space, but may result in a delay before artwork is displayed and some images might not be available when offline.</sys:String>
<sys:String x:Key="LOCSettingsAutoCloseLauncherOption">Automatically close third party client after game exits</sys:String>
<sys:String x:Key="LOCSettingsAutoCloseGracePeriod">Client shutdown delay (in seconds)</sys:String>
<sys:String x:Key="LOCSettingsAutoCloseMinimalSessionTime">Don't close after game sessions shorter than (in seconds)</sys:String>
<sys:String x:Key="LOCSettingsAutoCloseSpecificClients">Automatically close following clients:</sys:String>
<sys:String x:Key="LOCSettingsAutoCloseSection">Auto Close Clients</sys:String>
<sys:String x:Key="LOCSettingsImportExclusionList">Import Exclusion List</sys:String>
<sys:String x:Key="LOCSettingsShowMediaSizeWarning">Display warning when assigning too large game media</sys:String>
<sys:String x:Key="LOCSettingsStartGameDirectly">Start games directly without running official client</sys:String>
<sys:String x:Key="LOCOpenDirectoryCommand">Directory open command</sys:String>
<sys:String x:Key="LOCSettingsPreferredAgeRatingOrg">Preferred age rating organization</sys:String>
<sys:String x:Key="LOCStrechNone">None</sys:String>
<sys:String x:Key="LOCStrechFill">Fill</sys:String>
<sys:String x:Key="LOCStrechUniform">Uniform</sys:String>
<sys:String x:Key="LOCStrechUniformToFill">Uniform to fill</sys:String>
<sys:String x:Key="LOCDockLeft">Left</sys:String>
<sys:String x:Key="LOCDockRight">Right</sys:String>
<sys:String x:Key="LOCDockTop">Top</sys:String>
<sys:String x:Key="LOCDockBottom">Bottom</sys:String>
<sys:String x:Key="LOCImportError">Import Error</sys:String>
<sys:String x:Key="LOCLoginChecking">Checking authentication status…</sys:String>
<sys:String x:Key="LOCLoginRequired">Authentification required</sys:String>
<sys:String x:Key="LOCLoginFailed">Authentification failed</sys:String>
<sys:String x:Key="LOCLoggedIn">User is authenticated</sys:String>
<sys:String x:Key="LOCNotLoggedIn">Requires authentication</sys:String>
<sys:String x:Key="LOCNotLoggedInError">Failed to authenticate user.</sys:String>
<!--Meta Import-->
<sys:String x:Key="LOCMetaImportWindowTitle">Metadata Import</sys:String>
<sys:String x:Key="LOCDownloadMetaButton">Download Metadata</sys:String>
<sys:String x:Key="LOCSaveDefaultTooltip" xml:space="preserve">Set selected configuration to be used for any future metadata downloads.
Can also be changed in application settings.</sys:String>
<!--Emulator Import-->
<sys:String x:Key="LOCEmuWizardWindowTitle">Emulation Import Wizard</sys:String>
<sys:String x:Key="LOCEmuWizardIntro">This wizard will guide you through the process of downloading and importing console emulators and importing emulated games.</sys:String>
<sys:String x:Key="LOCEmuWizardNotice">Keep in mind that you can always add additional emulators and/or games later via main menu (under "Library" menu for Emulator settings and "Add Games" menu for emulated games).</sys:String>
<sys:String x:Key="LOCEmuWizardDownloadListIntro" xml:space="preserve">Below is a list of emulators that Playnite can recognize and configure automatically. You can download the installers from their websites. Once you have the emulators installed, proceed to the next screen to import them to Playnite.
You can also configure and import any custom emulator from the configuration menu later. </sys:String>
<sys:String x:Key="LOCEmuWizardEmuImportIntro">You can import any emulators that are installed on your PC by clicking the 'Autodetect From Folder…' button. Playnite will search the selected folder for any known emulators and provide the option to import them. You can use this button multiple times to import emulators from different folders. Emulators will be added to the bottom of the current list.</sys:String>
<sys:String x:Key="LOCEmuWizardGameImportIntro">You can import games by clicking the 'Scan Folder Using Emulator' button. Selecting the appropriate emulator will tell Playnite which file types should be scanned and imported. You can use this button multiple times to import games from different folders. Games will be added to the bottom of the current list.</sys:String>
<sys:String x:Key="LOCEmuWizardNoEmulatorWarning">There are no emulators selected for import. You won't be able to automatically import any emulated games without configuring emulators first. Are you sure you want to continue and exit import process?</sys:String>
<sys:String x:Key="LOCEmuWizardNoEmulatorForGamesWarning">There are no emulators configured in Playnite. You cannot import games without first configuring the emulator and selecting the appropriate file types. Do you want to add some emulators now?</sys:String>
<sys:String x:Key="LOCEmuWizardButtonScanGames">Scan folder using Emulator</sys:String>
<sys:String x:Key="LOCEmuWizardButtonSelectFiles">Select files</sys:String>
<sys:String x:Key="LOCEmuWizardButtonScanEmulator">Autodetect From Folder…</sys:String>
<sys:String x:Key="LOCEmuWizardButtonConfigureEmulator">Configure Emulators…</sys:String>
<sys:String x:Key="LOCEmuWizardScanning">Scanning…</sys:String>
<!--FirstTime Wizard-->
<sys:String x:Key="LOCFirstWindowTitle">First Time Configuration</sys:String>
<sys:String x:Key="LOCFirstIntro" xml:space="preserve">This wizard will guide you through the automatic import and configuration process of external game libraries. Playnite can automatically import games from multiple game services, such as Steam or GOG, and also keep your library up-to-date by updating it automatically when the application is started.
Keep in mind that you can manually add any custom game for any platform later by clicking the 'Playnite' button in the main menu.</sys:String>
<sys:String x:Key="LOCFirstDBLocDefault">Default program data location for all users</sys:String>
<sys:String x:Key="LOCFirstDBLocCustom">Custom location</sys:String>
<sys:String x:Key="LOCFirstExternalTitle">Library Integration</sys:String>
<sys:String x:Key="LOCFirstImportIntroduction" xml:space="preserve">Automatically import games from the services listed below. Any later game changes (Installation Status) will be updated automatically on Playnite startup or when triggered manually. The selected settings will affect the initial and all subsequent imports.</sys:String>
<sys:String x:Key="LOCFirstSteamIntegration">Steam Integration</sys:String>
<sys:String x:Key="LOCFirstOriginIntegration">Origin Integration</sys:String>
<sys:String x:Key="LOCFirstGOGIntegration">GOG Integration</sys:String>
<sys:String x:Key="LOCFirstBattleNetIntegration">Battle.net Integration</sys:String>
<sys:String x:Key="LOCFirstUplayIntegration">Uplay Integration</sys:String>
<sys:String x:Key="LOCFirstSteamImportCategories">Import categories from account:</sys:String>
<sys:String x:Key="LOCFirstOtherGamesTitle">Other games</sys:String>
<sys:String x:Key="LOCFirstOtherGamesText">Click on the button below to import other installed games or browse for them manually (including Microsoft Store games).</sys:String>
<sys:String x:Key="LOCFirstOtherGamesImportButton">Import Games</sys:String>
<sys:String x:Key="LOCFirstConfigFinishedTitle">Configuration Finished</sys:String>
<sys:String x:Key="LOCFirstConfigFinishedText" xml:space="preserve">The initial setup has been completed. Remember that you can change all settings later in the 'Settings' menu.
You can also add any other game later by clicking the Playnite logo menu.</sys:String>
<sys:String x:Key="LOCFirstConfigOpenEmuImport">Begin the Emulation Import Wizard</sys:String>
<sys:String x:Key="LOCFirstConfigGridViewLayout">Grid View Layout</sys:String>
<sys:String x:Key="LOCFirstConfigGridViewLayoutDesc">Select preferred layout for Playnite's grid view. Image layout can be changed at any time in application settings, including image stretching options.</sys:String>
<!--Platforms Settings-->
<sys:String x:Key="LOCPlatformsWindowTitle">Configure Platforms and Emulators</sys:String>
<sys:String x:Key="LOCEmulatorsWindowTitle">Configure Emulators</sys:String>
<sys:String x:Key="LOCPlatformsTitle">Platforms</sys:String>
<sys:String x:Key="LOCPlatformTitle">Platform</sys:String>
<sys:String x:Key="LOCEmulatorsTitle">Emulators</sys:String>
<sys:String x:Key="LOCEmulatorTitle">Emulator</sys:String>
<sys:String x:Key="LOCAddPlatformTitle">Add Platform</sys:String>
<sys:String x:Key="LOCSelectIconTitle">Select Icon</sys:String>
<sys:String x:Key="LOCSelectCoverTitle">Select Cover</sys:String>
<sys:String x:Key="LOCSelectImageTitle">Select Image</sys:String>
<sys:String x:Key="LOCSelectItemTitle">Select Item</sys:String>
<sys:String x:Key="LOCSelectBackgroundTitle">Select Background</sys:String>
<sys:String x:Key="LOCSelectFileTitle">Select File</sys:String>
<sys:String x:Key="LOCSelectUrlTitle">Select URL</sys:String>
<sys:String x:Key="LOCAddEmulatorTitle">Add Emulator</sys:String>
<sys:String x:Key="LOCSupportedPlatformsTitle">Supported Platform(s)</sys:String>
<sys:String x:Key="LOCConfirmUnsavedPlatformsTitle">Do you want to save platform changes?</sys:String>
<sys:String x:Key="LOCConfirmUnsavedEmulatorsTitle">Do you want to save emulator changes?</sys:String>
<sys:String x:Key="LOCExecutableTitle">Executable</sys:String>
<sys:String x:Key="LOCArgumentsTitle">Arguments</sys:String>
<sys:String x:Key="LOCWorkingDirTitle">Working Directory</sys:String>
<sys:String x:Key="LOCSupportedFilesTitle">Supported File Types</sys:String>
<sys:String x:Key="LOCImportEmulatorsButton">Import Emulators…</sys:String>
<sys:String x:Key="LOCDownloadEmulatorsButton">Download Emulators…</sys:String>
<sys:String x:Key="LOCEmuLoadArgsPresetTooltip">Load arguments preset from known emulator profile</sys:String>
<sys:String x:Key="LOCEmuRemovalConfirmation" xml:space="preserve">Are you sure you want to remove {0} emulator?
It's currently being used by {1} game(s).</sys:String>
<sys:String x:Key="LOCPlatformRemovalConfirmation" xml:space="preserve">Are you sure you want to remove {0} platform?
It's currently being used by {1} game(s) and {2} emulator(s).</sys:String>
<sys:String x:Key="LOCEmulatorSettingsHelp">Settings help</sys:String>
<sys:String x:Key="LOCMenuSortByTitle">Sort By</sys:String>
<sys:String x:Key="LOCMenuGroupByTitle">Group By</sys:String>
<sys:String x:Key="LOCMenuSortAscending">Ascending</sys:String>
<sys:String x:Key="LOCMenuSortDescending">Descending</sys:String>
<sys:String x:Key="LOCMenuGroupDont">Don't group</sys:String>
<sys:String x:Key="LOCMenuGroupProvider">Group by Library</sys:String>
<sys:String x:Key="LOCMenuGroupCategory">Group by Category</sys:String>
<sys:String x:Key="LOCMenuGroupPlatform">Group by Platform</sys:String>
<sys:String x:Key="LOCViewType">View Type</sys:String>
<sys:String x:Key="LOCMenuView">View</sys:String>
<sys:String x:Key="LOCMenuViewExplorerPanel">Explorer Panel</sys:String>
<sys:String x:Key="LOCMenuViewFilterPanel">Filter Panel</sys:String>
<!--Game fields-->
<sys:String x:Key="LOCGameIconTitle">Icon</sys:String>
<sys:String x:Key="LOCGameCoverImageTitle">Cover Image</sys:String>
<sys:String x:Key="LOCGameBackgroundTitle">Background Image</sys:String>
<sys:String x:Key="LOCGameSortingNameTitle">Sorting Name</sys:String>
<sys:String x:Key="LOCGameProviderTitle">Library</sys:String>
<sys:String x:Key="LOCGameManualTitle">Manual</sys:String>
<sys:String x:Key="LOCGameNameTitle">Name</sys:String>
<sys:String x:Key="LOCGameAccountNameTitle">Account Name</sys:String>
<sys:String x:Key="LOCGamePlatformTitle">Platform</sys:String>
<sys:String x:Key="LOCGameCategoriesTitle">Category</sys:String>
<sys:String x:Key="LOCGameGenresTitle">Genre</sys:String>
<sys:String x:Key="LOCGameReleaseDateTitle">Release Date</sys:String>
<sys:String x:Key="LOCGameReleaseYearTitle">Release Year</sys:String>
<sys:String x:Key="LOCGameDevelopersTitle">Developer</sys:String>
<sys:String x:Key="LOCGameTagsTitle">Tag</sys:String>
<sys:String x:Key="LOCGamePublishersTitle">Publisher</sys:String>
<sys:String x:Key="LOCGameInstallationStatus">Installation Status</sys:String>
<sys:String x:Key="LOCGameIsInstalledTitle">Installed</sys:String>
<sys:String x:Key="LOCGameIsGameInstalledTitle">Installed</sys:String>
<sys:String x:Key="LOCGameIsUnInstalledTitle">Not installed</sys:String>
<sys:String x:Key="LOCGameHiddenTitle">Hidden</sys:String>
<sys:String x:Key="LOCGameFavoriteTitle">Favorite</sys:String>
<sys:String x:Key="LOCGameLastActivityTitle">Last Played</sys:String>
<sys:String x:Key="LOCGameCategoryTitle">Category</sys:String>
<sys:String x:Key="LOCGameDescriptionTitle">Description</sys:String>
<sys:String x:Key="LOCGameInstallDirTitle">Installation Directory</sys:String>
<sys:String x:Key="LOCGameCoverTitle">Cover Image</sys:String>
<sys:String x:Key="LOCGameLinksTitle">Links</sys:String>
<sys:String x:Key="LOCGameROMTitle">Image, ROM or ISO Path</sys:String>
<sys:String x:Key="LOCGenreLabel">Genre</sys:String>
<sys:String x:Key="LOCGenresLabel">Genres</sys:String>
<sys:String x:Key="LOCCompanyLabel">Company</sys:String>
<sys:String x:Key="LOCCompaniesLabel">Companies</sys:String>
<sys:String x:Key="LOCDeveloperLabel">Developer</sys:String>
<sys:String x:Key="LOCDevelopersLabel">Developers</sys:String>
<sys:String x:Key="LOCPublisherLabel">Publisher</sys:String>
<sys:String x:Key="LOCPublishersLabel">Publishers</sys:String>
<sys:String x:Key="LOCCategoryLabel">Category</sys:String>
<sys:String x:Key="LOCCategoriesLabel">Categories</sys:String>
<sys:String x:Key="LOCTagLabel">Tag</sys:String>
<sys:String x:Key="LOCTagsLabel">Tags</sys:String>
<sys:String x:Key="LOCFeatureLabel">Feature</sys:String>
<sys:String x:Key="LOCFeaturesLabel">Features</sys:String>
<sys:String x:Key="LOCAgeRatingLabel">Age Rating</sys:String>
<sys:String x:Key="LOCAgeRatingsLabel">Age Ratings</sys:String>
<sys:String x:Key="LOCRegionLabel">Region</sys:String>
<sys:String x:Key="LOCRegionsLabel">Regions</sys:String>
<sys:String x:Key="LOCSourceLabel">Source</sys:String>
<sys:String x:Key="LOCSourcesLabel">Sources</sys:String>
<!--Errors-->
<sys:String x:Key="LOCDatabaseErroTitle">Database Error</sys:String>
<sys:String x:Key="LOCDatabaseOpenError">Failed to open library database.</sys:String>
<sys:String x:Key="LOCDatabaseNotOpenedError">Database is not opened.</sys:String>
<sys:String x:Key="LOCDatabaseOpenAccessError">Cannot access library database. File "{0}" is being used by another process or it's in inaccessible location.</sys:String>
<sys:String x:Key="LOCDiagPackageCreationError">Failed to create diagnostics package.</sys:String>
<sys:String x:Key="LOCDiagPackageUploadError">Failed to automatically upload diagnostics package.</sys:String>
<sys:String x:Key="LOCDiagPackageSentSuccess">Diagnostics information was sent successfully.</sys:String>
<sys:String x:Key="LOCDiagPackageCreationSuccess" xml:space="preserve">The diagnostics package has been created and submitted successfully.
Please attach the following ID to your issue report:</sys:String>
<sys:String x:Key="LOCSteamCategoryImportError">Failed to import Steam categories.</sys:String>
<sys:String x:Key="LOCBnetInstalledImportError">Failed to import installed Battle.net games.</sys:String>
<sys:String x:Key="LOCSteamInstalledImportError">Failed to import installed Steam games.</sys:String>
<sys:String x:Key="LOCGOGInstalledImportError">Failed to import installed GOG games.</sys:String>
<sys:String x:Key="LOCOriginInstalledImportError">Failed to import installed Origin games.</sys:String>
<sys:String x:Key="LOCUplayInstalledImportError">Failed to import installed Uplay games.</sys:String>
<sys:String x:Key="LOCBnetLibraryImportError">Failed to download Battle.net library.</sys:String>
<sys:String x:Key="LOCSteamLibraryImportError">Failed to download Steam library.</sys:String>
<sys:String x:Key="LOCGOGLibraryImportError">Failed to download GOG library.</sys:String>
<sys:String x:Key="LOCOriginLibraryImportError">Failed to download Origin library.</sys:String>
<sys:String x:Key="LOCUplayLibraryImportError">Failed to download Uplay library.</sys:String>
<sys:String x:Key="LOCLibraryImportError">Failed to import games from {0}.</sys:String>
<sys:String x:Key="LOCScanEmulatorGamesEmptyProfileError">Cannot search for games by selected emulator profile. Profile doesn't contain any file extensions or platforms.</sys:String>
<sys:String x:Key="LOCStartGenericError">Playnite failed to start. Please close all other instances and try again.</sys:String>
<sys:String x:Key="LOCSkinApplyError" xml:space="preserve">Failed to apply theme "{0}", color profile "{1}"
{2}</sys:String>
<sys:String x:Key="LOCURLFormatError">Cannot open link, URL is not in valid format.</sys:String>
<sys:String x:Key="LOCAppStartupError">Failed to start the application.</sys:String>
<sys:String x:Key="LOCCefSharpInitError" xml:space="preserve">Failed to initialize the WebView component. Playnite cannot continue with the startup process.
You can try to resolve the issue:
• Check that all files are installed correctly. The re-installation could help
• Make sure your antivirus doesn't block any files in the Playnite directory
• Choose a different installation location</sys:String>
<sys:String x:Key="LOCEmulatorImportNoDefinitionsError">Cannot import emulators due to missing or corrupted definition file.</sys:String>
<sys:String x:Key="LOCXInputInitErrorMessage">Failed to initialize XInput interface.</sys:String>
<sys:String x:Key="LOCMenuActionExecError">Failed to execute menu action.</sys:String>
<!--GameEdit-->
<sys:String x:Key="LOCGameEditWindowTitle">Edit Game Details</sys:String>
<sys:String x:Key="LOCUseExeIcon">From Play action</sys:String>
<sys:String x:Key="LOCImageURL">Image URL</sys:String>
<sys:String x:Key="LOCAddLinkButton">Add Link</sys:String>
<sys:String x:Key="LOCSaveChanges">Save Changes</sys:String>
<sys:String x:Key="LOCPlayAction">Play Action</sys:String>
<sys:String x:Key="LOCAddPlayAction">Add Play Action</sys:String>
<sys:String x:Key="LOCAddAction">Add Action</sys:String>
<sys:String x:Key="LOCDeleteAction">Delete Action</sys:String>
<sys:String x:Key="LOCRemovePlayAction">Remove Play Action</sys:String>
<sys:String x:Key="LOCOtherActions">Other Actions</sys:String>
<sys:String x:Key="LOCAddGames">Add Games</sys:String>
<sys:String x:Key="LOCScanFolder">Scan Folder…</sys:String>
<sys:String x:Key="LOCDetectInstalled">Detect Installed</sys:String>
<sys:String x:Key="LOCBrowse">Browse…</sys:String>
<sys:String x:Key="LOCOpenPlaynite">Open Playnite</sys:String>
<sys:String x:Key="LOCProfileSettings">Profile Settings</sys:String>
<sys:String x:Key="LOCEmptyGameNameError">Game name cannot be empty.</sys:String>
<sys:String x:Key="LOCEmptyGameNameMetaSearchError">Game name cannot be empty before searching metadata.</sys:String>
<sys:String x:Key="LOCInvalidGameData">Invalid game data</sys:String>
<sys:String x:Key="LOCURLInputInfo">Enter valid web URL starting with http:// or https://</sys:String>
<sys:String x:Key="LOCURLInputInfoTitile">Select URL</sys:String>
<sys:String x:Key="LOCMetadataDownloadError">Failed to download metadata: {0}</sys:String>
<sys:String x:Key="LOCDownloadError">Download Error</sys:String>
<sys:String x:Key="LOCClearFilters">Clear Filters</sys:String>
<sys:String x:Key="LOCPrivateAccount">Private Account</sys:String>
<sys:String x:Key="LOCPublicAccount">Public Account</sys:String>
<sys:String x:Key="LOCAPIKey">API Key</sys:String>
<sys:String x:Key="LOCStartupError">Startup Error</sys:String>
<sys:String x:Key="LOCSkinError">Theme Error</sys:String>
<sys:String x:Key="LOCClearAll">Clear All</sys:String>
<sys:String x:Key="LOCSetupRunning">Installing</sys:String>
<sys:String x:Key="LOCUninstalling">Uninstalling</sys:String>
<sys:String x:Key="LOCGameLaunching">Launching</sys:String>
<sys:String x:Key="LOCGameRunning">Running</sys:String>
<sys:String x:Key="LOCInvalidURL">Invalid URL</sys:String>
<sys:String x:Key="LOCDoNothing">Do nothing</sys:String>
<sys:String x:Key="LOCMinimize">Minimize</sys:String>
<sys:String x:Key="LOCRestoreWindow">Restore window</sys:String>
<sys:String x:Key="LOCClose">Close</sys:String>
<sys:String x:Key="LOCChange">Change</sys:String>
<sys:String x:Key="LOCAdvanced">Advanced</sys:String>
<sys:String x:Key="LOCNever">Never</sys:String>
<sys:String x:Key="LOCCompletionStatusNotPlayed">Not Played</sys:String>
<sys:String x:Key="LOCCompletionStatusPlayed">Played</sys:String>
<sys:String x:Key="LOCCompletionStatusBeaten">Beaten</sys:String>
<sys:String x:Key="LOCCompletionStatusCompleted">Completed</sys:String>
<sys:String x:Key="LOCCompletionStatusPlaying">Playing</sys:String>
<sys:String x:Key="LOCCompletionStatusAbandoned">Abandoned</sys:String>
<sys:String x:Key="LOCCompletionStatusOnHold">On Hold</sys:String>
<sys:String x:Key="LOCCompletionStatusPlanToPlay">Plan to Play</sys:String>
<sys:String x:Key="LOCCompletionStatus">Completion Status</sys:String>
<sys:String x:Key="LOCUserScore">User Score</sys:String>
<sys:String x:Key="LOCCriticScore">Critic Score</sys:String>
<sys:String x:Key="LOCCommunityScore">Community Score</sys:String>
<sys:String x:Key="LOCScripts">Scripts</sys:String>
<sys:String x:Key="LOCPlugins">Plugins</sys:String>
<sys:String x:Key="LOCMetadataProviders">Metadata Sources</sys:String>
<sys:String x:Key="LOCExtensions">Extensions</sys:String>
<sys:String x:Key="LOCExtensionID">Extension ID</sys:String>
<sys:String x:Key="LOCReloadScripts">Reload Scripts</sys:String>
<sys:String x:Key="LOCReloadScriptsSuccess">All scripts reloaded successfully.</sys:String>
<sys:String x:Key="LOCNoGamesFound">No games found for specified search/filter criteria</sys:String>
<sys:String x:Key="LOCNoItemsFound">No items found</sys:String>
<sys:String x:Key="LOCBackToDesktopMode">Switch to Desktop Mode</sys:String>
<sys:String x:Key="LOCExitPlaynite">Exit Playnite</sys:String>
<sys:String x:Key="LOCLibraries">Libraries</sys:String>
<sys:String x:Key="LOCUpdateAll">Update All</sys:String>
<sys:String x:Key="LOCExtensionCreatedBy">Created By:</sys:String>
<sys:String x:Key="LOCExtensionVersion">Version:</sys:String>
<sys:String x:Key="LOCExtensionModule">Module:</sys:String>
<sys:String x:Key="LOCLibrary">Library</sys:String>
<sys:String x:Key="LOCStatistics">Statistics</sys:String>
<sys:String x:Key="LOCAll">All</sys:String>
<sys:String x:Key="LOCNone">None</sys:String>
<sys:String x:Key="LOCNotifications">Notifications</sys:String>
<sys:String x:Key="LOCWidth">Width</sys:String>
<sys:String x:Key="LOCHeight">Height</sys:String>
<sys:String x:Key="LOCSize">Size</sys:String>
<sys:String x:Key="LOCFontSmall">Small</sys:String>
<sys:String x:Key="LOCFontNormal">Normal</sys:String>
<sys:String x:Key="LOCFontLarge">Large</sys:String>
<sys:String x:Key="LOCFontLarger">Larger</sys:String>
<sys:String x:Key="LOCFontLargest">Largest</sys:String>
<sys:String x:Key="LOCDefault">Default</sys:String>
<sys:String x:Key="LOCSelect">Select</sys:String>
<sys:String x:Key="LOCSelectAll">Select All</sys:String>
<sys:String x:Key="LOCFirst">First</sys:String>
<sys:String x:Key="LOCRandom">Random</sys:String>
<sys:String x:Key="LOCUserSelect">User select</sys:String>
<sys:String x:Key="LOCLoadMore">Load more</sys:String>
<sys:String x:Key="LOCTransparent">Transparent</sys:String>
<sys:String x:Key="LOCCollapse">Collapse</sys:String>
<sys:String x:Key="LOCExpand">Expand</sys:String>
<sys:String x:Key="LOCCollapseAll">Collapse All</sys:String>
<sys:String x:Key="LOCExpandAll">Expand All</sys:String>
<sys:String x:Key="LOCOther">Other</sys:String>
<sys:String x:Key="LOCThemes">Themes</sys:String>
<sys:String x:Key="LOCEmulatorArguments">Emulator Arguments</sys:String>
<sys:String x:Key="LOCAdditionalEmulatorArguments">Additional Emulator Arguments</sys:String>
<sys:String x:Key="LOCOverrideEmulatorArguments">Override Emulator Arguments</sys:String>
<sys:String x:Key="LOCMedataDiffWindowTitle">Select metadata to import</sys:String>
<sys:String x:Key="LOCGameImportWindowTitle">Select Games to Import</sys:String>
<sys:String x:Key="LOCMetaLookupWindowTitle">Metadata search</sys:String>
<sys:String x:Key="LOCUpdaterWindowTitle">Update Available</sys:String>
<sys:String x:Key="LOCUpdaterChangesInfo">Changes since last update</sys:String>
<sys:String x:Key="LOCUpdaterInstallUpdate">Download and Install Update</sys:String>
<sys:String x:Key="LOCCheckForUpdates">Check for Updates</sys:String>
<sys:String x:Key="LOCUpdateError">Update Error</sys:String>
<sys:String x:Key="LOCUpdateCheckFailMessage">Failed to check for new version.</sys:String>
<sys:String x:Key="LOCUpdateNoNewUpdateMessage">No new version found, you are up to date.</sys:String>
<sys:String x:Key="LOCGeneralUpdateFailMessage">Failed to download and install update.</sys:String>
<sys:String x:Key="LOCUpdateProgressCancelAsk">The background task is currently in progress. Do you want to cancel it and proceed with the update?</sys:String>
<sys:String x:Key="LOCBackgroundProgressCancelAskExit">The background task is currently in progress. Do you want to cancel it and exit Playnite?</sys:String>
<sys:String x:Key="LOCUpdateIsAvailableNotificationBody">An update for Playnite is available</sys:String>
<sys:String x:Key="LOCThemeTestReloadList">Reload theme list</sys:String>
<sys:String x:Key="LOCThemeTestApplySkin">Apply selected theme</sys:String>
<sys:String x:Key="LOCThemeTestWatchChanges">Watch file changes</sys:String>
<sys:String x:Key="LOCThemeTestWatchChangesTooltip">Automatically apply theme when the source file changes</sys:String>
<sys:String x:Key="LOCScriptRuntime">Script runtime</sys:String>
<sys:String x:Key="LOCPreScriptDescription">Script to execute before starting a game</sys:String>
<sys:String x:Key="LOCPostScriptDescription">Script to execute after exiting a game</sys:String>
<sys:String x:Key="LOCGameStartedScriptDescription">Script to execute after a game is started</sys:String>
<sys:String x:Key="LOCExecuteGlobalScript">Execute global script</sys:String>
<sys:String x:Key="LOCStatsGlobal">Global</sys:String>
<sys:String x:Key="LOCStatsFiltered">Filtered</sys:String>
<sys:String x:Key="LOCMetadataDiffCurrent">Current</sys:String>
<sys:String x:Key="LOCMetadataDiffNew">New</sys:String>
<!--Game actions-->
<sys:String x:Key="LOCSaveAsDefault">Save as default</sys:String>
<sys:String x:Key="LOCFavoriteGame">Add to Favorites</sys:String>
<sys:String x:Key="LOCRemoveFavoriteGame">Remove from Favorites</sys:String>
<sys:String x:Key="LOCHideGame">Hide this game</sys:String>
<sys:String x:Key="LOCUnHideGame">Remove from Hidden</sys:String>
<sys:String x:Key="LOCEditGame">Edit…</sys:String>
<sys:String x:Key="LOCSetGameCategory">Set Category…</sys:String>
<sys:String x:Key="LOCSetCompletionStatus">Set Completion Status</sys:String>
<sys:String x:Key="LOCRemoveGame">Remove</sys:String>
<sys:String x:Key="LOCPlayGame">Play</sys:String>
<sys:String x:Key="LOCInstallGame">Install</sys:String>
<sys:String x:Key="LOCGameOptions">Game Options</sys:String>
<sys:String x:Key="LOCGameDetails">Details</sys:String>
<sys:String x:Key="LOCUninstallGame">Uninstall</sys:String>
<sys:String x:Key="LOCOpenGameLocation">Open Installation Location</sys:String>
<sys:String x:Key="LOCCreateDesktopShortcut">Create Desktop Shortcut</sys:String>
<sys:String x:Key="LOCOpenGameManual">Open Manual</sys:String>
<sys:String x:Key="LOCMoreAction">More</sys:String>
<sys:String x:Key="LOCPlayActionUsePlugin">Managed by the library plugin</sys:String>
<sys:String x:Key="LOCPlayActionUsePluginTooltip">The game starting process will be managed by the library plugin responsible for this game.</sys:String>
<sys:String x:Key="LOCMetadownloadNoResultsMessage">No relevant information about the '{0}' game has been found on the specified page.</sys:String>
<sys:String x:Key="LOCMetadownloadSingleGameTip">Tip: You can use more advanced metadata download process while editing single game via "Edit" menu option.</sys:String>
<sys:String x:Key="LOCProgreessAvailabilityMessage">Not available when some action is in progress.</sys:String>
<sys:String x:Key="LOCDescriptionHTMLSupportTooltip">Description text is HTML syntax sensitive</sys:String>
<sys:String x:Key="LOCDescriptionPlaytimeSeconds">Game time is recorded in seconds.</sys:String>
<sys:String x:Key="LOCDescriptionScoreValues">Values from 0 to 100 or empty for no score.</sys:String>
<sys:String x:Key="LOCPatreonDevelopMessage">Playnite's development is supported by these patrons:</sys:String>
<sys:String x:Key="LOCAboutContributorsMessage">Code, localization and other contributors in no particular order:</sys:String>
<sys:String x:Key="LOCCancelMonitoringAskTitle">Cancel game monitoring?</sys:String>
<sys:String x:Key="LOCCancelMonitoringSetupAsk">Installation monitoring is currently running. Do you want to cancel the process and return the game to the previous state?</sys:String>
<sys:String x:Key="LOCCancelMonitoringExecutionAsk">Game execution monitoring is currently running. Do you want to cancel the process and return the game to the previous state?</sys:String>
<sys:String x:Key="LOCTimePlayed">Time Played</sys:String>
<sys:String x:Key="LOCLastPlayed">Last Played</sys:String>
<sys:String x:Key="LOCPlayedHours">{0}h {1}m</sys:String>
<sys:String x:Key="LOCPlayedMinutes">{0} minutes</sys:String>
<sys:String x:Key="LOCPlayedSeconds">{0} seconds</sys:String>
<sys:String x:Key="LOCPlayedNone">Not Played</sys:String>
<sys:String x:Key="LOCOpeningDesktopModeMessage">Opening Desktop mode…</sys:String>
<sys:String x:Key="LOCOpeningFullscreenModeMessage">Opening Fullscreen mode…</sys:String>
<sys:String x:Key="LOCOpeningDatabase">Loading game library…</sys:String>
<sys:String x:Key="LOCScriptInstallFail">Failed to install script file.</sys:String>
<sys:String x:Key="LOCScriptInstallSuccess">Script installed successfully.</sys:String>
<sys:String x:Key="LOCInstallScript">Install Script</sys:String>
<sys:String x:Key="LOCScriptError">Script error</sys:String>
<sys:String x:Key="LOCScriptExecutionError">Failed to execute extension function.</sys:String>
<sys:String x:Key="LOCOpenMetadataFolder">Open metadata folder</sys:String>
<sys:String x:Key="LOCClientNotInstalledError">{0} client is not installed.</sys:String>
<sys:String x:Key="LOCSignInExternalNotif">{0} client will now open. Please sign in and then close this message.</sys:String>
<sys:String x:Key="LOCSignInExternalWaitMessage">Waiting for user to sign in, please close this when you're done…</sys:String>
<sys:String x:Key="LOCInstallDirNotFoundError">Game's installation directory not found.</sys:String>
<sys:String x:Key="LOCInvalidGameActionSettings">Invalid game action configuration.</sys:String>
<sys:String x:Key="LOCTroubleShootingAccountLink">Troubleshooting account sync issues</sys:String>
<sys:String x:Key="LOCTroubleShootingIssues">Troubleshooting issues</sys:String>
<sys:String x:Key="LOCRenameItem">Rename item</sys:String>
<sys:String x:Key="LOCAddNewItem">Add new item</sys:String>
<sys:String x:Key="LOCEnterName">Enter name</sys:String>
<sys:String x:Key="LOCEnterNewName">Enter new name</sys:String>
<sys:String x:Key="LOCPLaytimeLessThenAnHour">Less than an hour</sys:String>
<sys:String x:Key="LOCPLaytime1to10">1 to 10 hours</sys:String>
<sys:String x:Key="LOCPLaytime10to100">10 to 100 hours</sys:String>
<sys:String x:Key="LOCPLaytime100to500">100 to 500 hours</sys:String>
<sys:String x:Key="LOCPLaytime500to1000">500 to 1000 hours</sys:String>
<sys:String x:Key="LOCPLaytime1000plus">1000+</sys:String>
<sys:String x:Key="LOCExtInstallationRestartNotif">Playnite must be restarted to complete the installation. Do you want to restart now?</sys:String>
<sys:String x:Key="LOCGeneralExtensionPackageError">Extension is not packaged properly.</sys:String>
<sys:String x:Key="LOCGeneralThemePackageError">Theme is not packaged properly.</sys:String>
<sys:String x:Key="LOCSpecificExtensionLoadError">Extension "{0}" failed to load properly.</sys:String>
<sys:String x:Key="LOCSpecificThemeLoadError">Theme "{0}" failed to load properly.</sys:String>
<sys:String x:Key="LOCGeneralExtensionLoadError">Extension failed to load properly.</sys:String>
<sys:String x:Key="LOCGeneralThemeLoadError">Theme failed to load properly.</sys:String>
<sys:String x:Key="LOCGeneralExtensionInstallApiVersionFails">Theme/Extension is using unsupported API version.</sys:String>
<sys:String x:Key="LOCGeneralExtensionInstallSuccess">Installation was successful.</sys:String>
<sys:String x:Key="LOCGeneralExtensionInstallTitle">Install extension?</sys:String>
<sys:String x:Key="LOCExtensionGeneric">Generic</sys:String>
<sys:String x:Key="LOCExtensionInstallFail" xml:space="preserve">Failed to install extension.
{0}</sys:String>
<sys:String x:Key="LOCExtensionInstallPrompt" xml:space="preserve">Do you want to install a new extension?
{0}
By {1}
Version {2}</sys:String>
<sys:String x:Key="LOCExtensionUpdatePrompt" xml:space="preserve">Do you want to update "{0}" extension?
Current version: {1}
New version: {2}</sys:String>
<sys:String x:Key="LOCThemeInstallFail" xml:space="preserve">Failed to install theme.
{0}</sys:String>
<sys:String x:Key="LOCThemeInstallPrompt" xml:space="preserve">Do you want to install a new theme?
{0}
By {1}
Version {2}</sys:String>
<sys:String x:Key="LOCThemeUpdatePrompt" xml:space="preserve">Do you want to update "{0}" theme?
Current version: {1}
New version: {2}</sys:String>
<sys:String x:Key="LOCUrlNavigationMessage" xml:space="preserve">You are about to leave Playnite and navigate to the following web page using your default web browser. Do you want to continue?
{0}</sys:String>
<sys:String x:Key="LOCGameImageSizeWarning" xml:space="preserve">The selected image(s) might be too large for optimal performance. Using very large images can result in worse UI responsiveness and increased memory usage.
Maximum recommended resolutions:
Icons: {0} mega pixels
Covers: {1} mega pixels
Backgrounds: {2} mega pixels</sys:String>
<sys:String x:Key="LOCPerformanceWarningTitle">Performance Warning</sys:String>
<sys:String x:Key="LOCDontShowAgainTitle">Don't Show Again</sys:String>
<sys:String x:Key="LOCLargeMediaWarningTooltip">Selected image file might be too large for optimal performance.</sys:String>
<sys:String x:Key="LOCThemeUninstallQuestion">Are you sure you want to uninstall selected theme? Uninstallation will be queued to next application start.</sys:String>
<sys:String x:Key="LOCThemeBuiltInUninstallHint">Built-in themes can't be uninstalled.</sys:String>
<sys:String x:Key="LOCThemeUnsupported">This theme doesn't support this version of Playnite.</sys:String>
<sys:String x:Key="LOCExtensionUninstallQuestion">Are you sure you want to uninstall selected extension? Uninstallation will be queued to next application start.</sys:String>
<sys:String x:Key="LOCExtensionBuiltInUninstallHint">Built-in extensions can't be uninstalled.</sys:String>
<sys:String x:Key="LOCExtensionUnsupported">This extension doesn't support this version of Playnite.</sys:String>
<sys:String x:Key="LOCExtensionInstallDir">Installation directory</sys:String>
<sys:String x:Key="LOCExtensionDataDir">Data directory</sys:String>
<sys:String x:Key="LOCDiagGenerating">Generating diagnostics package…</sys:String>
<sys:String x:Key="LOCDiagUploading">Uploading diagnostics package…</sys:String>
<sys:String x:Key="LOCAddFromExe">Import file…</sys:String>
<sys:String x:Key="LOCWhatIsThis">What is this?</sys:String>
<sys:String x:Key="LOCConfirumationAskGeneric">Are you sure you want to do this?</sys:String>
<sys:String x:Key="LOCStatsTotalPlayTime">Total play time</sys:String>
<sys:String x:Key="LOCStatsAvaragePlayTime">Average play time</sys:String>
<sys:String x:Key="LOCStatsTopPlayTime">Top play time</sys:String>
<sys:String x:Key="LOCOverviewLabel">Overview</sys:String>
<sys:String x:Key="LOCSidebar">Sidebar</sys:String>
<!--Common Library-->
<sys:String x:Key="LOCCommonLinksAchievements">Achievements</sys:String>
<sys:String x:Key="LOCCommonLinksForum">Forum</sys:String>
<sys:String x:Key="LOCCommonLinksNews">News</sys:String>
<sys:String x:Key="LOCCommonLinksStorePage">Store Page</sys:String>
<!--itch.io-->
<sys:String x:Key="LOCItchioSignInNotif">itch.io will be launched. Please sign in and then close this message.</sys:String>
<sys:String x:Key="LOCItchioSignInWaitMessage">Waiting for user to sign in, please close this when you're done…</sys:String>
<sys:String x:Key="LOCItchioClientNotInstalledError">itch.io app version 25 or newer is not installed.</sys:String>
<!--GOG-->
<sys:String x:Key="LOCGOGUseLogin">Account Login</sys:String>
<sys:String x:Key="LOCGOGUseAccountName">Account Name</sys:String>
<sys:String x:Key="LOCGOGAccountSyncDescription" xml:space="preserve">Login to your account or use your public account name to sync your full library.
Note that the Account Name option only works for accounts whose game libraries have been set in GOG's privacy settings to be publicly visible.</sys:String>
<!--Steam-->
<sys:String x:Key="LOCSteamCustomUrlName">Account URL Name</sys:String>
<sys:String x:Key="LOCSteamLoggedInUser">Authenticated User</sys:String>
<sys:String x:Key="LOCSteamRequiresApiKey">Account is private, API Key is required.</sys:String>
<sys:String x:Key="LOCSteamLinksCommunityHub">Community Hub</sys:String>
<sys:String x:Key="LOCSteamLinksDiscussions">Discussions</sys:String>
<sys:String x:Key="LOCSteamLinksGuides">Guides</sys:String>
<sys:String x:Key="LOCSteamLinksWorkshop">Workshop</sys:String>
<sys:String x:Key="LOCSteamUseVerticalCovers">Download vertical cover images</sys:String>
<sys:String x:Key="LOCSteamImportFreeSubGames">Import generic free items</sys:String>
<sys:String x:Key="LOCFullscreenFirstTimeError">The initial setup is not complete. Playnite will now restart to Desktop Mode to finish the procedure.</sys:String>
<sys:String x:Key="LOCQuickFilterRecentlyPlayed">Recently Played</sys:String>
<sys:String x:Key="LOCQuickFilterFavorites">Favorites</sys:String>
<sys:String x:Key="LOCQuickFilterMostPlayed">Most Played</sys:String>
<sys:String x:Key="LOCQuickFilterAllGames">All</sys:String>
<sys:String x:Key="LOCGameListFiltered">There are filters applied.</sys:String>
<sys:String x:Key="LOCGameListSearchResults">Search results for:</sys:String>
<sys:String x:Key="LOCItemAlreadyExists">An item with the same name already exists.</sys:String>
<sys:String x:Key="LOCRandomGameLimistToFilter">Limit selection to current filter</sys:String>
<sys:String x:Key="LOCRandomGamePickAnother">Pick another</sys:String>
<!--IGDB-->
<sys:String x:Key="LOCIgdbUseScreenshotIfNecessary">Use screenshots if artwork is not available</sys:String>
<sys:String x:Key="LOCIgdbMultipleArtworkOptionsTitle">If multiple images are available then use:</sys:String>
<sys:String x:Key="LOCIgdbSelectBackgroundTitle">Select background image for {0}</sys:String>
<!--Humble-->
<sys:String x:Key="LOCHumbleIgnoreThirdPartyStoreGames">Ignore third party store games</sys:String>
<sys:String x:Key="LOCHumbleImportTroveGames">Import Trove games</sys:String>
<sys:String x:Key="LOCHumbleIgnoreThirdPartyStoreGamesTooltip" xml:space="preserve">Enable to skip importing games that require third-party clients,
including stores already managed in Playnite, to prevent duplicates.</sys:String>
<sys:String x:Key="LOCHumbleImportThirdPartyDrmFree">Import if DRM free version is available</sys:String>
<sys:String x:Key="LOCHumbleImportThirdPartyDrmFreeTooltip">Import games requiring 3rd party client if DRM free version is also available.</sys:String>
<!--Xbox-->
<sys:String x:Key="LOCXboxXboxAppClientPriorityLaunch">Start Xbox Pass app instead of Microsoft Store when opening client</sys:String>
<sys:String x:Key="LOCXboxImport360Games">Import Xbox 360 games</sys:String>
<sys:String x:Key="LOCXboxImportXboneGames">Import Xbox One games</sys:String>
</ResourceDictionary>