forked from minj/foxtrick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoxtrick.properties
2125 lines (1987 loc) · 104 KB
/
foxtrick.properties
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
#used by translators to keep track. not used with foxtrick atm
properties.language=ENGLISH MASTER
#used by translators to keep track. not used with foxtrick atm
properties.version=HEAD
#used by translators to keep track. not used with foxtrick atm
properties.translators=Developers
#declaring direction of the transation. ltr for left-to-right, rtl for right-to-left
direction=ltr
#some strings use plural forms. for rules and pluralFormRuleID see https://developer.mozilla.org/en/Localization_and_Plurals
pluralFormRuleID=pluralFormRule1
module.LineupShortcut.desc=Add a shortcut to lineup on player's match history
module.ForumTemplates.desc=Allows turning forum posts into templates for later use (Also works for mails, tickets and Guestbook, editors)
module.ForumTemplates.DefaultShow.desc=Shows or hides your templates by default
module.ForumPreview.desc=Allows showing a post preview (Also works for mails, tickets, ads and guestbook)
module.ForumLeaveButton.desc=Adds a 'Leave forum' button to each forum folder
module.MoveLinks.desc=Moves the manager's series and flag links to the message header. Note: the 'Show avatars and info' function in Hattrick must be switched on for this to work!
#AttVsDef
module.AttVsDef.desc=Adds attack/defence comparison to the match page
module.AttVsDef.oldstyle.desc=old style
module.AttVsDef.newstyle.desc=new style
module.AttVsDef.oldstyleifkseparated.desc=old style (separated ind. set pieces)
#Ratings
module.Ratings.desc=Adds ratings to the match page
module.Ratings.HideAverages.desc=Hide average ratings
module.Ratings.HatStats.desc=HatStats
module.Ratings.HatStatsDetailed.desc=HatStats (detailed)
module.Ratings.LoddarStats.desc=LoddarStats
module.Ratings.PeasoStats.desc=PeasoStats
module.Ratings.VnukStats.desc=VnukStats
module.Ratings.HTitaVal.desc=HTitaVal
module.Ratings.GardierStats.desc=GardierStats
module.BookmarkAdjust.desc=Change the icon associated to a bookmark by entering a colour name in square brackets in the bookmark comment\: e.g. '[cyan]' will change the icon colour to cyan. Possible values\: aqua, B, black, blue, brown, cyan, darkpurple, green, idea, lightblue, lightgreen, orange, pink, purple, red, white, yellow
#TransferComparePlayers
module.TransferComparePlayers.desc=Add additional information to player transfer history.
module.TransferComparePlayers.ShowProfit.desc=Show price difference in player transfer history page.
module.FlagCollectionToMap.desc=Shows a world map with all the countries which flags you have collected in each category
module.TransferSearchFilters.desc=Allows for transfer list search filter templates
module.TransferSearchResultFilters.desc=Additional filters for filtering transfer search results
module.TransferDeadline.desc=Adds an extra line to each search result on the transfer market with days, hours and minutes until transfer ends
module.HTDateFormat.desc=Adds the global/local HT week and season to the most important dates on HT pages
module.HTDateFormat.LocalSeason.desc=Display local season instead of global season
module.HTDateFormat.FirstDayOfWeekOffset.desc=Use custom offset to set your first day of the week (0 \= Monday/default, -2 \= Saturday)
module.StaffMarker.desc=Highlights nick names on the forums and on team pages
module.StaffMarker.officials.desc=Highlight nick names of Hattrick officials
module.StaffMarker.manager.desc=Highlight nick names on team pages just like on forums
module.StaffMarker.own.desc=Custom markers in JSON format with user ID as key and style as value, e.g. {"1001" : "color: red;", "1002" : "background-color: yellow;"}
module.StaffMarker.forumInterface.desc=Add an interface to easily add custom user name colors in the footer of forum messages
module.StaffMarker.foxtrick.desc=Highlight foxtrick staff
module.StaffMarker.editor.desc=Highlight HT-Press editors
module.StaffMarker.chpp-contributors.desc=Highlight contributors to other CHPP apps
module.StaffMarker.chpp-holder.desc=Highlight all CHPP owners
module.StaffMarker.supporters.desc=Highlight your supporters and users you support
module.StaffMarker.coach.desc=Highlight NT and U21 coaches
#PlayerPositionsEvaluations
module.PlayerPositionsEvaluations.desc=Displays table in player details page with player's calculated contributions to all positions. It also shows best position next to player in various pages. Calculations made using http://wiki.hattrick.org/wiki/Hattrick_-_Skill_positions
module.PlayerPositionsEvaluations.title=Contributions to positions
module.PlayerPositionsEvaluations.contribution=Contribution
module.PlayerPositionsEvaluations.position=Position
module.PlayerPositionsEvaluations.ShowBestPosition.desc=Show best position. If not selected best position still will be shown in skill table.
module.PlayerPositionsEvaluations.Normalised.desc=Use normalised calculations. Skill contributions are divided by the sum of skill coefficients.
module.PlayerPositionsEvaluations.FormIncluded.desc=Include form into calculations. There is some error because we don't know exact form which can be anything between X.00 and X.99 Source: [post=16376110.4]
module.PlayerPositionsEvaluations.LoyaltyAndMCBIncluded.desc=Include loyalty and mother club bonuses into calculations. Bonuses are not given for players which are on transfer list (even your own).
module.PlayerPositionsEvaluations.ExperienceIncluded.desc=Include experience bonus into calculations. Source: [post=16376110.4]
module.PlayerPositionsEvaluations.StaminaIncluded.desc=Include stamina level into calculations.
module.PlayerPositionsEvaluations.BruisedIncluded.desc=Include bruised player penalty for bruised players into calculations, since exact bandage value is not known for us we just use average 5% penalty. Source: http://www.hattrickinfo.com/en/training/284/#281
#ForumYouthIcons
module.ForumYouthIcons.desc=Displays a link bar for the youth academy (Also works for mail, Press announcements, Guestbook and Ads)
module.ForumYouthIcons.q.desc=Adds icon for quote tags if missing
module.ForumYouthIcons.user_id.desc=Adds icon for UserID
module.ForumYouthIcons.kit_id.desc=Adds icon for KitID
module.ForumYouthIcons.article_id.desc=Adds icon for ArticleID
module.ForumYouthIcons.line_br.desc=Adds icon for line break
module.ForumYouthIcons.clock.desc=Adds icon for actual time
module.ForumYouthIcons.spoiler.desc=Adds icon for spoiler tags
module.ForumYouthIcons.youth_player.desc=Adds icon for YouthPlayerID
module.ForumYouthIcons.youth_team.desc=Adds icon for YouthTeamID
module.ForumYouthIcons.youth_match.desc=Adds icon for YouthMatchID
module.ForumYouthIcons.youth_series.desc=Adds icon for YouthSeriesID
module.ForumYouthIcons.enlarge_input.desc=Enlarges textbox for better writing
module.ForumYouthIcons.pre.desc=Adds icon for Forum 'pre' format
module.ForumYouthIcons.table.desc=Adds icon for table. Custom tag accepts regular expressions (Mask '\\' with additional '\\', eg '\\\\'.)
module.ForumYouthIcons.symbols.desc=Adds icon for symbols below. Entries are separated by semi-colons. To use a semi-colon enter "/;".
module.ForumYouthIcons.debug.desc=Adds icon for FoxTrick debug log
module.ForumYouthIcons.settings.desc=Adds icon for FoxTrick settings
module.ForumYouthIcons.tournament.desc=Adds icon for TournamentID
module.ForumYouthIcons.tournament_match.desc=Adds icon for TournamentMatchID
module.ForumYouthIcons.nt_team_id.desc=Adds icon for NTTeamID
#FormatPostingText
module.FormatPostingText.desc=Replaces FoxTrick HT-ML tags with HTML tags (i.e. 'pre' element)
module.FormatPostingText.NestedQuotesAsSpoilers.desc=Shows nested quotes in a spoiler. Specify the level below.
#EmbedMedia
module.EmbedMedia.desc=Detects links to media files and embeds them into the site. (Experimental)
module.EmbedMedia.EmbedYoutubeVideos.desc=Embed YouTube videos
module.EmbedMedia.EmbedVimeoVideos.desc=Embed Vimeo videos
module.EmbedMedia.EmbedDailymotionVideos.desc=Embed Dailymotion videos
module.EmbedMedia.EmbedModeOEmebed.desc=Use oEmbed to embed media (Firefox and Chrome only)
module.EmbedMedia.ReplaceLinksByTitles.desc=Replace the link text by the label of the media item, e.g. the image name
module.EmbedMedia.EmbedSoundCloud.desc=Embed Soundcloud
module.EmbedMedia.EmbedFlickrImages.desc=Embed Flickr images
module.EmbedMedia.EmbedDeviantArtImages.desc=Embed Deviantart images
module.EmbedMedia.EmbedGenericImages.desc=Embed images if the link is a link to an image
module.EmbedMedia.EmbedGenericImagesClever.desc=Try to guess the correct image address even if the original link does not initially appear to be pointing at an image.
module.EmbedMedia.EmbedImageshack.desc=Extended ImageShack support (Firefox and Chrome only)
#Forum direct page links
module.DirectPageLinks.desc=Adds links that allow you to jump to a certain page in a Forum thread.
#
module.CopyPostID.desc=Provide a link to copy a post's ID
module.CopyPosting.desc=Add icon to copy the posting including references
module.ShowForumPrefButton.desc=Link to forum preferences on forum pages
module.Links.desc=Basic module essential for other link modules to work properly.
module.Links.ReuseTab.desc=Reuse one tab for all external links
module.LinksLeague.desc=Adds some external links to the series page
module.LinksTeam.desc=Adds some external links to the team page
module.LinksCountry.desc=Adds some external links to the country page
module.LinksChallenges.desc=Adds some external links to the challenges page
module.LinksEconomy.desc=Adds some external links to the economy page
module.LinksYouthOverview.desc=Adds some external links to the youth overview page
module.LinksYouthTraining.desc=Adds some external links to the youth training page
module.LinksYouthPlayerDetail.desc=Adds some external links to the youth player details page
module.LinksYouthPlayerList.desc=Adds some external links to the youth players page
module.LinksYouthMatchList.desc=Adds some external links to the youth matches page
module.LinksYouthLeague.desc=Adds some external links to the youth league page
module.LinksArena.desc=Adds some external links to the arena page
module.LinksCoach.desc=Adds some external links to the new-coach page
module.LinksPlayerDetail.desc=Adds some external links to the players detail page
module.LinksMatch.desc=Adds some external links to the match page
module.LinksTraining.desc=Adds some external links to the training page
module.LinksAlliances.desc=Adds some external links to the federation page
module.LinksNational.desc=Adds some external links to the national team page
module.LinksFans.desc=Adds some external links to the fans page
module.LinksPlayers.desc=Adds some external links to the players page
module.LinksManager.desc=Adds some external links to the manager page
module.LinksAchievements.desc=Adds some external links to the achievements page
module.LinksTracker.desc=Adds some external tracker links to the corresponding NT pages and player pages
module.LinksClubTransfers.desc=Adds some external links to the club transfer page
module.LinksWorld.desc=Adds some external links to the world page
module.LoyaltyDisplay.desc=Highlight the effect of loyalty and mother club bonus on your personal player page (Works only with 'Show skill bars' option enabled in HT preferences)
module.ForumAlterHeaderLine.desc=Alters posting header line
module.ForumAlterHeaderLine.SingleHeaderLine.desc=Forces single-line forum posting headers even when detailed headers are enabled.
module.ForumAlterHeaderLine.HideOldTime.desc=Hides hours if posting is from day before or older
module.ForumAlterHeaderLine.TruncateLongNick.desc=Shows only the first 14 characters of long aliases and series names in forum posts.
module.ForumAlterHeaderLine.TruncateLeagueName.desc=Shows only the division.
module.ForumAlterHeaderLine.ShortPostId.desc=Remove PostIDs, show only the message number of post (If using HT function, 'detailed header')
module.ForumAlterHeaderLine.SmallHeaderFont.desc=Removes some spaces and uses font size 10 for forum headers
module.ForumAlterHeaderLine.CheckDesign.desc=Checks if single-line forum posting headers are broken and expands them.
module.ForumAlterHeaderLine.ReplaceSupporterStar.desc=Replaces supporter star image with a text * to save space
module.ForumAlterHeaderLine.BookmarkHeaderSmall.desc=Replaces 'bookmark post' icon with smaller one
module.ForumAlterHeaderLine.HighlightThreadOpener.desc=Highlights IDs of all posts posted by thread opener
module.AddDefaultFaceCard.desc=Show a default face for users who don't have one in forum posts
module.OriginalFace.desc=Show original face of players
module.OriginalFace.HideTransfer.desc=Hide transfer images on faces
module.OriginalFace.HideInjury.desc=Hide injury images on faces
module.OriginalFace.HideSuspended.desc=Hide suspended images on faces
module.OriginalFace.ColouredYouth.desc=Show coloured face for youth players (may cause problems on Windows Vista)
module.ConfirmActions.desc=Ask user to confirm before certain actions
module.ConfirmActions.Bid.desc=Bidding on a player
module.ConfirmActions.TransferList.desc=Putting a player on transfer list
module.ConfirmActions.NtChange.desc=Adding/removing a player to/from national team
module.PersonalityImages.desc=Add coloured numbers for popularity, character and psyche on the player page
module.HideSignatures.desc=Hide the signatures in forum posts, display a 'Signature' link instead
module.ForumModeratorPopup.desc=Adds a popup menu on top of the thread to simplify moderation
module.ForumNextAndPrevious.desc=Remove the 'Next' and 'Previous' buttons on forum threads if they are disabled
module.ForumLastPost.desc=Jump to last posting instead of jumping to the first posting of read threads
module.ForumLastPost.lastpage.desc=Jump to last page, not last posting
module.ForumLastPost.unlessOpen.desc=Unless the thread is already open
module.MatchPlayerColouring.desc=Colours the players depending on their team in the match report. When using links on player details page, it highlights this player only
module.MatchPlayerColouring.SeparateOwnPlayerColors.desc=Separate own player colouring
module.MatchReportFormat.desc=Presentation of the report line by line according to match events.
module.MatchReportFormat.ShowEventIcons.desc=Add event specific icons.
module.MatchLineupFixes.desc=Fixes HT bugs in the new match lineup page
module.MatchLineupFixes.FixWeatherSEs.desc=Show player names for weather SEs
module.MatchLineupFixes.AddStarsToSubs.desc=Add last star count to players on the bench
module.MatchLineupFixes.FixMultipleEvents.desc=Fixes multiple events happening at the same time (e. g. injury & substitution, multiple subs, etc). Players change their positions step by step instead of all at once.
module.MatchLineupTweaks.desc=New match lineup page tweaks
module.MatchLineupTweaks.ConvertStars.desc=Change the star display mode from numerical into icon-based. Mimics the old ratings page.
module.MatchLineupTweaks.DisplayTeamNameOnField.desc=Show team names on the field
module.MatchLineupTweaks.ShowSpecialties.desc=Show players' specialties
module.MatchLineupTweaks.ShowFaces.desc=Show players' faces
module.MatchLineupTweaks.StaminaCounter.desc=Show team average stamina statistics
module.MatchLineupTweaks.StarCounter.desc=Show team star statistics
module.MatchLineupTweaks.HighlighEventPlayers.desc=Highlight players relevant to an event in a match
module.LiveMatchReportFormat.desc=Presentation of the HT-Live and the HT Re-Live report line by line, according to match events with event specific icons.
module.MatchLineupTweaks.AddSubstiutionInfo.desc=Add substitution icon to players going in/out. Hovering over the icon displays substitution time. Clicking on it highlights the other player involved.
module.MatchLineupTweaks.HighlightMissing.desc=Indicate players no longer in the team
module.MatchLineupTweaks.InvertSplit.desc=Flip away team to align it with the home team
module.MatchLineupTweaks.SplitLineup.desc=Split lineup to show only one team at a time
module.MatchLineupTweaks.GatherStaminaData.desc=Gather your players' stamina data every time you visit your match page. Will be used for better ratings prediction in MatchSimulator module and can be viewed in SkillTable. A player must play the whole 90 minutes. Matches with pressing or negative weather SEs (for powerful players) are excluded. Prediction formula was created by Pappagallopoli.
module.MatchRatingsTweaks.desc=Match report ratings tweaks
module.MatchRatingsTweaks.FollowChanges.desc=Display numeric ratings and follow their changes when browsing the timeline in rating details tab.
module.MatchRatingsTweaks.Ratings.desc=Integrate Ratings module
module.MatchRatingsTweaks.RealProbabilities.desc=Calculate real scoring/defending/possession probabilities
module.MatchWeather.desc=Show weather for today and tomorrow on match page
module.MatchWeather.Irl.desc=Show IRL weather for today and tomorrow on match page
module.ForumRedirManagerToTeam.desc=Redirect links from manager page to team page on forum links
module.ManagerButtons.desc=Add or change manager buttons on manager and team page
module.ManagerButtons.GuestBook.desc=Adds Write in Guestbook link to manager page and team page
module.HTThreadMarker.desc=Marks threads created by HTs
module.TeamStats.desc=Compiles an overview of a team's players.
module.TeamStats.General.desc=General information (TSI/age)
module.TeamStats.Specialty.desc=Specialty
module.TeamStats.Personality.desc=Personality
module.TeamStats.Status.desc=Status (cards/injures)
module.TeamStats.Attributes.desc=Attributes
module.TeamStats.Skills.desc=Skills
module.TeamStats.Match.desc=Match
module.TeamStats.Current_league.desc=Current League
module.ExtraPlayerInfo.desc=Show extra information of players on players page.
module.ExtraPlayerInfo.CoachInfo.desc=Show information of former and current coaches.
module.ExtraPlayerInfo.Flag.desc=Show nationalities of players as flags.
module.ExtraPlayerInfo.Language.desc=Show mother tongue of players.
module.PlayerFilters.desc=Add a select box for filtering players on players page.
module.HistoryStats.desc=Compiles an overview of team's history.
module.LargeFlags.desc=Enlarge flags on player page if faces are shown (may crash on GNU/Linux)
module.GoToPostBox.desc=Adds box a GoToPostX box to forum page
module.TeamSelectBox.desc=Replaces the list of players by a select box on players page. Clicking on the header switches between list and select box.
module.CopyPlayerAd.desc=A button on player's page for copying his details (in HT-ML).
module.CopyPlayerAd.Sorted.desc=Sort the skills in descending order.
module.CopyPlayerAd.NonTableStyle.desc=Copy in plain style without tables.
module.CustomMedals.desc=Replaces the new Hattrick medals with the old style ones
module.SeniorTeamShortCuts.desc=Adds coach and last lineup links to senior teams
module.SeniorTeamShortCuts.OnlyOtherPages.desc=Show only on other team pages
module.SeniorTeamShortCuts.AllPages.desc=Show on all pages
#ExtendedPlayerDetails
module.ExtendedPlayerDetails.desc=Displays some helpful information in the player details
module.ExtendedPlayerDetails.Language.desc=Show player's mother tongue.
module.ExtendedPlayerDetails.SWD.desc=Display contract duration as seasons - weeks - days
module.ExtendedPlayerDetails.SW.desc=Display contract duration as seasons - weeks
module.ExtendedPlayerDetails.SD.desc=Display contract duration as seasons - days
module.ExtendedPlayerDetails.WD.desc=Display contract duration as weeks - days
module.ExtendedPlayerDetails.D.desc=Display contract duration as days
module.ExtendedPlayerDetailsWage.desc=Shows wage without bonus and/or seasonal wage
module.ExtendedPlayerDetailsWage.WageWithoutBonus.desc=Displays wage without bonus
module.ExtendedPlayerDetailsWage.SeasonWage.desc=Displays seasonal wage
module.FixcssProblems.desc=Fixes some Problems of wrong HT css styles
module.FixcssProblems.RTL_Fixes.desc=Fixes some HT error for right-to-left writing languages
module.FixcssProblems.MatchReportRatingsFontFix.desc=Increase font size for HT 'small font' format.
module.FixcssProblems.RemoveForumSneakPeak.desc=Remove 'Forum sneak-peek' from all pages.
module.SimplePresentation.desc=Additional presentation options
module.SimplePresentation.League_Table.desc=Adds vertical lines to league table for easier reading
module.SimplePresentation.Guestbook.desc=Increases readability in the guestbook (indent message with gray background)
module.SimplePresentation.liveHighlightRed.desc=Highlights new events red in HT Live
module.SimplePresentation.HideAchievementsIcons.desc=Hides icons on achievement page
module.SimplePresentation.NoLogo.desc=Hides team logos
module.SimplePresentation.NoDefaultLogo.desc=Hides default (empty) logos for teams that didn't set their own custom logo
module.ForumPresentation.desc=Additional Forum presentation options
module.ForumPresentation.HideFlagsInForumHeader.desc=Removes user flags from the Forum post header
module.ForumPresentation.HideLeagueInForumHeader.desc=Removes user series from the Forum post header
module.ForumPresentation.Forum_Spoiler_reveal.desc=Always displays the content of spoilers
module.ForumPresentation.Forum_NewPostsInBracket.desc=Display number of new postings in brackets behind the posting count
module.ForumPresentation.Forum_Link_Grey_Icons.desc=Display icons instead of text links in forum footer
module.ForumPresentation.moved_avatarinfo_fix.desc=Fixes wrongly placed avatar info if the posting header gets too full
module.SkinPlugin.desc=Adds your own CSS skin to Hattrick
module.CurrencyConverter.desc=Converting a HT currency
module.MovePlayerStatement.desc=Moves player statements to the players image. If images are disabled, the statements will be removed.
module.MovePlayerStatement.DeleteInstead.desc=Deletes the statement instead even if the images are enabled.
module.TickerColoring.desc=The different events displayed in the news ticker will be coloured.
#ExtraShortcuts
module.ExtraShortcuts.desc=Adds shortcuts to the main shortcuts
module.ExtraShortcuts.AddLeft.desc=Check to add icon left, uncheck to add them right
module.ExtraShortcuts.AddSpace.desc=Increase space for shortcut icons
module.ExtraShortcuts.Stage.desc=Link to Hattrick Stage
module.ExtraShortcuts.Supporterstats.desc=Link to supporter stats
module.ExtraShortcuts.Transfers.desc=Link to transfers page of the own team
module.ExtraShortcuts.Prefs.desc=Link to preferences page
module.ExtraShortcuts.ManageCHPP.desc=Link to CHPP preferences page
module.ExtraShortcuts.FoxTrickPrefs.desc=Link to FoxTrick preferences page
module.ExtraShortcuts.No9.desc=No9 Radio
module.ExtraShortcuts.Latehome.desc=Latehome Radio
#CopyMatchID
module.CopyMatchID.desc=Copies the match id when clicking on the league/cup/friendly/tournament icon on matches or matches archive page. For supporters works as well on the 'Head to Head' page ('Latest matches' and 'History' tabs).
module.CopyRatings.desc=Add links to ratings table on match report page for copying ratings (in HT-ML)
module.CrossTable.desc=Adds an extra table to Fixtures, where all results on league matches are presented including line graph of league positions
module.ElectionTable.desc=Adds percentage to election table (only displayed votes are counted, not all)
module.ContextMenuCopy.desc=Options at the context menu for copying ID and/or link and content in HT-ML
module.ContextMenuCopy.Id.desc=Option for copying ID
module.ContextMenuCopy.Link.desc=Option for copying link location in HT-ML
module.ContextMenuCopy.external.desc=Option for copying link with external URL
module.ContextMenuCopy.HtMl.desc=Option for copying selected content in HT-ML
module.ContextMenuCopy.Table.desc=Option for copying table in HT-ML
module.NewMail.desc=Highlight new mail count and new forum message count
module.NewMail.NotifyMail.desc=Show a notification if there are new mails to you
module.NewMail.NotifyMailSound.desc=Play sound on new mail
module.NewMail.NotifyForum.desc=Show a notification if there are new forum replies to you
module.NewMail.NotifyForumSound.desc=Play sound on new forum reply
module.CopyYouth.desc=Copy functions for youth reports and sources
module.CopyYouth.TrainingReport.desc=Training report
module.CopyYouth.ScoutComment.desc=Scout comment
module.CopyYouth.AutoSendTrainingReportToHY.desc=Send coach comments to hattrick youthclub automatically. For HY users only.
module.CopyYouth.AutoSendTrainingChangesToHY.desc=Send youth training changes to hattrick youthclub automatically. For HY users only.
module.CopyYouth.AutoSendRejectedToHY.desc=Send scout comments of rejected players to hattrick youthclub automatically. For HY users only.
module.CopyYouth.FixturesSource.desc=Fixtures source
module.PlayerBirthday.desc=Shows last and coming birthdays in players overview
module.MovePlayerSelectbox.desc=Moves players select box up on players detail page
module.SeasonStats.desc=Shows some stats on the match archive pages
module.LeagueNewsFilter.desc=Filters for showing a certain type of league news.
module.LeagueNewsFilter.all.desc=Show all news
module.LeagueNewsFilter.friendlies.desc=Show only international friendlies and changed coaches
module.LeagueNewsFilter.transfers.desc=Show only transfers
module.LeagueNewsFilter.lineupChanges.desc=Show only lineup changes
#MoveManagerOnline
module.MoveManagerOnline.desc=Moves managers online up on region page. Caution! This gets very slow if the list of online players get over 100.
module.TeamPopupLinks.desc=Displays a small pop-up window with quick links when you hover over a TeamID link
module.TeamPopupLinks.TeamHighlight.desc=Highlight current team in tables
module.TeamPopupLinks.TeamLinks.desc=Add popups to team links
module.TeamPopupLinks.UserLinks.desc=Add popups to manager links
module.TeamPopupLinks.Manager.desc=Manager (for team links only)
module.TeamPopupLinks.Team.desc=Team (for manager links only)
module.TeamPopupLinks.Matches.desc=Matches
module.TeamPopupLinks.Players.desc=Players
module.TeamPopupLinks.last_5_ips.desc=6 latest logins
module.TeamPopupLinks.Guestbook.desc=Guestbook
module.TeamPopupLinks.SendMessage.desc=Send message
module.TeamPopupLinks.Challenge.desc=Challenge
module.TeamPopupLinks.Achievements.desc=Achievement
module.TeamPopupLinks.TeamAnalysis.desc=Team Analysis
module.TeamPopupLinks.TransferHistory.desc=Transfer history
module.TeamPopupLinks.TeamHistory.desc=Club history
module.TeamPopupLinks.LastLineup.desc=Last lineup
module.TeamPopupLinks.NextMatch.desc=Next Match
module.TeamPopupLinks.AddNextMatch.desc=Adds next match to HT Live
module.TeamPopupLinks.YouthMatches.desc=Youth matches
module.TeamPopupLinks.Tournaments.desc=Tournaments
module.TeamPopupLinks.Coach.desc=Coach
module.TeamPopupLinks.FlagCollection.desc=Flag collection
module.TeamPopupLinks.Series.desc=Series
module.TeamPopupLinks.CustomLink.desc=Custom links in seperate lines. The tags [UserID] and [TeamID] will be replaced by the actual IDs. Example\: {"link"\:"http\://example.com/[teamid]", "title"\:"example link", "more"\: false, "newTab"\:true}
module.SkillColoring.desc=Better visualisation of skills
module.SkillColoring.skill_color.desc=Colourises skills
module.SkillColoring.non_skill_color.desc=Colourises personalities, fan mood etc.
module.SkillColoring.skill_number.desc=Show skills also as number e.g. solid (7)
module.SkillColoring.skill_translated.desc=Show skills translated to English e.g. gut (solid)
module.SkillColoring.skill_translated_title.desc=Show translation only when hovered over with mouse
module.SkillColoring.no_colors.desc=Removes all colors from skill and personality links
module.MatchIncome.desc=Match income in the match report
module.MatchIncome.UtilizationPercentages.desc=Show seat utilization in percentages
#YouthSkillHideUnknown
module.YouthSkillHideUnknown.desc=Hide unknown skills and/or "maximum" word on youth players page
module.YouthSkillHideUnknown.HideUnknown.desc=Hide unknown skills
module.YouthSkillHideUnknown.HideMaximalKeyWord.desc=Hide "maximum" word to gain more space
module.SkillTable.desc=Show skills of players as a table.
module.SkillTable.OtherTeams.desc=Enable for other teams
module.SkillTable.ColouredYouth.desc=Show coloured youth skills
module.SkillTable.FrozenColumns.desc=Freeze key columns to disable their scrolling in collapsed view
module.SkillTable.FullNames.desc=Always display full player names
#HighlightCupwins
module.HighlightCupwins.desc=Highlight winning teams on cup matches page
module.HighlightCupwins.HighlightCupsets.desc=Highlight Cup sets (matches won by the team of lower ranking)
module.SkillTranslation.desc=Adds English translations to skills on help/denominations page
#CountryList
module.CountryList.desc=Modifications for country names
module.CountryList.SelectBoxes.desc=Replaces country names in select boxes with their native names
module.CountryList.UseEnglish.desc=Add English country names instead
module.CountryList.TeamPage.desc=Displays a text link to the league before the region and series on team page
module.CountryList.ManagerPage.desc=Displays a text link to the league before the language on manager page
module.CountryList.HideFlagOntop.desc=Removes the image link to the league on team page
module.CountryList.Flags.desc=Replaces country names in flag collection with their native names
module.CountryList.FlagSort.desc=Resort flags accordingly
module.YouthPromotes.desc=Shows days to promote a youth player
module.HTMSPrediction.desc=Add result prediction on match report page provided by HTMS: http://www.fantamondi.it/HTMS/ (by taised)
module.HTMSPrediction.Mimimi.desc=Shows how lucky the home or away team was in a match.
module.HighlightOwnerless.desc=Highlights ownerless teams on the series page.
module.LastLogin.desc=Displays time since last login on user's page
module.ForumStripHattrickLinks.desc=Strips the server from internal links in forum to make them usable. Also adds whitespace for nested i/b/u in pre tags (FormatPostingText module)"
module.ForumStripHattrickLinks.NoConfirmStripping.desc=No confirmation before stripping links
module.RapidId.desc=A convenient input box on the top of page to view team, player, etc. by id
module.YouthSeriesEstimation.desc=In search result table, estimates the start time of youth series that are in season break.
module.LocalTime.desc=Optionally show time in local time zone instead of Hattrick time zone
module.ForumThreadAutoIgnore.desc=Automatically ignore forum topics with selected tags (topics with [Tag] or {Tag}).
module.ForumThreadAutoIgnore.Tags.desc=List of tags, eg: NT, idea, Bug. Comma separated, case insensitive.
module.ForumThreadAutoIgnore.Whitelist_ThreadIDs.desc=White-list threads by their IDs (the part before the dot). Threads in white-list will not be ignored. Comma separated.
module.TableSort.desc=Makes all 'proper' tables sortable which have a header (including tables in forum postings)
module.LiveAlert.desc=Show a notification for HT Live goals
module.LiveAlert.Notification.desc=Use a browser notification
module.LiveAlert.Sound.desc=Also alert with a sound
module.LiveAlert.home.desc=Home goals
module.LiveAlert.away.desc=Away goals
module.LiveAlert.own.desc=Your goals
module.LiveAlert.opponent.desc=Your opponent's goals
module.OldStyleFace.desc=Show faces in old Hattrick style
module.NtPeek.desc=Peeks NT/U21 matches on country page and My Hattrick
module.SeriesFlags.desc=Show series flags beside user links
module.SeriesFlags.Guestbook.desc=Show in guest book
module.SeriesFlags.Supporters.desc=Show in the supporters box of a team
module.SeriesFlags.Visitors.desc=Show in recent visitors box
module.SeriesFlags.Tournaments.desc=Show in the tournament tables
module.SeriesFlags.CountryOnly.desc=Display the country flag without series name
module.HTMSPoints.desc=Show the training points for a player calculated with HTMS skill table
module.HTMSPoints.AddToPlayer.desc=Show on player page
module.HTMSPoints.AddToSearchResult.desc=Show on transfer search result page
module.HTMSPoints.AddToPlayerList.desc=Show on player list page
module.TableOfStatisticalTruth.desc=Statistical prediction of series’ final standing positions (only for finished seasons).
module.FriendlyInterface.desc=Tweaks to provide friendlier interface
module.FriendlyInterface.NtLinkForNtPlayer.desc=Display national teams as links for national players
module.FriendlyInterface.HideAnswerTo.desc=Hide answer-to links in guest book
module.FriendlyInterface.HideSpeechlessSecretary.desc=Hide the secretary if he has nothing to report
module.MyMonitor.desc=Monitor recent matches of friends and foes at My Hattrick
module.MyMonitor.TeamIcons.desc=Show team logos
module.MyMonitor.ManualSort.desc=Sort manually
module.MyMonitor.SortByName.desc=Sort by name
module.MyMonitor.SortByID.desc=Sort by ID
module.MarkAllAsRead.desc=A button to mark all threads in all forums as read
module.ShowFriendlyBooked.desc=Show whether a team has booked a friendly on series page
module.ShowFriendlyBooked.OnDemand.desc=Show friendlies on demand only
module.TickerAlert.desc=Display a notification when a new ticker has arrived. Keep text field empty to display alert only and no sound.
module.ShowLineupSet.desc=Highlight teams that have set a lineup, and/or ownerless teams, and/or winning teams in league fixture/result table, and/or own team standings
module.ShowLineupSet.LineupSet.desc=Highlight teams that have set a lineup
module.ShowLineupSet.Ownerless.desc=Highlight ownerless teams
module.ShowLineupSet.Winning.desc=Highlight winning teams
module.ShowLineupSet.Standing.desc=Highlight your own team in standings tables
module.SupporterStatsEnhancements.desc=Highlights current squad players in supporter stats
module.MobileEnhancements.desc=Set of enhancements for mobile devices
module.MatchOrderNew.desc=Tweaks on the new match order interface.
module.MatchOrderNew.UseRatingsModule.desc=Integrate Ratings module
module.MatchOrderInterface.desc=Tweaks on the match order interface.
module.MatchOrderInterface.GotTrainingOnField.desc=Players that already have received training will also be marked on the playing field (for supporters only)
module.MatchOrderInterface.DisplayLastMatchInDetails.desc=Shows information about the last match in the details popup
module.MatchOrderInterface.CloneOrder.desc=Add a link to clone orders
module.MatchOrderInterface.AutoExpandCloned.desc=Automatically expand cloned order
module.MatchOrderInterface.Specialties.desc=Show player specialties
module.MatchOrderInterface.ShowFaces.desc=Show player faces instead of the shirt for future and old Lineups
module.MatchOrderInterface.StayOnPage.desc=Stay on the match order page after saving
module.MatchOrderInterface.SwapPositions.desc=Add a link to swap players from left to right
module.MatchOrderInterface.FixPenaltyTakers.desc=Change penalty takers list behavior from 'replace player' to 'swap places'
module.MatchOrderInterface.AddPenaltyTakerButtons.desc=Add buttons to clear the penalty takers list and fill it with the current squad
module.MatchOrderInterface.UseSubsForPenalties.desc=Also add players on the bench
module.MatchOrderInterface.DontSortPenaltyTakers.desc=Sort by the player list instead of HO formula
module.MatchOrderInterface.PrioritizeSP.desc=Add set pieces taker first
module.MatchOrderInterface.ClearPenaltyTakersFirst.desc=Clear the list before filling
module.MatchSimulator.desc=Adds a match simulator to the match order interface.
module.MatchSimulator.RatingsOnTop.desc=Keeps rating prediction on top
module.MatchSimulator.RatingsBelow.desc=Displays prediction below
module.MatchSimulator.RatingsRight.desc=Displays prediction on the right
module.MatchSimulator.HTMSPrediction.desc=Add HTMS prediction
module.MatchSimulator.UseRatingsModule.desc=Integrate Ratings module
module.MatchSimulator.StaminaPrediction.desc=Use stamina prediction data gathered in MatchLineupTweaks module.
module.HeaderToggle.desc=Clicking on h2-headers toggles showing and hiding of the following section. Remembers last setting individually based on page type and header title
module.Filter.desc=Adds filters to country's top players page
module.Filter.ShowOwned.desc=Highlight your own players in the Top Players statistics page
module.RatingsDisplay.desc=Displays average ratings in a different style
module.RatingsDisplay.DenominationsRange.desc=In the 0-20 denominations range
module.RatingsDisplay.HatStats.desc=As HatStats
module.RatingsDisplay.HTSums.desc=As Hattrick ratings sums
module.SafeForWork.desc=Replaces the icon and the title text of Hattrick tabs to look less suspicious. Make sure you also disable all other modules that might be risky, especially the "Alert" modules.
module.PlayerStatsExperience.desc=Displays the experience subskill on the playerStats page
module.PlayerStatsExperience.AlwaysShowAll.desc=Show as many matches as possible by default when using the links on the players page or the performance history page
module.YouthTwins.desc=Displays the amount of possible twins for your youth players in conjunction with hattrick youthclub. You don't need to have a hattrick youthclub account to use this module.
module.YouthTwins.HideInfoLink.desc=Disable information link for newcomers
module.FriendlyPool.desc=Colorize visited countries in the friendly pool selection
module.FriendlyPool.ExpandCountrySelection.desc=Expand country selection
#accessability
module.ARIALandmarks.desc=Add ARIA landmark roles to all sections of the website to make navigation easier when using screenreaders
#supporters
module.SupportersList.desc=Show supported teams who support you back
module.SupportersList.SupporterBack.desc=Add icon to supported teams who support you back
module.SupportersList.SupportedBack.desc=Add icon to your supporters who you support back
module.SupportersList.Series.desc=Also mark teams on the series pages
#fans
module.Fans.desc=Add information to fans page
module.Fans.AddLiveLink.desc=Add a live link next to future matches' links
module.Fans.ShowSumFans.desc=Display total of fans evolution in sidebar
module.TransferHistoryFilters.desc=Adds filter options to the team transfer history page
module.DashboardCalendar.desc=Add a button to export Hattrick week in iCalendar file format (should be compatible with Google Calendar, Thunderbird+Lightning, MS Outlook, KOrganizer, Evolution, Apple iCal etc)
module.ReLiveLinks.desc=Add more links to HT-Live
module.ReLiveLinks.Live.desc=Add a button to export all matches in HT-Live as a link
module.ReLiveLinks.ReLive.desc=Add Re-Live links where missing
#merfis
module.CopyBBAd.desc=Copy various ads in BB code (by merfis)
module.CopyBBAd.CopyTableAd.desc=Copy table ad to clipboard
module.CopyBBAd.CopyLeagueStatsAd.desc=Copy league stats to clipboard
module.CopyBBAd.CopyFinancesAd.desc=Copy economy report to cliboard
#SupportershipExpirationDate
module.SupportershipExpirationDate.desc=Ability to see the expiration date of your supportership when clicking on the 'remaining days'-counter
module.PsicoTSI.desc=Subskill prediction using player's TSI or wage
module.PsicoTSI.showOnLeft.desc=Show prediction on the left sidebar on the player page
module.PsicoTSI.hideUnderSkills.desc=Hide prediction under player skills
module.PsicoTSI.enablePlayersPage.desc=Enable on the player list page
module.PsicoTSI.enableTLPage.desc=Enable on transfer search result page
module.PsicoTSI.displayAsLink.desc=Show only a link like on the player list page
module.YouthSkills.desc=Enhances youth players page with information from hattrick youthclub. For HY users only.
#seriesTransfers
module.SeriesTransfers.desc=Lists all players currently for sale on series pages
module.AddPromotionReminder.desc=Add a button to create a reminder for the day when you can promote a youth player
module.CurrentTransfers.desc=Add more information about players on the current transfers page
module.SpecialtyInfo.desc=Show a concise specialty information table having clicked on a specialty icon
# U21LastMatch
module.U21LastMatch.desc=Show the last official U21 match that a player could play in.
module.U21LastMatch.YouthPlayers.desc=Show last official U21 match in the Youth Player Details page.
module.U21LastMatch.SeniorPlayers.desc=Show last official U21 match in the Senior Player Details page.
module.U21LastMatch.AllPlayers.desc=Show last official U21 match in the Senior/Youth/NT Players page.
module.U21LastMatch.TransfersResults.desc=Show last official U21 match in the Transfers Search Results page.
# Mercattrick
module.MercattrickStats.desc=Display how many managers are interested in a transfer listed player.
module.MercattrickStats.enableTLPage.desc=Enable on transfer search result page.
MercattrickStats.title=Mercattrick
MercattrickStats.filters=Mercattrick Filters
MercattrickStats.filters.abbr=mtF
MercattrickStats.bookmarks=Mercattrick Bookmarks
MercattrickStats.bookmarks.abbr=mtB
MercattrickStats.transfers=Mercattrick Stats:
MercattrickStats.filtersAndBookmarks=Filters: %1 / Bookmarks: %2
MercattrickStats.api.down=Mercattrick service is down today
MercattrickStats.api.nopermission=You must allow Foxtrick to access data on Mercattrick in the <a>Foxtrick preferences</a>.
MercattrickStats.api.failed=Connection to Mercattrick could not be established.
#seriesTransfers
SeriesTransfers.header=Players for sale
SeriesTransfers.notransfers=No team in this series has any players on the transfer market right now.
SeriesTransfers.fetch=Retrieve new data for this series
#%s = localized date and time
SeriesTransfers.lastFetch=Data is automatically updated at least every 2 days. Last updated at %s HT time.
CurrentTransfers.openingPrice=Opening price
#ForumModeratorPopup
ForumModeratorPopup.toModerate=Moderate
#SupportershipEndDays
SupportershipExpirationDate.showExpirationDate=Show expiration date
SupportershipExpirationDate.showRemainingDayCount=Show remaining days
# copy-youth
module.CopyYouth.AutoSendTrainingReportToHY.success=Training report was successfully sent to hattrick youthclub
module.CopyYouth.AutoSendTrainingChangesToHY.success=Training change was successfully sent to hattrick youthclub
module.CopyYouth.AutoSendRejectedToHY.success=Rejected player was successfully sent to hattrick youthclub
#transfer-history-filters
TransferHistoryFilters.all=All
TransferHistoryFilters.sold=Sold
TransferHistoryFilters.bought=Bought
TransferHistoryFilters.filter=Filter:
#Loyalty display
LoyaltyDisplay.motherClubBonus=(Mother club bonus)
LoyaltyDisplay.loyaltyBonus=(Loyalty bonus)
#Youth-Twins
#string uses plural forms
YouthTwins.possibleTwins=This player has %1 possible twin.;This player has %1 possible twins.
YouthTwins.markedTwins=Marked as twin: %1
YouthTwins.nonTwins=Marked as non-twin: %1
YouthTwins.undecidedTwins=Not yet marked: %1
YouthTwins.nonHyUser=You could find out more about his potential by using hattrick youthclub.
YouthTwins.infoText=What are twins and how can i benefit from them?
#YouthSkills
YouthSkills.estimated=(est.)
YouthSkills.top3=One of 3 skills with highest potential
YouthSkills.newSpecialty=This specialty is known on hattrick youthclub from a rejected player, a twin or because it was named in a match report.
YouthSkills.header=hattrick youthclub enhancements
YouthSkills.info=Skill information you see on this page is enhanced with exlusive data (in shades of red) from hattrick youthclub\:
YouthSkills.currentSkill=Current skill (with subskill, if available)
YouthSkills.skillPotential=Skill potential (with subskill, if available)
YouthSkills.skillPotentialMax=Skill potential limit (based on other skills)
YouthSkills.skillEstimation=Information from the HY Current Skill Estimation feature.
YouthSkills.info2=Hover your mouse over a skillbar to see the exact values.
#PlayerStatsExperience
PlayerStatsExperience.NotAllMatchesVisible=The actual value might be higher because not all matches are displayed.
PlayerStatsExperience.NoSkillUpFound=The actual value might be higher because no recorded experience-skillup was found.
PlayerStatsExperience.PtsPerLevel=The calculation assumes there are %1 points per level of experience.
PlayerStatsExperience.ExperienceChange.title=Experience gain
PlayerStatsExperience.ExperienceChange.title.abbr=XP+
PlayerStatsExperience.Walkover=This game was a walkover. Therefore the players didn't get any experience.
PlayerStatsExperience.MatchesSinceSkilup=Matches since last skillup
PlayerStatsExperience.matches=Matches
PlayerStatsExperience.minutes=Minutes
PlayerStatsExperience.minXPpts=Min. XP Pts.
PlayerStatsExperience.maxXPpts=Max. XP Pts.
PlayerStatsExperience.sum=Sum
PlayerStatsExperience.Experience=Experience
PlayerStatsExperience.PerformanceHistory=Performance history
PlayerStatsExperience.friendly=Friendlies
PlayerStatsExperience.cup=Cup
PlayerStatsExperience.challenger_cup_1=Emerald Challenger Cup
PlayerStatsExperience.challenger_cup_2=Ruby Challenger Cup
PlayerStatsExperience.challenger_cup_3=Sapphire Challenger Cup
PlayerStatsExperience.consolation_cup=Consolation Cup
PlayerStatsExperience.qualifier=Qualification
PlayerStatsExperience.series=League
PlayerStatsExperience.matchNtFriendly=NT friendlies
PlayerStatsExperience.matchNtFriendlyNew=NT friendlies
PlayerStatsExperience.matchMasters=Hattrick Masters
PlayerStatsExperience.matchNtLeague=World Cup
PlayerStatsExperience.matchNtFinals=World Cup (semi-) finals
PlayerStatsExperience.matchNtContinental=Continental Cup
PlayerStatsExperience.matchNtContinentalKO=Continental Cup K.O.
PlayerStatsExperience.matchNtNationsCup=Nations Cup
PlayerStatsExperience.matchNtNationsCupKO=Nations Cup K.O.
PlayerStatsExperience.matchNtWildcard=Wildcard K.O.
PlayerStatsExperience.matchNtWorldCup=World Cup
PlayerStatsExperience.matchNtWorldCupFinals=World Cup (semi-) finals
#Series statistics
rating.average=Average rating
#Save for work
SafeForWork.title=Title
SafeForWork.icon=Icon
#Extrashortcuts
ExtraShortcuts.stage=Open this page on HT Stage
ExtraShortcuts.statistics=Statistics
ExtraShortcuts.transfers=Transfers
ExtraShortcuts.ManageCHPP=Manage your CHPP products
ExtraShortcuts.prefs=Preferences
ExtraShortcuts.ftprefs=FoxTrick preferences
#HistoryStats
HistoryStats.boxheader=History stats
HistoryStats.season=Season
HistoryStats.season.short=S
HistoryStats.cup=Cup round
HistoryStats.cup.short=C
HistoryStats.league=Series
HistoryStats.league.short=Ser.
HistoryStats.finalPosition=Series final position
HistoryStats.finalPosition.short=P
HistoryStats.cupwinner=Cup winner
HistoryStats.cupwinner.short=CW
# YouthPromotes
#string uses plural forms
#2% = localized date and time
YouthPromotes.future=Player can be promoted %1 day later, on %2.;Player can be promoted %1 days later, on %2.
#%1 = age, e.g. 17.16
YouthPromotes.age=He will be %1 old by then.
YouthPromotes.today=Player can be promoted today!
#teamstats+filters
TeamStats.boxheader=Team overview
TeamStats.General=General
TeamStats.Attributes=Attributes
TeamStats.Skills=Skills
TeamStats.Players=Players
TeamStats.Total=Total
TeamStats.Selected=Selected
TeamStats.Average=Average
TeamStats.PlayerNotToOld=Players < 19 yr
TeamStats.PlayerToOld=Players >= 19 yr
TeamStats.Cards=Cards
TeamStats.Injured=Injured
TeamStats.TransferListed=Transfer-listed
TeamStats.Pictures=Faces
TeamStats.PlayedLatest=Played in last match
TeamStats.NotPlayedLatest=Did not play in last match
TeamStats.NotTransferListed=Not Transfer-listed
TeamStats.ActivePlayers=Active players
TeamStats.HomeGrownPlayers=Home grown players
TeamStats.PurchasedPlayers=Purchased players
TeamStats.FilterFor=Filter for
#PlayerBirthday
PlayerBirthday.boxheader=Birthdays
PlayerBirthday.BirthdayToday=Birthdays today
PlayerBirthday.BirthdayLastWeek=Birthdays last week
PlayerBirthday.BirthdayNextWeek=Birthdays next week
#season stats
seasonstats.boxheader=Season overview
#note to translators. use abreviations of league table where applicable
seasonstats.played=Pld
seasonstats.played.desc=Matches played
seasonstats.won=W
seasonstats.won.desc=Won
seasonstats.draw=D
seasonstats.draw.desc=Draw
seasonstats.lost=L
seasonstats.lost.desc=Lost
seasonstats.goalplus=GF
seasonstats.goalplus.desc=Goals
seasonstats.goalminus=GA
seasonstats.goalminus.desc=Goals against
seasonstats.goaldiff=±
seasonstats.goaldiff.desc=Goal difference
seasonstats.total=T
seasonstats.total.desc=Total
seasonstats.home=H
seasonstats.home.desc=Home
seasonstats.away=A
seasonstats.away.desc=Away
seasonstats.league=League
seasonstats.friendly=Friendlies
seasonstats.cup=Cup
seasonstats.masters=Masters
#Newsfeed filter
LeagueNewsFilter.label=Newsfeed filter:
LeagueNewsFilter.all=All
LeagueNewsFilter.friendlies=Friendlies & changed coaches
LeagueNewsFilter.transfers=Transfers
LeagueNewsFilter.lineupChanges=Lineup changes
#team pages
sidebarBox.actions=Actions
TeamSelectBox.selectplayer=Select player
ExtendedPlayerDetails.perseason=/season
#%s = skill level, like "solid"
ExtraPlayerInfo.defensiveTrainer=A %s trainer who is defence-minded.
#%s = skill level, like "solid"
ExtraPlayerInfo.offensiveTrainer=A %s trainer who is fond of attacking.
#%s = skill level, like "solid"
ExtraPlayerInfo.balancedTrainer=A %s trainer who is neither attack nor defence-minded.
ManagerButtons.writeInGuestbook=Write in Guestbook
LineupShortcut.lineup=Lineup
ShowFriendlyBooked.ShowFriendlies=Show friendlies
#Transfer prices
TransferComparePlayers.difference=Difference
TransferComparePlayers.transferAge=Player age at the time of transfer
#forum
ForumLeaveButton.LeaveForum=Leave forum
#%s = forum name
ForumLeaveButton.alert=Are you sure you want to leave %s?
ShowForumPrefButton.forumPreferences=Forum Preferences
FormatPostingText.ShowNestedQuotes=Show nested quotes
HideSignatures.signaturetoggle=Signature
EmbedMedia.EmbeddedImage=Embedded Image
ForumStripHattrickLinks.ask=Do you want to strip the Hattrick server from links to make them usable in the forum?
MarkAllAsRead.title=Mark all threads in all forums as read
# ForumTemplates
ForumTemplates.make=Make template from post
ForumTemplates.make.error=Template already exists or is empty
ForumTemplates.show=Show templates
ForumTemplates.hide=Hide templates
ForumTemplates.templateTitle=Template title:
ForumTemplates.templateTitle.error='[' and ']' are not allowed in titles
ForumTemplates.delete.ask=Delete template?
#ForumPreview
ForumPreview.preview.title=Display a preview of the posting
ForumPreview.preview=Preview
ForumPreview.send=Send
#ForumYouthIcons
ForumYouthIcons.toolbar.main=Main Links
ForumYouthIcons.toolbar.youth=Youth Links
ForumYouthIcons.toolbar.tournament=Tournaments
ForumYouthIcons.toolbar.other=Other
ForumYouthIcons.youthplayerid=Insert youth player tag.
ForumYouthIcons.youthteamid=Insert youth team tag.
ForumYouthIcons.youthmatchid=Insert youth match tag.
ForumYouthIcons.youthseries=Insert youth series tag.
ForumYouthIcons.tournamentid=Insert tournament tag.
ForumYouthIcons.tournamentmatchid=Insert tournament match tag.
ForumYouthIcons.debug=Insert FoxTrick debug log.
ForumYouthIcons.settings=Insert FoxTrick settings.
ForumSpecialBBCode.q=Add quote
ForumSpecialBBCode.br=Add line break
ForumSpecialBBCode.user=Add UserID
ForumSpecialBBCode.nt=Add NTTeamID
ForumSpecialBBCode.kit=Add KitID
ForumSpecialBBCode.article=Add ArticleID
ForumSpecialBBCode.clock=Add actual time
ForumSpecialBBCode.spoiler=Add spoiler
ForumSpecialBBCode.pre=Insert 'pre' format tag
ForumSpecialBBCode.table=Insert 'table' format tags resp. convert selected text into a table (Lines are converted in rows. Text separated by "%s" will be converted into cells.)
ForumSpecialBBCode.tableSeparator=Convert "%s" to cells
ForumSpecialBBCode.tableSeparator.tab=TAB
ForumSpecialBBCode.tableSeparator.custom=custom
ForumSpecialBBCode.enterSeparator=Enter a custom separator
ForumSpecialBBCode.forumSymbol=Insert "%s"
ForumSpecialBBCode.symbols=Insert symbol: %s
#Transferlistfilters
TransferSearchFilters.boxheader=FoxTrick Filters
TransferSearchFilters.enterName=Enter filter name:
TransferSearchFilters.deleteFilter.ask=Do you really want to delete this filter?
TransferSearchFilters.saveFilter=Save new filter
#Filter
Filters.label=Filters
Filters.addFilterOptions=Add filter options
Filters.ok=Ok
Filters.clear=Clear
Filters.noFilter=No filter
Filters.none=None
Filters.Attributes=Attribute filters
Filters.days=Days
Filters.tsi=TSI
Filters.stamina=Stamina
Filters.Form=Form
Filters.XP=Experience
Filters.specialty=Specialty
Filters.stars=Stars
Filters.minimum=At least
Filters.maximum=Maximum
Filters.over=Over
Filters.under=Under
Filters.equal=Equal
Filters.notEqual=Not equal
match.lineup=Match Lineup
match.bench=Bench
match.tactics=Tactics:
match.attitude=Team Attitude:
match.type.league=League
match.type.qualification=Qualification
match.type.cupA=Cup
match.type.cupB1=Emerald Challenger Cup
match.type.cupB2=Ruby Challenger Cup
match.type.cupB3=Sapphire Challenger Cup
match.type.cupC=Consolation Cup
match.type.friendly=Friendly
match.type.friendly.cup=Friendly (Cup rules)
match.type.masters=Hattrick Masters
match.type.nt.friendly=National Friendly
match.type.nt.competitive=World Cup
match.type.youth.league=Youth League
match.type.youth.friendly=Youth Friendly
match.type.youth.friendly.cup=Youth Friendly (Cup rules)
matches.youth=Youth matches
matches.senior=Senior matches
matches.hto=Tournament matches
matches.nt=NT matches
matches.official=Official matches
matches.friendly=Friendly matches
dashBoardCalendar.export=Export HT week in iCalendar format
dashBoardCalendar.events.training.summary=HT Training
dashBoardCalendar.events.training.alarm=Be sure to check your HT training progress in 30 minutes.\nDid any of your players get injured during last game? It's about time to use their TSI to calculate the precise injury length.
dashBoardCalendar.events.economy.summary=HT Week update
dashBoardCalendar.events.economy.alarm=Your economy update is due in 30 minutes.\nPerhaps you need to fire some staff?
dashBoardCalendar.events.game.summary=HT Game
dashBoardCalendar.events.game.alarm=Kick off in 30 minutes.\nHave you submitted your orders already?
dashBoardCalendar.events.gameHTO.summary=HT Tournament game
dashBoardCalendar.events.gameHTO.alarm=Kick off in 30 minutes.\nHave you submitted your orders already?\nDon't worry about injuries or cards you can do your best!
dashBoardCalendar.events.cup.summary=HT Game
dashBoardCalendar.events.cup.alarm=Kick off in 30 minutes.\nHave you submitted your orders already?\nDon't forget the penalty takers!
dashBoardCalendar.events.frReminder.summary=HT Friendly reminder
dashBoardCalendar.events.frReminder.alarm=Friendlies are played in your league in 30 minutes.\nDo you have one arranged?
dashBoardCalendar.events.intFrReminder.summary=HT Int. friendly deadline
dashBoardCalendar.events.intFrReminder.alarm=International friendly deadline is up in 30 minutes.
dashBoardCalendar.events.wkndFrReminder.summary=HT Wknd friendly deadline
dashBoardCalendar.events.wkndFrReminder.alarm=Weekend friendly deadline is at midnight.
dashBoardCalendar.events.nt.summary=HT NT Game
dashBoardCalendar.events.nt.alarm=Your national team is playing in 30 minutes.\nDon't you want to support it on the forum?
dashBoardCalendar.events.youthTraining.summary=HT Youth training
dashBoardCalendar.events.youthTraining.alarm=You can check your most recent youth training report in 30 minutes.
dashBoardCalendar.events.scoutCall.summary=HT Youth update
dashBoardCalendar.events.scoutCall.alarm=Your youth scouts will be ready in 2 hours.\nHave you already pulled anyone this week?
dashBoardCalendar.events.youth.summary=HT Youth game
dashBoardCalendar.events.youth.alarm=Your youth team plays in 30 minutes.\nHave you submitted your orders already?\nMaybe your training needs changing?
dashBoardCalendar.events.unknown.summary=Unknown HT event
dashBoardCalendar.events.unknown.alarm=Something will happen in HT in 30 minutes.
matchOrder.addTeam=Add opponent
matchOrder.enterTeamId=Enter team ID:
matchOrder.noMatchSelected=No match selected
matchOrder.comparedTo=Compared to:
matchOrder.previousPrediction=Previous prediction
matchOrder.AddMatchManually=Add a match manually
matchOrder.swapPositions=Swap sides
matchOrder.options=Options
matchOrder.ratings=Ratings
matchOrder.staminaDiscount=Stamina effect
matchOrder.staminaDiscount.title=Sector ratings are affected according to the contributions of each player to each sector
matchOrder.attVsDef=Attack vs. defense
matchOrder.attVsDef.title=Either display opponents ratings as attack-vs-defence or as attack-vs-attack
matchOrder.realProbabilities=Real probabilities
matchOrder.realProbabilities.title=Calculate real scoring/defending/possession probabilities.\nAttack-vs-defence must be enabled for this to make sense.
matchOrder.probability.title=Probability calculated by Foxtrick\nOriginal value: %s
matchOrder.summary=Summary
matchOrder.tournamentMatch=Tournament
matchOrder.homeAway=Auto-detect, add home team or away team?
matchOrder.homeAway.abbr=H/A
matchOrder.homeAway.auto=Auto
matchOrder.homeAway.auto.abbr=↻
matchOrder.homeAway.home=Home
matchOrder.homeAway.home.abbr=H
matchOrder.homeAway.away=Away
matchOrder.homeAway.away.abbr=A
matchOrder.cloneOrder=Clone this order
matchOrder.cloneOrder.abbr=C
matchOrder.cloneAsSub=Clone and convert to substitution
matchOrder.cloneAsSub.abbr=S
matchOrder.cloneAsSwap=Clone and convert to swap
matchOrder.cloneAsSwap.abbr=Sw
matchOrder.cloneAsChange=Clone and convert to behavioral change
matchOrder.cloneAsChange.abbr=B
matchOrder.fillPenaltyTakers=Fill penalty takers
matchOrder.clearPenaltyTakers=Clear the list
#Match Weather
matchWeather.expected=Expected
matchWeather.today=Today
matchWeather.tomorrow=Tomorrow
matchWeather.opw=Forecast by OpenWeatherMap
matchWeather.irltoday=IRL Today
matchWeather.irltomorrow=IRL Tomorrow
weather.0=Rain
weather.1=Overcast
weather.2=Partially cloudy
weather.3=Sunny
#Skills
Playmaking=Playmaking
Playmaking.abbr=PM
Winger=Winger
Winger.abbr=WI
Scoring=Scoring
Scoring.abbr=SC
Passing=Passing
Passing.abbr=PS
Defending=Defending
Defending.abbr=DF
Keeper=Keeper
Keeper.abbr=KP
Set_pieces=Set pieces
Set_pieces.abbr=SP
PsicoTSI=PsicoTSI (average form)
PsicoTSI.abbr=Psico
PsicoWage=PsicoTSI Wage (low subs)
PsicoWage.abbr=PsicoW
HTMS_Ability=HTMS Points Ability
HTMS_Ability.abbr=Ability
HTMS_Potential=HTMS Points Potential
HTMS_Potential.abbr=Potential
PlayerCategory=Player category
PlayerCategory.abbr=Ca
#note to translators. Copy abbreviations from HT translations using players page on HT (only supporters can see them in brackets next to players names)
categories.GK=GK
categories.WB=WB
categories.CD=CD
categories.W=W
categories.IM=IM
categories.FW=FW
categories.S=S
categories.R=R
categories.E1=E1
categories.E2=E2
#note to translators. Do not translate this line, leave empty as it is.
categories.undefined=
#specialty abbreviations
specialty.Technical.abbr=Te
specialty.Quick.abbr=Qu
specialty.Powerful.abbr=Po
specialty.Unpredictable.abbr=Un
specialty.Head.abbr=He
specialty.Resilient.abbr=Re
specialty.Fool.abbr=Fo
specialty.Support.abbr=Su
#match positions
match.pos.kp=Keeper
match.pos.kp.abbr=KP
match.pos.lb=Left back
match.pos.lb.abbr=LB
match.pos.lcd=Left central defender
match.pos.lcd.abbr=LCD
match.pos.mcd=Middle central defender
match.pos.mcd.abbr=MCD
match.pos.rcd=Right central defender
match.pos.rcd.abbr=RCD
match.pos.rb=Right back
match.pos.rb.abbr=RB
match.pos.lw=Left winger
match.pos.lw.abbr=LW
match.pos.lcm=Left central midfielder
match.pos.lcm.abbr=LCM
match.pos.mcm=Middle central midfielder
match.pos.mcm.abbr=MCM
match.pos.rcm=Right central midfielder
match.pos.rcm.abbr=RCM
match.pos.rw=Right winger
match.pos.rw.abbr=RW
match.pos.lf=Left forward
match.pos.lf.abbr=LF
match.pos.mf=Middle forward
match.pos.mf.abbr=MF
match.pos.rf=Right forward
match.pos.rf.abbr=RF
#generic abbreviations