-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStrings.Designer.cs
1854 lines (1647 loc) · 67.5 KB
/
Strings.Designer.cs
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
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Ifpa {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Strings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Strings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Ifpa.Strings", typeof(Strings).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to About.
/// </summary>
internal static string AboutPage_About {
get {
return ResourceManager.GetString("AboutPage_About", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ed Giardina.
/// </summary>
internal static string AboutPage_EdGiardina {
get {
return ResourceManager.GetString("AboutPage_EdGiardina", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Flagpedia.
/// </summary>
internal static string AboutPage_Flagpedia {
get {
return ResourceManager.GetString("AboutPage_Flagpedia", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to for the country flag icons used in the app.
/// </summary>
internal static string AboutPage_ForTheCountryFlagIconsUsedInTheApp {
get {
return ResourceManager.GetString("AboutPage_ForTheCountryFlagIconsUsedInTheApp", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to IFPA Companion.
/// </summary>
internal static string AboutPage_IFPACompanion {
get {
return ResourceManager.GetString("AboutPage_IFPACompanion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Learn More.
/// </summary>
internal static string AboutPage_LearnMore {
get {
return ResourceManager.GetString("AboutPage_LearnMore", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Leave a Review.
/// </summary>
internal static string AboutPage_LeaveAReview {
get {
return ResourceManager.GetString("AboutPage_LeaveAReview", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to .NET MAUI.
/// </summary>
internal static string AboutPage_NETMAUI {
get {
return ResourceManager.GetString("AboutPage_NETMAUI", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Thanks to .
/// </summary>
internal static string AboutPage_ThanksTo {
get {
return ResourceManager.GetString("AboutPage_ThanksTo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Thank you to the Github Sponsors!.
/// </summary>
internal static string AboutPage_ThankYouToTheGithubSponsors {
get {
return ResourceManager.GetString("AboutPage_ThankYouToTheGithubSponsors", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This app is written in C# and native APIs using.
/// </summary>
internal static string AboutPage_ThisAppIsWrittenInCAndNativeApisUsing {
get {
return ResourceManager.GetString("AboutPage_ThisAppIsWrittenInCAndNativeApisUsing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This app was written by .
/// </summary>
internal static string AboutPage_ThisAppWasWrittenBy {
get {
return ResourceManager.GetString("AboutPage_ThisAppWasWrittenBy", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Activity Feed.
/// </summary>
internal static string ActivityFeedPage_ActivityFeed {
get {
return ResourceManager.GetString("ActivityFeedPage_ActivityFeed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Mark All Seen.
/// </summary>
internal static string ActivityFeedPage_MarkAllSeen {
get {
return ResourceManager.GetString("ActivityFeedPage_MarkAllSeen", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Rank Changed.
/// </summary>
internal static string ActivityFeedRankChangeDataTemplate_RankChanged {
get {
return ResourceManager.GetString("ActivityFeedRankChangeDataTemplate_RankChanged", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to to .
/// </summary>
internal static string ActivityFeedRankChangeDataTemplate_To {
get {
return ResourceManager.GetString("ActivityFeedRankChangeDataTemplate_To", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Your rank changed from .
/// </summary>
internal static string ActivityFeedRankChangeDataTemplate_YourRankChangedFrom {
get {
return ResourceManager.GetString("ActivityFeedRankChangeDataTemplate_YourRankChangedFrom", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Tournament Result Posted.
/// </summary>
internal static string ActivityFeedTournamentResultDataTemplate_TournamentResultPosted {
get {
return ResourceManager.GetString("ActivityFeedTournamentResultDataTemplate_TournamentResultPosted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Tournament results for .
/// </summary>
internal static string ActivityFeedTournamentResultDataTemplate_TournamentResultsFor {
get {
return ResourceManager.GetString("ActivityFeedTournamentResultDataTemplate_TournamentResultsFor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to were posted to your profile.
/// </summary>
internal static string ActivityFeedTournamentResultDataTemplate_WerePostedToYourProfile {
get {
return ResourceManager.GetString("ActivityFeedTournamentResultDataTemplate_WerePostedToYourProfile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Calendar.
/// </summary>
internal static string AppShell_Calendar {
get {
return ResourceManager.GetString("AppShell_Calendar", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Champ. Series.
/// </summary>
internal static string AppShell_ChampSeries {
get {
return ResourceManager.GetString("AppShell_ChampSeries", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to More.
/// </summary>
internal static string AppShell_More {
get {
return ResourceManager.GetString("AppShell_More", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to My Stats.
/// </summary>
internal static string AppShell_MyStats {
get {
return ResourceManager.GetString("AppShell_MyStats", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Rankings.
/// </summary>
internal static string AppShell_Rankings {
get {
return ResourceManager.GetString("AppShell_Rankings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to IFPA Companion requires your permission before adding items to your Calendar.
/// </summary>
internal static string CalendarDetailPage_AddCalendarPermissionRequest {
get {
return ResourceManager.GetString("CalendarDetailPage_AddCalendarPermissionRequest", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add To Calendar.
/// </summary>
internal static string CalendarDetailPage_AddToCalendar {
get {
return ResourceManager.GetString("CalendarDetailPage_AddToCalendar", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Date.
/// </summary>
internal static string CalendarDetailPage_Date {
get {
return ResourceManager.GetString("CalendarDetailPage_Date", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Director.
/// </summary>
internal static string CalendarDetailPage_Director {
get {
return ResourceManager.GetString("CalendarDetailPage_Director", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Finals Format.
/// </summary>
internal static string CalendarDetailPage_FinalsFormat {
get {
return ResourceManager.GetString("CalendarDetailPage_FinalsFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Matchplay Link.
/// </summary>
internal static string CalendarDetailPage_Matchplay {
get {
return ResourceManager.GetString("CalendarDetailPage_Matchplay", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Player Limit.
/// </summary>
internal static string CalendarDetailPage_PlayerLimit {
get {
return ResourceManager.GetString("CalendarDetailPage_PlayerLimit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Private.
/// </summary>
internal static string CalendarDetailPage_Private {
get {
return ResourceManager.GetString("CalendarDetailPage_Private", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Qualifying Format.
/// </summary>
internal static string CalendarDetailPage_QualifyingFormat {
get {
return ResourceManager.GetString("CalendarDetailPage_QualifyingFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Registration Date.
/// </summary>
internal static string CalendarDetailPage_RegistrationDate {
get {
return ResourceManager.GetString("CalendarDetailPage_RegistrationDate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select which calendar to add this tournament to.
/// </summary>
internal static string CalendarDetailPage_SelectCalendarPrompt {
get {
return ResourceManager.GetString("CalendarDetailPage_SelectCalendarPrompt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Share.
/// </summary>
internal static string CalendarDetailPage_Share {
get {
return ResourceManager.GetString("CalendarDetailPage_Share", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Share Upcoming Tournament.
/// </summary>
internal static string CalendarDetailPage_SharePrompt {
get {
return ResourceManager.GetString("CalendarDetailPage_SharePrompt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Tournament added to your Calendar.
/// </summary>
internal static string CalendarDetailPage_TournamentAdded {
get {
return ResourceManager.GetString("CalendarDetailPage_TournamentAdded", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to add Tournament to your Calendar.
/// </summary>
internal static string CalendarDetailPage_TournamentNotAdded {
get {
return ResourceManager.GetString("CalendarDetailPage_TournamentNotAdded", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 0.
/// </summary>
internal static string CalendarFilterModalPage_0 {
get {
return ResourceManager.GetString("CalendarFilterModalPage_0", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cancel.
/// </summary>
internal static string CalendarFilterModalPage_Cancel {
get {
return ResourceManager.GetString("CalendarFilterModalPage_Cancel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Distance.
/// </summary>
internal static string CalendarFilterModalPage_Distance {
get {
return ResourceManager.GetString("CalendarFilterModalPage_Distance", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Find Events.
/// </summary>
internal static string CalendarFilterModalPage_FindEvents {
get {
return ResourceManager.GetString("CalendarFilterModalPage_FindEvents", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Location.
/// </summary>
internal static string CalendarFilterModalPage_Location {
get {
return ResourceManager.GetString("CalendarFilterModalPage_Location", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ranking Type.
/// </summary>
internal static string CalendarFilterModalPage_RankingType {
get {
return ResourceManager.GetString("CalendarFilterModalPage_RankingType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Set Calendar Location.
/// </summary>
internal static string CalendarFilterModalPage_SetCalendarLocation {
get {
return ResourceManager.GetString("CalendarFilterModalPage_SetCalendarLocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show Leagues?.
/// </summary>
internal static string CalendarFilterModalPage_ShowLeagues {
get {
return ResourceManager.GetString("CalendarFilterModalPage_ShowLeagues", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Calendar.
/// </summary>
internal static string CalendarPage_Calendar {
get {
return ResourceManager.GetString("CalendarPage_Calendar", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No IFPA Tournaments for the selected day.
/// </summary>
internal static string CalendarPage_CalendarEmptyText {
get {
return ResourceManager.GetString("CalendarPage_CalendarEmptyText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to My Location.
/// </summary>
internal static string CalendarPage_MyLocation {
get {
return ResourceManager.GetString("CalendarPage_MyLocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Toggle View.
/// </summary>
internal static string CalendarPage_ToggleView {
get {
return ResourceManager.GetString("CalendarPage_ToggleView", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cancel.
/// </summary>
internal static string Cancel {
get {
return ResourceManager.GetString("Cancel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event Count:.
/// </summary>
internal static string ChampionshipSeriesDetailPage_EventCount {
get {
return ResourceManager.GetString("ChampionshipSeriesDetailPage_EventCount", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Players:.
/// </summary>
internal static string ChampionshipSeriesDetailPage_Players {
get {
return ResourceManager.GetString("ChampionshipSeriesDetailPage_Players", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Win Count:.
/// </summary>
internal static string ChampionshipSeriesDetailPage_WinCount {
get {
return ResourceManager.GetString("ChampionshipSeriesDetailPage_WinCount", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Championship Series.
/// </summary>
internal static string ChampionshipSeriesList_Title {
get {
return ResourceManager.GetString("ChampionshipSeriesList_Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Current Leader:.
/// </summary>
internal static string ChampionshipSeriesPage_CurrentLeader {
get {
return ResourceManager.GetString("ChampionshipSeriesPage_CurrentLeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Filter.
/// </summary>
internal static string ChampionshipSeriesPage_Filter {
get {
return ResourceManager.GetString("ChampionshipSeriesPage_Filter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prize Value:.
/// </summary>
internal static string ChampionshipSeriesPage_PrizeValue {
get {
return ResourceManager.GetString("ChampionshipSeriesPage_PrizeValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unique Players:.
/// </summary>
internal static string ChampionshipSeriesPage_UniquePlayers {
get {
return ResourceManager.GetString("ChampionshipSeriesPage_UniquePlayers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Events: .
/// </summary>
internal static string CustomRankingsDetailPage_Events {
get {
return ResourceManager.GetString("CustomRankingsDetailPage_Events", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Rank: .
/// </summary>
internal static string CustomRankingsDetailPage_Rank {
get {
return ResourceManager.GetString("CustomRankingsDetailPage_Rank", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error.
/// </summary>
internal static string Error {
get {
return ResourceManager.GetString("Error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete.
/// </summary>
internal static string FavoritesPage_Delete {
get {
return ResourceManager.GetString("FavoritesPage_Delete", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Favorites.
/// </summary>
internal static string FavoritesPage_Title {
get {
return ResourceManager.GetString("FavoritesPage_Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to - .
/// </summary>
internal static string Hyphen {
get {
return ResourceManager.GetString("Hyphen", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Mi.
/// </summary>
internal static string Miles_Abbreviation {
get {
return ResourceManager.GetString("Miles_Abbreviation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to About.
/// </summary>
internal static string MoreItemsPage_About {
get {
return ResourceManager.GetString("MoreItemsPage_About", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Custom Rankings.
/// </summary>
internal static string MoreItemsPage_CustomRankings {
get {
return ResourceManager.GetString("MoreItemsPage_CustomRankings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Directors.
/// </summary>
internal static string MoreItemsPage_Directors {
get {
return ResourceManager.GetString("MoreItemsPage_Directors", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Favorites.
/// </summary>
internal static string MoreItemsPage_Favorites {
get {
return ResourceManager.GetString("MoreItemsPage_Favorites", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to More.
/// </summary>
internal static string MoreItemsPage_More {
get {
return ResourceManager.GetString("MoreItemsPage_More", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to News.
/// </summary>
internal static string MoreItemsPage_News {
get {
return ResourceManager.GetString("MoreItemsPage_News", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Rules.
/// </summary>
internal static string MoreItemsPage_Rules {
get {
return ResourceManager.GetString("MoreItemsPage_Rules", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Settings.
/// </summary>
internal static string MoreItemsPage_Settings {
get {
return ResourceManager.GetString("MoreItemsPage_Settings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Stats.
/// </summary>
internal static string MoreItemsPage_Stats {
get {
return ResourceManager.GetString("MoreItemsPage_Stats", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Comments.
/// </summary>
internal static string NewsDetailPage_Comments {
get {
return ResourceManager.GetString("NewsDetailPage_Comments", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to News item "{0}" has been published.
/// </summary>
internal static string NotificationService_NewBlogPostDescription {
get {
return ResourceManager.GetString("NotificationService_NewBlogPostDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to New News Item.
/// </summary>
internal static string NotificationService_NewBlogPostTitle {
get {
return ResourceManager.GetString("NotificationService_NewBlogPostTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Your IFPA rank has changed from {0} to {1}.
/// </summary>
internal static string NotificationService_NewRankNotificationDescription {
get {
return ResourceManager.GetString("NotificationService_NewRankNotificationDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to IFPA Rank Change.
/// </summary>
internal static string NotificationService_NewRankNotificationTitle {
get {
return ResourceManager.GetString("NotificationService_NewRankNotificationTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Tournament results for "{0}" have been posted to your IFPA profile.
/// </summary>
internal static string NotificationService_NewTournamentNotificationDescription {
get {
return ResourceManager.GetString("NotificationService_NewTournamentNotificationDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to New Tournament Result.
/// </summary>
internal static string NotificationService_NewTournamentNotificationTitle {
get {
return ResourceManager.GetString("NotificationService_NewTournamentNotificationTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Tournament "{0}" on {1} added to the IFPA calendar.
/// </summary>
internal static string NotificationService_NewTournamentOnCalendarDescription {
get {
return ResourceManager.GetString("NotificationService_NewTournamentOnCalendarDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to New Tournament on Calendar.
/// </summary>
internal static string NotificationService_NewTournamentOnCalendarTitle {
get {
return ResourceManager.GetString("NotificationService_NewTournamentOnCalendarTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to OK.
/// </summary>
internal static string OK {
get {
return ResourceManager.GetString("OK", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to %.
/// </summary>
internal static string PercentSign {
get {
return ResourceManager.GetString("PercentSign", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Permission Required.
/// </summary>
internal static string PermissionRequired {
get {
return ResourceManager.GetString("PermissionRequired", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Championship Series.
/// </summary>
internal static string PlayerChampionshipSeriesPage_ChampionshipSeries {
get {
return ResourceManager.GetString("PlayerChampionshipSeriesPage_ChampionshipSeries", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No championship data for the selected year.
/// </summary>
internal static string PlayerChampionshipSeriesPage_EmptyText {
get {
return ResourceManager.GetString("PlayerChampionshipSeriesPage_EmptyText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Championship Series Year.
/// </summary>
internal static string PlayerChampionshipSeriesPage_YearPrompt {
get {
return ResourceManager.GetString("PlayerChampionshipSeriesPage_YearPrompt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Search for My Player Record.
/// </summary>
internal static string PlayerDetailNoPlayerSelectedPage_Search {
get {
return ResourceManager.GetString("PlayerDetailNoPlayerSelectedPage_Search", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use the Star Icon on the Player Details view to select that player as you..
/// </summary>
internal static string PlayerDetailNoPlayerSelectedPage_StepFour {
get {
return ResourceManager.GetString("PlayerDetailNoPlayerSelectedPage_StepFour", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use the Search Icon on the Rankings Page to navigate to the player search..
/// </summary>
internal static string PlayerDetailNoPlayerSelectedPage_StepOne {
get {
return ResourceManager.GetString("PlayerDetailNoPlayerSelectedPage_StepOne", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select the player you wish to use from the list..
/// </summary>
internal static string PlayerDetailNoPlayerSelectedPage_StepThree {
get {
return ResourceManager.GetString("PlayerDetailNoPlayerSelectedPage_StepThree", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Type a partial or full name into the search bar and press "Search"..
/// </summary>
internal static string PlayerDetailNoPlayerSelectedPage_StepTwo {
get {
return ResourceManager.GetString("PlayerDetailNoPlayerSelectedPage_StepTwo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Follow these steps to add your IFPA player record to your 'My Stats' for tracking your progress.
/// </summary>
internal static string PlayerDetailNoPlayerSelectedPage_Subheader {
get {
return ResourceManager.GetString("PlayerDetailNoPlayerSelectedPage_Subheader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You haven't selected a 'My Stats' Player..
/// </summary>
internal static string PlayerDetailNoPlayerSelectedPage_Title {
get {
return ResourceManager.GetString("PlayerDetailNoPlayerSelectedPage_Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to (.
/// </summary>
internal static string PlayerDetailPage_ {
get {
return ResourceManager.GetString("PlayerDetailPage_", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Activity Feed.
/// </summary>
internal static string PlayerDetailPage_ActivityFeed {
get {
return ResourceManager.GetString("PlayerDetailPage_ActivityFeed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This player has been added to your favorites.
/// </summary>
internal static string PlayerDetailPage_AddFavorite {
get {
return ResourceManager.GetString("PlayerDetailPage_AddFavorite", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You have already configured your Stats page, do you wish to change your Stats to this player?.
/// </summary>
internal static string PlayerDetailPage_AlreadyConfigured {
get {
return ResourceManager.GetString("PlayerDetailPage_AlreadyConfigured", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avg Finish.
/// </summary>
internal static string PlayerDetailPage_AvgFinish {
get {
return ResourceManager.GetString("PlayerDetailPage_AvgFinish", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avg Finish Last Year.