-
-
Notifications
You must be signed in to change notification settings - Fork 444
Expand file tree
/
Copy pathl10n_az.dart
More file actions
6629 lines (4778 loc) · 175 KB
/
Copy pathl10n_az.dart
File metadata and controls
6629 lines (4778 loc) · 175 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'l10n.dart';
// ignore_for_file: type=lint
/// The translations for Azerbaijani (`az`).
class AppLocalizationsAz extends AppLocalizations {
AppLocalizationsAz([String locale = 'az']) : super(locale);
@override
String get mobileAccount => 'Account';
@override
String get mobileAccountPreferences => 'Account preferences';
@override
String get mobileAccountPreferencesHelp => 'These preferences are applied to your Lichess account and will be used across all devices.';
@override
String get mobileAllGames => 'Bütün oyunlar';
@override
String get mobileAreYouSure => 'Əminsinizmi?';
@override
String get mobileBoardSettings => 'Board settings';
@override
String get mobileCancelTakebackOffer => 'Geri alma təklifini ləğv et';
@override
String get mobileClearButton => 'Təmizlə';
@override
String get mobileCorrespondenceClearSavedMove => 'Saxlanılmış gedişi təmizlə';
@override
String get mobileCustomGameJoinAGame => 'Oyuna qoşul';
@override
String get mobileFeedbackButton => 'Rəy bildirin';
@override
String mobileGoodEvening(String param) {
return 'Good evening, $param';
}
@override
String get mobileGoodEveningWithoutName => 'Good evening';
@override
String mobileGoodDay(String param) {
return 'Good day, $param';
}
@override
String get mobileGoodDayWithoutName => 'Good day';
@override
String get mobileHideVariation => 'Varyasiyanı gizlət';
@override
String get mobileHomeTab => 'Ana səhifə';
@override
String get mobileLiveStreamers => 'Canlı yayımçılar';
@override
String get mobileMustBeLoggedIn => 'Bu səhifəni görmək üçün daxil olmalısınız.';
@override
String get mobileNewGame => 'New game';
@override
String get mobileNoSearchResults => 'Nəticə yoxdur';
@override
String get mobileNotAllFeaturesAreAvailable => 'Please note that not all features from the old app or the website are currently available, but we are adding features all the time.';
@override
String get mobileNotFollowingAnyUser => 'You are not following any users.';
@override
String get mobileOkButton => 'Təsdiqlə';
@override
String get mobileOverTheBoard => 'Taxta üzərində';
@override
String mobilePlayersMatchingSearchTerm(String param) {
return '\"$param\" ilə oyunçular';
}
@override
String get mobilePositionLeft => 'Sol';
@override
String get mobilePositionRight => 'Sağ';
@override
String get mobilePrefMagnifyDraggedPiece => 'Tərpədilən fiquru böyütmə';
@override
String get mobilePuzzleStormConfirmEndRun => 'Bu seriyanı bitirmək istəyirsiniz?';
@override
String get mobilePuzzleStormFilterNothingToShow => 'Göstəriləcək heç nə yoxdur, zəhmət olmasa, filtrləri dəyişin';
@override
String get mobilePuzzleStormNothingToShow => 'Göstəriləcək heç nə yoxdur. Bir neçə Puzzle Storm seriyası oynayın.';
@override
String get mobilePuzzleStormSubtitle => '3 dəqiqə ərzində mümkün qədər çox tapmaca həll edin.';
@override
String get mobilePuzzleStreakAbortWarning => 'Hazırkı ardıcıllığınızı itirəcəksiniz və xalınız saxlanılacaq.';
@override
String get mobilePuzzleThemesSubtitle => 'Sevdiyiniz açılışlardan tapmacalar həll edin və ya bir mövzu seçin.';
@override
String get mobilePuzzlesTab => 'Tapmacalar';
@override
String get mobileRecentSearches => 'Son axtarışlar';
@override
String get mobileRemoveBookmark => 'Remove bookmark';
@override
String get mobileServerAnalysis => 'Server analysis';
@override
String get mobileSettingsClockPosition => 'Saat mövqeyi';
@override
String get mobileSettingsCustomBackgroundPresets => 'Presets';
@override
String get mobileSettingsDraggedPieceTarget => 'Dragged piece target';
@override
String get mobileSettingsDraggedTargetCircle => 'Circle';
@override
String get mobileSettingsDraggedTargetSquare => 'Square';
@override
String get mobileSettingsHomeWidgets => 'Home widgets';
@override
String get mobileSettingsImmersiveMode => 'İmmersiv rejim';
@override
String get mobileSettingsImmersiveModeSubtitle => 'Hide system UI while playing. Use this if you are bothered by the system\'s navigation gestures at the edges of the screen. Applies to game and puzzle screens.';
@override
String get mobileSettingsMaterialDifferenceCapturedPieces => 'Captured pieces';
@override
String get mobileSettingsPickAnImage => 'Pick an image';
@override
String get mobileSettingsPickAnImageHelp => 'Custom background works only in dark mode. A dark image is recommended.';
@override
String get mobileSettingsPickAnImageBlur => 'Blur the image';
@override
String get mobileSettingsPickAnImageHideBoard => 'Hide board';
@override
String get mobileSettingsPickAnImageShowBoard => 'Show board';
@override
String get mobileSettingsPickAnImageSwipeToDisplay => 'Swipe to display other backgrounds';
@override
String get mobileSettingsPieceShiftMethodEither => 'Either tap or drag';
@override
String get mobileSettingsPieceShiftMethodTapTwoSquares => 'Tap two squares';
@override
String get mobileSettingsShapeDrawing => 'Shape drawing';
@override
String get mobileSettingsShapeDrawingSubtitle => 'Draw shapes using two fingers: maintain one finger on an empty square and drag another finger to draw a shape.';
@override
String get mobileSettingsShowBorder => 'Show border';
@override
String get mobileSettingsTouchFeedback => 'Touch feedback';
@override
String get mobileSettingsTouchFeedbackSubtitle => 'When enabled, the device will vibrate shortly when you move or capture a piece.';
@override
String get mobileSettingsTab => 'Ayarlar';
@override
String get mobileShareGamePGN => 'PGN-i paylaş';
@override
String get mobileShareGameURL => 'Oyunun URL-ni paylaş';
@override
String get mobileSharePositionAsFEN => 'Pozisiyanı FEN olaraq paylaş';
@override
String get mobileSharePuzzle => 'Bu tapmacanı paylaş';
@override
String get mobileShowComments => 'Şərhləri göstər';
@override
String get mobileShowResult => 'Nəticəni göstər';
@override
String get mobileShowVariations => 'Varyasiyaları göstər';
@override
String get mobileSomethingWentWrong => 'Xəta baş verdi.';
@override
String get mobileSystemColors => 'Sistem rəngləri';
@override
String get mobileTheme => 'Tema';
@override
String get mobileToolsTab => 'Alətlər';
@override
String mobileUnsupportedVariant(String param) {
return '$param variantı bu versiyada dəstəklənmir.';
}
@override
String get mobileWaitingForOpponentToJoin => 'Rəqibin qoşulması gözlənilir...';
@override
String get mobileWatchTab => 'İzlə';
@override
String get mobileWelcomeToLichessApp => 'Welcome to Lichess app!';
@override
String get mobileViewGame => 'View Game';
@override
String get mobileCustomizeHomeTip => 'Tip: You can add more widgets to the Home Screen or remove those you don\'t need!';
@override
String get mobileCustomizeHomeTipDismiss => 'Dismiss';
@override
String get mobileCustomizeButton => 'Customize';
@override
String get mobileStopShowingThreat => 'Stop showing threat';
@override
String get mobileTournamentCompleted => 'Completed';
@override
String get mobileTournamentJumpToMyPage => 'Jump to my page';
@override
String get mobileDisplayModeCompact => 'Compact';
@override
String get mobileDisplayModeDetailed => 'Detailed';
@override
String get mobileOpeningExplorerNotAvailableOffline => 'Opening Explorer is not available offline.';
@override
String get mobileChallengeCreated => 'Challenge created: You will be notified when the game starts.\nYou can access it from the home tab.';
@override
String get mobilePreviousPage => 'Previous';
@override
String get mobileOrImportPgnFile => 'Or import a PGN file';
@override
String get mobileServerOutageMessage => 'Lichess is undergoing technical difficulties. We\'re doing everything we can, and expect to be back up very soon.';
@override
String get mobileServerOutageKeepInformed => 'To get updates on the maintenance, checkout our social media channels.';
@override
String get mobileGoodMoveButThereIsBetter => 'Good move, but there\'s better';
@override
String get variantStandard => 'Standard';
@override
String get variantStandardTitle => 'Standard rules of chess (FIDE)';
@override
String get variantChess960 => 'Chess960';
@override
String get variantChess960Title => 'The starting position of the home rank pieces is randomised.';
@override
String get variantKingOfTheHill => 'King of the Hill';
@override
String get variantKingOfTheHillTitle => 'Bring your King to the centre to win the game.';
@override
String get variantThreeCheck => 'Three-Check';
@override
String get variantThreeCheckTitle => 'Check your opponent 3 times to win the game.';
@override
String get variantAntichess => 'Antichess';
@override
String get variantAntichessTitle => 'Lose all your pieces (or get stalemated) to win the game.';
@override
String get variantAtomic => 'Atomic';
@override
String get variantAtomicTitle => 'Nuke your opponent\'s king to win.';
@override
String get variantHorde => 'Horde';
@override
String get variantHordeTitle => 'One side has a large number of pawns, the other has a normal army.';
@override
String get variantRacingKings => 'Racing Kings';
@override
String get variantRacingKingsTitle => 'Get your king to the other side of the board to win.';
@override
String get variantCrazyhouse => 'Crazyhouse';
@override
String get variantCrazyhouseTitle => 'Captured pieces can be dropped back on the board instead of moving a piece.';
@override
String get variantFromPosition => 'From Position';
@override
String get variantFromPositionTitle => 'Standard chess from a custom position';
@override
String get activityActivity => 'Aktivlik';
@override
String get activityHostedALiveStream => 'Canlı yayım etdi';
@override
String activityRankedInSwissTournament(String param1, String param2) {
return '$param2 turnirində $param1-ci oldu';
}
@override
String get activitySignedUp => 'lichess.org\'a üzv oldu';
@override
String activitySupportedNbMonths(int count, String param2) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: 'Lichess.org\'u $count aylığına $param2 olaraq dəstəklədi',
one: 'Lichess.org\'u $count aylığına $param2 olaraq dəstəklədi',
);
return '$_temp0';
}
@override
String activityPracticedNbPositions(int count, String param2) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$param2 mövzusunda $count pozisiya məşq etdi',
one: '$param2 mövzusunda $count pozisiya məşq etdi',
);
return '$_temp0';
}
@override
String activitySolvedNbPuzzles(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count taktiki tapmaca həll etdi',
one: '$count taktiki tapmaca həll etdi',
);
return '$_temp0';
}
@override
String activityPlayedNbGames(int count, String param2) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count dəfə $param2 oynadı',
one: '$count dəfə $param2 oynadı',
);
return '$_temp0';
}
@override
String activityPostedNbMessages(int count, String param2) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$param2 mövzusunda $count mesaj paylaşdı',
one: '$param2 mövzusunda $count mesaj paylaşdı',
);
return '$_temp0';
}
@override
String activityPlayedNbMoves(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count gediş etdi',
one: '$count gediş etdi',
);
return '$_temp0';
}
@override
String activityInNbCorrespondenceGames(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count yazışmalı oyunda',
one: '$count yazışmalı oyunda',
);
return '$_temp0';
}
@override
String activityCompletedNbGames(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count yazışmalı oyun tamamladı',
one: '$count yazışmalı oyun tamamladı',
);
return '$_temp0';
}
@override
String activityCompletedNbVariantGames(int count, String param2) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: 'Completed $count $param2 correspondence games',
one: 'Completed $count $param2 correspondence game',
);
return '$_temp0';
}
@override
String activityFollowedNbPlayers(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count oyunçunu izləməyə başladı',
one: '$count oyunçunu izləməyə başladı',
);
return '$_temp0';
}
@override
String activityGainedNbFollowers(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count yeni izləyici qazandı',
one: '$count yeni izləyici qazandı',
);
return '$_temp0';
}
@override
String activityHostedNbSimuls(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count sinxron seansa ev sahibliyi etdi',
one: '$count sinxron seansa ev sahibliyi etdi',
);
return '$_temp0';
}
@override
String activityJoinedNbSimuls(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count sinxron seansda iştirak etdi',
one: '$count sinxron seansda iştirak etdi',
);
return '$_temp0';
}
@override
String activityCreatedNbStudies(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count yeni çalışma yaratdı',
one: '$count yeni çalışma yaratdı',
);
return '$_temp0';
}
@override
String activityCompetedInNbTournaments(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count taktiki tapmaca həll etdi',
one: '$count turnirə qatıldı',
);
return '$_temp0';
}
@override
String activityRankedInTournament(int count, String param2, String param3, String param4) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$param3 oyun oynayaraq $param4 turnirində $count. oldu (en yaxşı$param2% içində)',
one: '$param3 oyun oynayaraq $param4 turnirində $count. oldu (en yaxşı$param2% içində)',
);
return '$_temp0';
}
@override
String activityCompetedInNbSwissTournaments(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count İsveçrə sistemli turnirə qatıldı',
one: '$count İsveçrə sistemli turnirə qatıldı',
);
return '$_temp0';
}
@override
String activityJoinedNbTeams(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count komandasına qatıldı',
one: '$count komandasına qatıldı',
);
return '$_temp0';
}
@override
String get arenaArena => 'Arena';
@override
String get arenaArenaTournaments => 'Arena turnirləri';
@override
String get arenaIsItRated => 'Reytinq hesablanırmı?';
@override
String get arenaWillBeNotified => 'Turnir başlayanda sizə xəbər veriləcəkdir, buna görə gözləyərkən başqa bir pəncərədə oynamaq təhlükəsizdir.';
@override
String get arenaIsRated => 'Bu turnir reytinqlidir və reytinqinizə təsir edəcək.';
@override
String get arenaIsNotRated => 'Bu turnir reytinqli deyil və reytinqinizə təsir etməyəcək.';
@override
String get arenaSomeRated => 'Bəzi turnirlər reytinqlidir və reytinqinizə təsir edəcək.';
@override
String get arenaHowAreScoresCalculated => 'Xallar necə hesablanır?';
@override
String get arenaHowAreScoresCalculatedAnswer => 'Qazanılan bir oyun təməldə 2 xal, bərabərlik 1 xal dəyərindədir. Uduzulan bir oyun isə heçbir xal qazandırmır. Üst- üstə iki oyun qazandığınız təqdirdə alov ikonu ile təmsil olunan ikiqat xal seriyasına girirsiniz.\n\nMəğlub olana vəya bərabərə qalana qədər oynanılan oyunlardan iki qatı xal qazanırsınız. Yəni seriyada ikən bir qalibiyyət 4 xal, bərabərlik 2 xal qazandırarkən uduzulan oyundan heç bir xal qazanılmaz.\n\nMəsələn; üst-üstə qazanılan iki oyun və ardından alınan bir bərabərlik 6 xal dəyərindədir: 2 + 2 + (2 x 1)';
@override
String get arenaBerserk => 'Çılğın Modu';
@override
String get arenaBerserkAnswer => 'Bir oyunçu oyunun əvvəlində Berserk düyməsini basdıqda, vaxtının yarısını itirir, ancaq qələbə bir əlavə turnir xalı qazandırır.\n\nƏlavə vaxt artırmalı oyunlarda Berserk-ə keçmək də vaxt artımını ləğv edir (1 + 2 istisnadır, 1 + 0 olur).\n\nBerserk sıfır başlanğıc vaxtı olan oyunlarda mövcud deyil (0 + 1, 0 + 2).\n\nBerserk yalnız oyunda ən azı 7 gediş etsəniz əlavə bir xal verir.';
@override
String get arenaHowIsTheWinnerDecided => 'Qalib necə təyin olunur?';
@override
String get arenaHowIsTheWinnerDecidedAnswer => 'Turnirin təyin olunmuş müddətinin sonunda ən çox xal toplayan oyunçu(lar) qalib(lər) elan olunacaq.\n\nİki və ya daha çox oyunçu eyni xala sahib olduqda, turnir taybrekə qalacaq.';
@override
String get arenaHowDoesPairingWork => 'Qoşulma necə işləyir?';
@override
String get arenaHowDoesPairingWorkAnswer => 'Turnirin əvvəlində oyunçular reytinqlərinə görə qarşılaşırlar.\nBir oyunu bitirən kimi turnir lobbisinə qayıdın: daha sonra reytinqinizə yaxın bir oyunçu ilə qarşılaşacaqsınız. Beləliklə gözləmə müddətini ən aza endirilir, lakin turnirdəki bütün digər oyunçularla qarşılaşa bilməzsiniz.\nDaha çox oyun oynamaq və daha çox xal qazanmaq üçün sürətli oynayın və lobbiyə qayıdın.';
@override
String get arenaHowDoesItEnd => 'Necə başa çatır?';
@override
String get arenaHowDoesItEndAnswer => 'Turnirin başa çatma vaxtı var. Vaxt başa çatdıqda turnir sıralaması dondurulur və qalib elan edilir. Davam edən oyunlar başa çatmalıdır, lakin bu oyunlar turnirə daxil edilməz.';
@override
String get arenaOtherRules => 'Digər vacib qaydalar';
@override
String get arenaThereIsACountdown => 'İlk gedişinizi etmək üçün müəyyən bir vaxt var. Bu vaxt ərzində bir gediş etməmək rəqibin qalibiyyətiylə nəticələnəcək.';
@override
String get arenaThisIsPrivate => 'Bu özəl turnirdir';
@override
String arenaShareUrl(String param) {
return 'Dəvət etmək üçün, linki paylaş: $param';
}
@override
String arenaDrawStreakStandard(String param) {
return 'Draw streaks: When a player has consecutive draws in an arena, only the first draw will result in a point or draws lasting more than $param moves in standard games. The draw streak can only be broken by a win, not a loss or a draw.';
}
@override
String get arenaDrawStreakVariants => 'The minimum game length for drawn games to award points differs by variant. The table below lists the threshold for each variant.';
@override
String get arenaVariant => 'Variant';
@override
String get arenaMinimumGameLength => 'Minimum game length';
@override
String get arenaHistory => 'Arena Keçmişi';
@override
String get arenaNewTeamBattle => 'New Team Battle';
@override
String get arenaCustomStartDate => 'Custom start date';
@override
String get arenaCustomStartDateHelp => 'In your own local timezone. This overrides the \"Time before tournament starts\" setting';
@override
String get arenaAllowBerserk => 'Allow Berserk';
@override
String get arenaAllowBerserkHelp => 'Let players halve their clock time to gain an extra point';
@override
String get arenaAllowChatHelp => 'Let players discuss in a chat room';
@override
String get arenaArenaStreaks => 'Arena streaks';
@override
String get arenaArenaStreaksHelp => 'After 2 wins, consecutive wins grant 4 points instead of 2.';
@override
String get arenaNoBerserkAllowed => 'No Berserk allowed';
@override
String get arenaNoArenaStreaks => 'No Arena streaks';
@override
String get arenaAveragePerformance => 'Average performance';
@override
String get arenaAverageScore => 'Average score';
@override
String get arenaMyTournaments => 'My tournaments';
@override
String get arenaEditTournament => 'Edit tournament';
@override
String get arenaEditTeamBattle => 'Edit team battle';
@override
String get arenaDefender => 'Defender';
@override
String get arenaPickYourTeam => 'Pick your team';
@override
String get arenaWhichTeamWillYouRepresentInThisBattle => 'Which team will you represent in this battle?';
@override
String get arenaYouMustJoinOneOfTheseTeamsToParticipate => 'You must join one of these teams to participate!';
@override
String get arenaCreated => 'Created';
@override
String get arenaRecentlyPlayed => 'Last played';
@override
String get arenaBestResults => 'Best results';
@override
String get arenaTournamentStats => 'Tournament stats';
@override
String get arenaRankAvgHelp => 'The rank average is a percentage of your ranking. Lower is better.\n\nFor instance, being ranked 3 in a tournament of 100 players = 3%. Being ranked 10 in a tournament of 1000 players = 1%.';
@override
String get arenaMedians => 'medians';
@override
String arenaAllAveragesAreX(String param) {
return 'All averages on this page are $param.';
}
@override
String get arenaTotal => 'Total';
@override
String get arenaPointsAvg => 'Points average';
@override
String get arenaPointsSum => 'Points sum';
@override
String get arenaRankAvg => 'Rank average';
@override
String get arenaTournamentWinners => 'Tournament winners';
@override
String get arenaTournamentShields => 'Tournament shields';
@override
String get arenaOnlyTitled => 'Only titled players';
@override
String get arenaOnlyTitledHelp => 'Require an official title to join the tournament';
@override
String get arenaTournamentPairingsAreNowClosed => 'The tournament pairings are now closed.';
@override
String get arenaBerserkRate => 'Berserk rate';
@override
String arenaDrawingWithinNbMoves(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: 'Oyunun ilk $count gedişində heç-heçə etmək heç bir oyunçuya xal qazandırmayacaq.',
one: 'Oyunun ilk $count gedişində heç-heçə etmək heç bir oyunçuya xal qazandırmayacaq.',
);
return '$_temp0';
}
@override
String arenaViewAllXTeams(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: 'Bütün $count komandaya bax',
one: 'Komandaya bax',
);
return '$_temp0';
}
@override
String get broadcastBroadcasts => 'Yayım';
@override
String get broadcastMyBroadcasts => 'My broadcasts';
@override
String get broadcastLiveBroadcasts => 'Canlı turnir yayımları';
@override
String get broadcastBroadcastCalendar => 'Broadcast calendar';
@override
String get broadcastNewBroadcast => 'Yeni canlı yayım';
@override
String get broadcastSubscribedBroadcasts => 'Subscribed broadcasts';
@override
String get broadcastAboutBroadcasts => 'About broadcasts';
@override
String get broadcastHowToUseLichessBroadcasts => 'How to use Lichess Broadcasts.';
@override
String get broadcastTheNewRoundHelp => 'The new round will have the same members and contributors as the previous one.';
@override
String get broadcastAddRound => 'Tur əlavə et';
@override
String get broadcastOngoing => 'Davam edən';
@override
String get broadcastUpcoming => 'Yaxınlaşan';
@override
String get broadcastRoundName => 'Tur adı';
@override
String get broadcastTournamentName => 'Turnir adı';
@override
String get broadcastTournamentDescription => 'Qısa turnir açıqlaması';
@override
String get broadcastFullDescription => 'Tədbirin tam açıqlaması';
@override
String broadcastFullDescriptionHelp(String param1, String param2) {
return 'Tədbirin istəyə bağlı təfsilatlı açıqlaması. $param1 seçimi mövcuddur. Mətnin uzunluğu $param2 simvoldan az olmalıdır.';
}
@override
String get broadcastSourceSingleUrl => 'PGN Source URL';
@override
String get broadcastSourceUrlHelp => 'Lichess, verdiyiniz URL ilə PGN-i yeniləyəcək. Bu internetdə hamı tərəfindən əldə edilə bilən olmalıdır.';
@override
String get broadcastSourceGameIds => 'Up to 64 Lichess game IDs, separated by spaces.';
@override
String broadcastStartDateTimeZone(String param) {
return 'Start date in the tournament local timezone: $param';
}
@override
String get broadcastStartDateHelp => 'İstəyə bağlı, tədbirin başlama vaxtını bilirsinizsə';
@override
String get broadcastCurrentGameUrl => 'Hazırkı oyun URL-i';
@override
String get broadcastDownloadAllRounds => 'Download all rounds';
@override
String get broadcastResetRound => 'Bu turu sıfırla';
@override
String get broadcastDeleteRound => 'Bu turu sil';
@override
String get broadcastDefinitivelyDeleteRound => 'Definitively delete the round and all its games.';
@override
String get broadcastDeleteAllGamesOfThisRound => 'Delete all games of this round. The source will need to be active in order to re-create them.';
@override
String get broadcastEditRoundStudy => 'Edit round study';
@override
String get broadcastDeleteTournament => 'Delete this tournament';
@override
String get broadcastDefinitivelyDeleteTournament => 'Definitively delete the entire tournament, all its rounds and all its games.';
@override
String get broadcastShowScores => 'Show player scores based on game results';
@override
String get broadcastReplacePlayerTags => 'Optional: replace player names, ratings and titles';
@override
String get broadcastFideFederations => 'FIDE federations';
@override
String get broadcastTop10Rating => 'Top 10 rating';
@override
String get broadcastFidePlayers => 'FIDE players';
@override
String get broadcastFidePlayerNotFound => 'FIDE player not found';
@override
String get broadcastFideProfile => 'FIDE profile';
@override
String get broadcastFederation => 'Federation';
@override
String get broadcastAge => 'Age';
@override
String get broadcastUnrated => 'Unrated';
@override
String get broadcastRecentTournaments => 'Recent tournaments';
@override
String get broadcastOpenLichess => 'Open in Lichess';
@override
String get broadcastTeams => 'Teams';
@override
String get broadcastBoards => 'Boards';
@override
String get broadcastOverview => 'Overview';
@override
String get broadcastSubscribeTitle => 'Subscribe to be notified when each round starts. You can toggle bell or push notifications for broadcasts in your account preferences.';
@override
String get broadcastUploadImage => 'Upload tournament image';
@override
String get broadcastNoBoardsYet => 'No boards yet. These will appear once games are uploaded.';
@override
String broadcastBoardsCanBeLoaded(String param) {
return 'Boards can be loaded with a source or via the $param';
}
@override
String broadcastStartsAfter(String param) {
return 'Starts after $param';
}
@override
String get broadcastStartVerySoon => 'The broadcast will start very soon.';
@override
String get broadcastNotYetStarted => 'The broadcast has not yet started.';
@override
String get broadcastOfficialWebsite => 'Official website';
@override
String get broadcastOfficialStandings => 'Official standings';
@override
String get broadcastRegulations => 'Regulations';
@override
String broadcastIframeHelp(String param) {
return 'Find more options on the $param.';
}
@override
String get broadcastWebmastersPage => 'Webmasters page';
@override
String get broadcastEmbedThisBroadcast => 'Embed this broadcast in your website';
@override
String get broadcastRatingDiff => 'Rating diff';
@override
String get broadcastGamesThisTournament => 'Games in this tournament';
@override
String get broadcastScore => 'Score';
@override
String get broadcastStandingsDisclaimer => 'Standings are calculated using broadcasted games and may differ from official results.';
@override
String get broadcastAllTeams => 'All teams';
@override
String get broadcastTournamentFormat => 'Tournament format';
@override
String get broadcastTournamentLocation => 'Event location';
@override
String get broadcastTopPlayers => 'Top players';
@override
String get broadcastTimezone => 'Time zone';
@override
String get broadcastFideRatingCategory => 'FIDE rating category';