-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathR.generated.swift
1724 lines (1455 loc) · 85 KB
/
R.generated.swift
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
//
// This is a generated file, do not edit!
// Generated by R.swift, see https://github.com/mac-cain13/R.swift
//
import Foundation
import Rswift
import UIKit
/// This `R` struct is generated and contains references to static resources.
struct R: Rswift.Validatable {
fileprivate static let applicationLocale = hostingBundle.preferredLocalizations.first.flatMap(Locale.init) ?? Locale.current
fileprivate static let hostingBundle = Bundle(for: R.Class.self)
/// Find first language and bundle for which the table exists
fileprivate static func localeBundle(tableName: String, preferredLanguages: [String]) -> (Foundation.Locale, Foundation.Bundle)? {
// Filter preferredLanguages to localizations, use first locale
var languages = preferredLanguages
.map(Locale.init)
.prefix(1)
.flatMap { locale -> [String] in
if hostingBundle.localizations.contains(locale.identifier) {
if let language = locale.languageCode, hostingBundle.localizations.contains(language) {
return [locale.identifier, language]
} else {
return [locale.identifier]
}
} else if let language = locale.languageCode, hostingBundle.localizations.contains(language) {
return [language]
} else {
return []
}
}
// If there's no languages, use development language as backstop
if languages.isEmpty {
if let developmentLocalization = hostingBundle.developmentLocalization {
languages = [developmentLocalization]
}
} else {
// Insert Base as second item (between locale identifier and languageCode)
languages.insert("Base", at: 1)
// Add development language as backstop
if let developmentLocalization = hostingBundle.developmentLocalization {
languages.append(developmentLocalization)
}
}
// Find first language for which table exists
// Note: key might not exist in chosen language (in that case, key will be shown)
for language in languages {
if let lproj = hostingBundle.url(forResource: language, withExtension: "lproj"),
let lbundle = Bundle(url: lproj)
{
let strings = lbundle.url(forResource: tableName, withExtension: "strings")
let stringsdict = lbundle.url(forResource: tableName, withExtension: "stringsdict")
if strings != nil || stringsdict != nil {
return (Locale(identifier: language), lbundle)
}
}
}
// If table is available in main bundle, don't look for localized resources
let strings = hostingBundle.url(forResource: tableName, withExtension: "strings", subdirectory: nil, localization: nil)
let stringsdict = hostingBundle.url(forResource: tableName, withExtension: "stringsdict", subdirectory: nil, localization: nil)
if strings != nil || stringsdict != nil {
return (applicationLocale, hostingBundle)
}
// If table is not found for requested languages, key will be shown
return nil
}
/// Load string from Info.plist file
fileprivate static func infoPlistString(path: [String], key: String) -> String? {
var dict = hostingBundle.infoDictionary
for step in path {
guard let obj = dict?[step] as? [String: Any] else { return nil }
dict = obj
}
return dict?[key] as? String
}
static func validate() throws {
try font.validate()
try intern.validate()
}
#if os(iOS) || os(tvOS)
/// This `R.storyboard` struct is generated, and contains static references to 2 storyboards.
struct storyboard {
/// Storyboard `LaunchScreen`.
static let launchScreen = _R.storyboard.launchScreen()
/// Storyboard `Main`.
static let main = _R.storyboard.main()
#if os(iOS) || os(tvOS)
/// `UIStoryboard(name: "LaunchScreen", bundle: ...)`
static func launchScreen(_: Void = ()) -> UIKit.UIStoryboard {
return UIKit.UIStoryboard(resource: R.storyboard.launchScreen)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIStoryboard(name: "Main", bundle: ...)`
static func main(_: Void = ()) -> UIKit.UIStoryboard {
return UIKit.UIStoryboard(resource: R.storyboard.main)
}
#endif
fileprivate init() {}
}
#endif
/// This `R.color` struct is generated, and contains static references to 3 colors.
struct color {
/// Color `AccentColor`.
static let accentColor = Rswift.ColorResource(bundle: R.hostingBundle, name: "AccentColor")
/// Color `PrimaryColor`.
static let primaryColor = Rswift.ColorResource(bundle: R.hostingBundle, name: "PrimaryColor")
/// Color `PrimaryDarkColor`.
static let primaryDarkColor = Rswift.ColorResource(bundle: R.hostingBundle, name: "PrimaryDarkColor")
#if os(iOS) || os(tvOS)
/// `UIColor(named: "AccentColor", bundle: ..., traitCollection: ...)`
@available(tvOS 11.0, *)
@available(iOS 11.0, *)
static func accentColor(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIColor? {
return UIKit.UIColor(resource: R.color.accentColor, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIColor(named: "PrimaryColor", bundle: ..., traitCollection: ...)`
@available(tvOS 11.0, *)
@available(iOS 11.0, *)
static func primaryColor(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIColor? {
return UIKit.UIColor(resource: R.color.primaryColor, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIColor(named: "PrimaryDarkColor", bundle: ..., traitCollection: ...)`
@available(tvOS 11.0, *)
@available(iOS 11.0, *)
static func primaryDarkColor(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIColor? {
return UIKit.UIColor(resource: R.color.primaryDarkColor, compatibleWith: traitCollection)
}
#endif
fileprivate init() {}
}
/// This `R.file` struct is generated, and contains static references to 7 files.
struct file {
/// Resource file `confetti.json`.
static let confettiJson = Rswift.FileResource(bundle: R.hostingBundle, name: "confetti", pathExtension: "json")
/// Resource file `flip.wav`.
static let flipWav = Rswift.FileResource(bundle: R.hostingBundle, name: "flip", pathExtension: "wav")
/// Resource file `game_over.wav`.
static let game_overWav = Rswift.FileResource(bundle: R.hostingBundle, name: "game_over", pathExtension: "wav")
/// Resource file `king.wav`.
static let kingWav = Rswift.FileResource(bundle: R.hostingBundle, name: "king", pathExtension: "wav")
/// Resource file `league_spartan.otf`.
static let league_spartanOtf = Rswift.FileResource(bundle: R.hostingBundle, name: "league_spartan", pathExtension: "otf")
/// Resource file `oooh.wav`.
static let ooohWav = Rswift.FileResource(bundle: R.hostingBundle, name: "oooh", pathExtension: "wav")
/// Resource file `whoosh.wav`.
static let whooshWav = Rswift.FileResource(bundle: R.hostingBundle, name: "whoosh", pathExtension: "wav")
/// `bundle.url(forResource: "confetti", withExtension: "json")`
static func confettiJson(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.confettiJson
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "flip", withExtension: "wav")`
static func flipWav(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.flipWav
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "game_over", withExtension: "wav")`
static func game_overWav(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.game_overWav
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "king", withExtension: "wav")`
static func kingWav(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.kingWav
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "league_spartan", withExtension: "otf")`
static func league_spartanOtf(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.league_spartanOtf
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "oooh", withExtension: "wav")`
static func ooohWav(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.ooohWav
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "whoosh", withExtension: "wav")`
static func whooshWav(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.whooshWav
return fileResource.bundle.url(forResource: fileResource)
}
fileprivate init() {}
}
/// This `R.font` struct is generated, and contains static references to 1 fonts.
struct font: Rswift.Validatable {
/// Font `LeagueSpartan-Bold`.
static let leagueSpartanBold = Rswift.FontResource(fontName: "LeagueSpartan-Bold")
/// `UIFont(name: "LeagueSpartan-Bold", size: ...)`
static func leagueSpartanBold(size: CGFloat) -> UIKit.UIFont? {
return UIKit.UIFont(resource: leagueSpartanBold, size: size)
}
static func validate() throws {
if R.font.leagueSpartanBold(size: 42) == nil { throw Rswift.ValidationError(description:"[R.swift] Font 'LeagueSpartan-Bold' could not be loaded, is 'league_spartan.otf' added to the UIAppFonts array in this targets Info.plist?") }
}
fileprivate init() {}
}
/// This `R.image` struct is generated, and contains static references to 15 images.
struct image {
/// Image `card_accent`.
static let card_accent = Rswift.ImageResource(bundle: R.hostingBundle, name: "card_accent")
/// Image `checked`.
static let checked = Rswift.ImageResource(bundle: R.hostingBundle, name: "checked")
/// Image `clubs`.
static let clubs = Rswift.ImageResource(bundle: R.hostingBundle, name: "clubs")
/// Image `crown`.
static let crown = Rswift.ImageResource(bundle: R.hostingBundle, name: "crown")
/// Image `cup_volume_0`.
static let cup_volume_0 = Rswift.ImageResource(bundle: R.hostingBundle, name: "cup_volume_0")
/// Image `cup_volume_1`.
static let cup_volume_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "cup_volume_1")
/// Image `cup_volume_2`.
static let cup_volume_2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "cup_volume_2")
/// Image `cup_volume_3`.
static let cup_volume_3 = Rswift.ImageResource(bundle: R.hostingBundle, name: "cup_volume_3")
/// Image `cup_volume_4`.
static let cup_volume_4 = Rswift.ImageResource(bundle: R.hostingBundle, name: "cup_volume_4")
/// Image `diamonds`.
static let diamonds = Rswift.ImageResource(bundle: R.hostingBundle, name: "diamonds")
/// Image `hearts`.
static let hearts = Rswift.ImageResource(bundle: R.hostingBundle, name: "hearts")
/// Image `ic_arrow_back`.
static let ic_arrow_back = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic_arrow_back")
/// Image `kingscup_logo_no_bg`.
static let kingscup_logo_no_bg = Rswift.ImageResource(bundle: R.hostingBundle, name: "kingscup_logo_no_bg")
/// Image `menu`.
static let menu = Rswift.ImageResource(bundle: R.hostingBundle, name: "menu")
/// Image `spades`.
static let spades = Rswift.ImageResource(bundle: R.hostingBundle, name: "spades")
#if os(iOS) || os(tvOS)
/// `UIImage(named: "card_accent", bundle: ..., traitCollection: ...)`
static func card_accent(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.card_accent, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "checked", bundle: ..., traitCollection: ...)`
static func checked(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.checked, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "clubs", bundle: ..., traitCollection: ...)`
static func clubs(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.clubs, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "crown", bundle: ..., traitCollection: ...)`
static func crown(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.crown, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "cup_volume_0", bundle: ..., traitCollection: ...)`
static func cup_volume_0(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.cup_volume_0, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "cup_volume_1", bundle: ..., traitCollection: ...)`
static func cup_volume_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.cup_volume_1, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "cup_volume_2", bundle: ..., traitCollection: ...)`
static func cup_volume_2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.cup_volume_2, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "cup_volume_3", bundle: ..., traitCollection: ...)`
static func cup_volume_3(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.cup_volume_3, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "cup_volume_4", bundle: ..., traitCollection: ...)`
static func cup_volume_4(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.cup_volume_4, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "diamonds", bundle: ..., traitCollection: ...)`
static func diamonds(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.diamonds, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "hearts", bundle: ..., traitCollection: ...)`
static func hearts(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.hearts, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "ic_arrow_back", bundle: ..., traitCollection: ...)`
static func ic_arrow_back(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.ic_arrow_back, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "kingscup_logo_no_bg", bundle: ..., traitCollection: ...)`
static func kingscup_logo_no_bg(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.kingscup_logo_no_bg, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "menu", bundle: ..., traitCollection: ...)`
static func menu(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.menu, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "spades", bundle: ..., traitCollection: ...)`
static func spades(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.spades, compatibleWith: traitCollection)
}
#endif
fileprivate init() {}
}
/// This `R.reuseIdentifier` struct is generated, and contains static references to 1 reuse identifiers.
struct reuseIdentifier {
/// Reuse identifier `CardCell`.
static let cardCell: Rswift.ReuseIdentifier<CardCell> = Rswift.ReuseIdentifier(identifier: "CardCell")
fileprivate init() {}
}
/// This `R.string` struct is generated, and contains static references to 1 localization tables.
struct string {
/// This `R.string.localizable` struct is generated, and contains static references to 65 localization keys.
struct localizable {
/// en translation: All guys drink!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_dudes = Rswift.StringResource(key: "body_dudes", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: All ladies drink!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_chicks = Rswift.StringResource(key: "body_chicks", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Alright Buddy?
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let taunt_nine = Rswift.StringResource(key: "taunt_nine", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Ask a player a question. They must respond with another question to the next person. First to fail, drink!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_questions = Rswift.StringResource(key: "body_questions", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Bathroom Break
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let dialog_pause_title = Rswift.StringResource(key: "dialog_pause_title", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Be Awesome
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let rate_button_awesome = Rswift.StringResource(key: "rate_button_awesome", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Category
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_category = Rswift.StringResource(key: "header_category", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Chicks
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_chicks = Rswift.StringResource(key: "header_chicks", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Choose Language
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let fragment_menu_language_title_choose_language = Rswift.StringResource(key: "fragment_menu_language_title_choose_language", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Choose a category. Say something that fits until whoever can't think of any, drink!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_category = Rswift.StringResource(key: "body_category", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Choose a mate And drink together!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_you = Rswift.StringResource(key: "body_you", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Choose a partner and drink whenever that player drinks!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_mate = Rswift.StringResource(key: "body_mate", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Come On
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let taunt_ten = Rswift.StringResource(key: "taunt_ten", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Coming Up
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let taunt_two = Rswift.StringResource(key: "taunt_two", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Complete the sentence, Never have I ever.. Anyone who has, drink!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_jack = Rswift.StringResource(key: "body_jack", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Don't Think
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let taunt_five = Rswift.StringResource(key: "taunt_five", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Done
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let preference_button_done = Rswift.StringResource(key: "preference_button_done", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Draw a King from the deck, you can choose any drinks to pour into the King's Cup. Person with the last King will have to finish the cup in one shot! Cheers mate.
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let guide_page_three = Rswift.StringResource(key: "guide_page_three", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Drink Me
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let taunt_six = Rswift.StringResource(key: "taunt_six", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Drink it up
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let game_over_body = Rswift.StringResource(key: "game_over_body", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Dudes
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_dudes = Rswift.StringResource(key: "header_dudes", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: English
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let preference_current_language = Rswift.StringResource(key: "preference_current_language", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Everyone reach for the sky with both hands. Last player drinks!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_heaven = Rswift.StringResource(key: "body_heaven", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Everyone starts drinking until the person who drew the card has stopped.
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_waterfall = Rswift.StringResource(key: "body_waterfall", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Faster Mate
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let taunt_seven = Rswift.StringResource(key: "taunt_seven", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Hearts and Kisses
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let preference_title_credits_summary = Rswift.StringResource(key: "preference_title_credits_summary", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Heaven
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_heaven = Rswift.StringResource(key: "header_heaven", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Help Translate
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let fragment_menu_language_btn_help_translate = Rswift.StringResource(key: "fragment_menu_language_btn_help_translate", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Hey there
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let rate_title = Rswift.StringResource(key: "rate_title", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Hold my Beer
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let load_type_new_game = Rswift.StringResource(key: "load_type_new_game", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: It was not to get you out of your game.
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let rate_paragraph_1 = Rswift.StringResource(key: "rate_paragraph_1", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Jack
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_jack = Rswift.StringResource(key: "header_jack", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Just One More
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let taunt_three = Rswift.StringResource(key: "taunt_three", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: King
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_king = Rswift.StringResource(key: "header_king", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: King's Cup
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let app_name = Rswift.StringResource(key: "app_name", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: King's Cup is designed, coded and created by a single person. Making each classification a great stimulus for me.
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let rate_paragraph_2 = Rswift.StringResource(key: "rate_paragraph_2", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Language
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let preference_title_language = Rswift.StringResource(key: "preference_title_language", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Lets begin
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let board_title_lets_begin = Rswift.StringResource(key: "board_title_lets_begin", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Mate
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_mate = Rswift.StringResource(key: "header_mate", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Me
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_me = Rswift.StringResource(key: "header_me", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: More stuff from me
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let fragment_support_rate_title_more_from_me = Rswift.StringResource(key: "fragment_support_rate_title_more_from_me", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Nobody can make eye contact with you. If caught, drink!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_snake_eyes = Rswift.StringResource(key: "body_snake_eyes", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Only you. Drink!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_me = Rswift.StringResource(key: "body_me", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Pick a person to start the game, select a card and do what it says. There is no escape! Pass to the next person when you are done.
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let guide_page_two = Rswift.StringResource(key: "guide_page_two", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Place your thumb on the table. Last to do so, drinks!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_thumb_master = Rswift.StringResource(key: "body_thumb_master", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Psst don't panic 🤫 I played this at a party and it's pretty awesome 🔥 King's Cup 🍺 No Beverages Included! https://play.google.com/store/apps/details?id=com.delacrixmorgan.kingscup
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let preference_message_share_friend = Rswift.StringResource(key: "preference_message_share_friend", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Questions
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_questions = Rswift.StringResource(key: "header_questions", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Quick Guide
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let preference_title_quick_guide = Rswift.StringResource(key: "preference_title_quick_guide", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Quit
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let dialog_pause_button_quit = Rswift.StringResource(key: "dialog_pause_button_quit", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Resume
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let dialog_pause_button_resume = Rswift.StringResource(key: "dialog_pause_button_resume", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Seriously
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let taunt_one = Rswift.StringResource(key: "taunt_one", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Set a new rule. Fill the King's Cup!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let body_king = Rswift.StringResource(key: "body_king", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Setting up New Game
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let load_type_restart_game = Rswift.StringResource(key: "load_type_restart_game", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Settings
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let preference_title = Rswift.StringResource(key: "preference_title", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Snake Eyes
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_snake_eyes = Rswift.StringResource(key: "header_snake_eyes", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Source Code
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let preference_title_source_code = Rswift.StringResource(key: "preference_title_source_code", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Tell a drinking buddy
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let preference_title_share_friend = Rswift.StringResource(key: "preference_title_share_friend", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: The well-being of this game rest entirely on your reviews. Have a great one mate!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let rate_paragraph_3 = Rswift.StringResource(key: "rate_paragraph_3", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: This Is It
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let taunt_four = Rswift.StringResource(key: "taunt_four", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Thumb Master
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_thumb_master = Rswift.StringResource(key: "header_thumb_master", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Waterfall
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_waterfall = Rswift.StringResource(key: "header_waterfall", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Yes, this a drinking game. Doesn't has to be alcoholic. Everyone must have their own drinking cup and place a cup in the middle to be the King's Cup.
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let guide_page_one = Rswift.StringResource(key: "guide_page_one", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: You
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let header_you = Rswift.StringResource(key: "header_you", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: You Sure?
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let taunt_eight = Rswift.StringResource(key: "taunt_eight", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: Zero Cluttered Currency Converter
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static let fragment_support_rate_description_squark = Rswift.StringResource(key: "fragment_support_rate_description_squark", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "es", "hu", "cs", "nl", "zh", "fi", "fr", "de", "pt-BR"], comment: nil)
/// en translation: All guys drink!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func body_dudes(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("body_dudes", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "body_dudes"
}
return NSLocalizedString("body_dudes", bundle: bundle, comment: "")
}
/// en translation: All ladies drink!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func body_chicks(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("body_chicks", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "body_chicks"
}
return NSLocalizedString("body_chicks", bundle: bundle, comment: "")
}
/// en translation: Alright Buddy?
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func taunt_nine(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("taunt_nine", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "taunt_nine"
}
return NSLocalizedString("taunt_nine", bundle: bundle, comment: "")
}
/// en translation: Ask a player a question. They must respond with another question to the next person. First to fail, drink!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func body_questions(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("body_questions", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "body_questions"
}
return NSLocalizedString("body_questions", bundle: bundle, comment: "")
}
/// en translation: Bathroom Break
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func dialog_pause_title(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("dialog_pause_title", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "dialog_pause_title"
}
return NSLocalizedString("dialog_pause_title", bundle: bundle, comment: "")
}
/// en translation: Be Awesome
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func rate_button_awesome(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("rate_button_awesome", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "rate_button_awesome"
}
return NSLocalizedString("rate_button_awesome", bundle: bundle, comment: "")
}
/// en translation: Category
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func header_category(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("header_category", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "header_category"
}
return NSLocalizedString("header_category", bundle: bundle, comment: "")
}
/// en translation: Chicks
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func header_chicks(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("header_chicks", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "header_chicks"
}
return NSLocalizedString("header_chicks", bundle: bundle, comment: "")
}
/// en translation: Choose Language
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func fragment_menu_language_title_choose_language(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("fragment_menu_language_title_choose_language", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "fragment_menu_language_title_choose_language"
}
return NSLocalizedString("fragment_menu_language_title_choose_language", bundle: bundle, comment: "")
}
/// en translation: Choose a category. Say something that fits until whoever can't think of any, drink!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func body_category(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("body_category", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "body_category"
}
return NSLocalizedString("body_category", bundle: bundle, comment: "")
}
/// en translation: Choose a mate And drink together!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func body_you(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("body_you", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "body_you"
}
return NSLocalizedString("body_you", bundle: bundle, comment: "")
}
/// en translation: Choose a partner and drink whenever that player drinks!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func body_mate(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("body_mate", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "body_mate"
}
return NSLocalizedString("body_mate", bundle: bundle, comment: "")
}
/// en translation: Come On
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func taunt_ten(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("taunt_ten", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "taunt_ten"
}
return NSLocalizedString("taunt_ten", bundle: bundle, comment: "")
}
/// en translation: Coming Up
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func taunt_two(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("taunt_two", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "taunt_two"
}
return NSLocalizedString("taunt_two", bundle: bundle, comment: "")
}
/// en translation: Complete the sentence, Never have I ever.. Anyone who has, drink!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func body_jack(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("body_jack", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "body_jack"
}
return NSLocalizedString("body_jack", bundle: bundle, comment: "")
}
/// en translation: Don't Think
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func taunt_five(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("taunt_five", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "taunt_five"
}
return NSLocalizedString("taunt_five", bundle: bundle, comment: "")
}
/// en translation: Done
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func preference_button_done(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("preference_button_done", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "preference_button_done"
}
return NSLocalizedString("preference_button_done", bundle: bundle, comment: "")
}
/// en translation: Draw a King from the deck, you can choose any drinks to pour into the King's Cup. Person with the last King will have to finish the cup in one shot! Cheers mate.
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func guide_page_three(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("guide_page_three", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "guide_page_three"
}
return NSLocalizedString("guide_page_three", bundle: bundle, comment: "")
}
/// en translation: Drink Me
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func taunt_six(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("taunt_six", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "taunt_six"
}
return NSLocalizedString("taunt_six", bundle: bundle, comment: "")
}
/// en translation: Drink it up
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func game_over_body(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("game_over_body", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "game_over_body"
}
return NSLocalizedString("game_over_body", bundle: bundle, comment: "")
}
/// en translation: Dudes
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func header_dudes(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("header_dudes", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "header_dudes"
}
return NSLocalizedString("header_dudes", bundle: bundle, comment: "")
}
/// en translation: English
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func preference_current_language(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("preference_current_language", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "preference_current_language"
}
return NSLocalizedString("preference_current_language", bundle: bundle, comment: "")
}
/// en translation: Everyone reach for the sky with both hands. Last player drinks!
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func body_heaven(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("body_heaven", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "body_heaven"
}
return NSLocalizedString("body_heaven", bundle: bundle, comment: "")
}
/// en translation: Everyone starts drinking until the person who drew the card has stopped.
///
/// Locales: en, es, hu, cs, nl, zh, fi, fr, de, pt-BR
static func body_waterfall(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("body_waterfall", bundle: hostingBundle, comment: "")