forked from vinhnx/Clendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
R.generated.swift
3187 lines (2684 loc) · 164 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(identifier: $0) } ?? 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(identifier: $0) }
.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 intern.validate()
}
/// This `R.color` struct is generated, and contains static references to 2 colors.
struct color {
/// Color `AccentColor`.
static let accentColor = Rswift.ColorResource(bundle: R.hostingBundle, name: "AccentColor")
/// Color `LaunchScreenBackgroundColor`.
static let launchScreenBackgroundColor = Rswift.ColorResource(bundle: R.hostingBundle, name: "LaunchScreenBackgroundColor")
#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: "LaunchScreenBackgroundColor", bundle: ..., traitCollection: ...)`
@available(tvOS 11.0, *)
@available(iOS 11.0, *)
static func launchScreenBackgroundColor(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIColor? {
return UIKit.UIColor(resource: R.color.launchScreenBackgroundColor, compatibleWith: traitCollection)
}
#endif
fileprivate init() {}
}
/// This `R.entitlements` struct is generated, and contains static references to 7 properties.
struct entitlements {
static let comAppleDeveloperSiri = true
static let comAppleSecurityAppSandbox = true
static let comAppleSecurityNetworkClient = true
static let comAppleSecurityPersonalInformationAddressbook = true
static let comAppleSecurityPersonalInformationCalendars = true
static let comAppleSecurityPersonalInformationLocation = true
struct comAppleSecurityApplicationGroups {
static let groupComVinhnxClendar = infoPlistString(path: ["com.apple.security.application-groups"], key: "group.com.vinhnx.Clendar") ?? "group.com.vinhnx.Clendar"
fileprivate init() {}
}
fileprivate init() {}
}
/// This `R.file` struct is generated, and contains static references to 11 files.
struct file {
/// Resource file `Settings.bundle`.
static let settingsBundle = Rswift.FileResource(bundle: R.hostingBundle, name: "Settings", pathExtension: "bundle")
/// Resource file `icon1_120.png`.
static let icon1_120Png = Rswift.FileResource(bundle: R.hostingBundle, name: "icon1_120", pathExtension: "png")
/// Resource file `icon1_180.png`.
static let icon1_180Png = Rswift.FileResource(bundle: R.hostingBundle, name: "icon1_180", pathExtension: "png")
/// Resource file `icon2_120.png`.
static let icon2_120Png = Rswift.FileResource(bundle: R.hostingBundle, name: "icon2_120", pathExtension: "png")
/// Resource file `icon2_180.png`.
static let icon2_180Png = Rswift.FileResource(bundle: R.hostingBundle, name: "icon2_180", pathExtension: "png")
/// Resource file `icon3_120.png`.
static let icon3_120Png = Rswift.FileResource(bundle: R.hostingBundle, name: "icon3_120", pathExtension: "png")
/// Resource file `icon3_180.png`.
static let icon3_180Png = Rswift.FileResource(bundle: R.hostingBundle, name: "icon3_180", pathExtension: "png")
/// Resource file `icon4_120.png`.
static let icon4_120Png = Rswift.FileResource(bundle: R.hostingBundle, name: "icon4_120", pathExtension: "png")
/// Resource file `icon4_180.png`.
static let icon4_180Png = Rswift.FileResource(bundle: R.hostingBundle, name: "icon4_180", pathExtension: "png")
/// Resource file `original_120.png`.
static let original_120Png = Rswift.FileResource(bundle: R.hostingBundle, name: "original_120", pathExtension: "png")
/// Resource file `original_180.png`.
static let original_180Png = Rswift.FileResource(bundle: R.hostingBundle, name: "original_180", pathExtension: "png")
/// `bundle.url(forResource: "Settings", withExtension: "bundle")`
static func settingsBundle(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.settingsBundle
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "icon1_120", withExtension: "png")`
static func icon1_120Png(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.icon1_120Png
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "icon1_180", withExtension: "png")`
static func icon1_180Png(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.icon1_180Png
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "icon2_120", withExtension: "png")`
static func icon2_120Png(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.icon2_120Png
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "icon2_180", withExtension: "png")`
static func icon2_180Png(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.icon2_180Png
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "icon3_120", withExtension: "png")`
static func icon3_120Png(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.icon3_120Png
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "icon3_180", withExtension: "png")`
static func icon3_180Png(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.icon3_180Png
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "icon4_120", withExtension: "png")`
static func icon4_120Png(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.icon4_120Png
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "icon4_180", withExtension: "png")`
static func icon4_180Png(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.icon4_180Png
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "original_120", withExtension: "png")`
static func original_120Png(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.original_120Png
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "original_180", withExtension: "png")`
static func original_180Png(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.original_180Png
return fileResource.bundle.url(forResource: fileResource)
}
fileprivate init() {}
}
/// This `R.image` struct is generated, and contains static references to 11 images.
struct image {
/// Image `icon1_120`.
static let icon1_120 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon1_120")
/// Image `icon1_180`.
static let icon1_180 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon1_180")
/// Image `icon2_120`.
static let icon2_120 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon2_120")
/// Image `icon2_180`.
static let icon2_180 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon2_180")
/// Image `icon3_120`.
static let icon3_120 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon3_120")
/// Image `icon3_180`.
static let icon3_180 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon3_180")
/// Image `icon4_120`.
static let icon4_120 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon4_120")
/// Image `icon4_180`.
static let icon4_180 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon4_180")
/// Image `original_120`.
static let original_120 = Rswift.ImageResource(bundle: R.hostingBundle, name: "original_120")
/// Image `original_180`.
static let original_180 = Rswift.ImageResource(bundle: R.hostingBundle, name: "original_180")
/// Image `spotlight_icon`.
static let spotlight_icon = Rswift.ImageResource(bundle: R.hostingBundle, name: "spotlight_icon")
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon1_120", bundle: ..., traitCollection: ...)`
static func icon1_120(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon1_120, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon1_180", bundle: ..., traitCollection: ...)`
static func icon1_180(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon1_180, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon2_120", bundle: ..., traitCollection: ...)`
static func icon2_120(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon2_120, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon2_180", bundle: ..., traitCollection: ...)`
static func icon2_180(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon2_180, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon3_120", bundle: ..., traitCollection: ...)`
static func icon3_120(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon3_120, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon3_180", bundle: ..., traitCollection: ...)`
static func icon3_180(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon3_180, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon4_120", bundle: ..., traitCollection: ...)`
static func icon4_120(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon4_120, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon4_180", bundle: ..., traitCollection: ...)`
static func icon4_180(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon4_180, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "original_120", bundle: ..., traitCollection: ...)`
static func original_120(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.original_120, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "original_180", bundle: ..., traitCollection: ...)`
static func original_180(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.original_180, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "spotlight_icon", bundle: ..., traitCollection: ...)`
static func spotlight_icon(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.spotlight_icon, compatibleWith: traitCollection)
}
#endif
fileprivate init() {}
}
/// This `R.info` struct is generated, and contains static references to 1 properties.
struct info {
struct nsUserActivityTypes {
static let comVinhnxClendarSiriShortcutAddEvent = infoPlistString(path: ["NSUserActivityTypes"], key: "com.vinhnx.Clendar.SiriShortcut.addEvent") ?? "com.vinhnx.Clendar.SiriShortcut.addEvent"
static let comVinhnxClendarSiriShortcutOpenSettings = infoPlistString(path: ["NSUserActivityTypes"], key: "com.vinhnx.Clendar.SiriShortcut.openSettings") ?? "com.vinhnx.Clendar.SiriShortcut.openSettings"
static let comVinhnxClendarSiriShortcutOpenShortcuts = infoPlistString(path: ["NSUserActivityTypes"], key: "com.vinhnx.Clendar.SiriShortcut.openShortcuts") ?? "com.vinhnx.Clendar.SiriShortcut.openShortcuts"
static let configurationIntent = infoPlistString(path: ["NSUserActivityTypes"], key: "ConfigurationIntent") ?? "ConfigurationIntent"
fileprivate init() {}
}
fileprivate init() {}
}
/// This `R.nib` struct is generated, and contains static references to 1 nibs.
struct nib {
/// Nib `AppIconItemCell`.
static let appIconItemCell = _R.nib._AppIconItemCell()
#if os(iOS) || os(tvOS)
/// `UINib(name: "AppIconItemCell", in: bundle)`
@available(*, deprecated, message: "Use UINib(resource: R.nib.appIconItemCell) instead")
static func appIconItemCell(_: Void = ()) -> UIKit.UINib {
return UIKit.UINib(resource: R.nib.appIconItemCell)
}
#endif
static func appIconItemCell(owner ownerOrNil: AnyObject?, options optionsOrNil: [UINib.OptionsKey : Any]? = nil) -> AppIconItemCell? {
return R.nib.appIconItemCell.instantiate(withOwner: ownerOrNil, options: optionsOrNil)[0] as? AppIconItemCell
}
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 146 localization keys.
struct localizable {
/// en translation: ... and many more features to come in the future!
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let andManyMoreFeaturesToComeInTheFuture = Rswift.StringResource(key: "... and many more features to come in the future!", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Add event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let addEvent = Rswift.StringResource(key: "Add event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: All day
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let allDay = Rswift.StringResource(key: "All day", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: App info
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let appInfo = Rswift.StringResource(key: "App info", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Are you sure you want to delete this event?
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let areYouSureYouWantToDeleteThisEvent = Rswift.StringResource(key: "Are you sure you want to delete this event?", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Auto-select day
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let autoSelectDay = Rswift.StringResource(key: "Auto-select day", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Auto-select day when month changes
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let autoSelectDayWhenMonthChanges = Rswift.StringResource(key: "Auto-select day when month changes", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Auto-select first day of month/week when calendar changes
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let autoSelectFirstDayOfMonthWeekWhenCalendarChanges = Rswift.StringResource(key: "Auto-select first day of month/week when calendar changes", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Available calendars
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let availableCalendars = Rswift.StringResource(key: "Available calendars", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Buddhist
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let buddhist = Rswift.StringResource(key: "Buddhist", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Calendar
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let calendar = Rswift.StringResource(key: "Calendar", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Calendar Type
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let calendarType = Rswift.StringResource(key: "Calendar Type", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Calendar View
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let calendarView = Rswift.StringResource(key: "Calendar View", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Calendar grid view
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let calendarGridView = Rswift.StringResource(key: "Calendar grid view", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Calendars
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let calendars = Rswift.StringResource(key: "Calendars", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Calendars Visibility
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let calendarsVisibility = Rswift.StringResource(key: "Calendars Visibility", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Cancel
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let cancel = Rswift.StringResource(key: "Cancel", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Change Language
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let changeLanguage = Rswift.StringResource(key: "Change Language", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Change app Language
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let changeAppLanguage = Rswift.StringResource(key: "Change app Language", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Check calendar at a glance
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let checkCalendarAtAGlance = Rswift.StringResource(key: "Check calendar at a glance", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Choose your desired app icon
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let chooseYourDesiredAppIcon = Rswift.StringResource(key: "Choose your desired app icon", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Clendar+ is optional one-time-purchase to access new upcoming features. Basic functionality will remain free forever. You can verify and restore past in-app-purchases, if any, by tapping on the Restore button.
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let clendarIsOptionalOneTimePurchaseToAccessNewUpcomingFeaturesBasicFunctionalityWillRemainFreeForeverYouCanVerifyAndRestorePastInAppPurchasesIfAnyByTappingOnTheRestoreButton = Rswift.StringResource(key: "Clendar+ is optional one-time-purchase to access new upcoming features. Basic functionality will remain free forever. You can verify and restore past in-app-purchases, if any, by tapping on the Restore button.", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Clendar, new event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let clendarNewEvent = Rswift.StringResource(key: "Clendar, new event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Clendar, open settings
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let clendarOpenSettings = Rswift.StringResource(key: "Clendar, open settings", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Collapse this view
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let collapseThisView = Rswift.StringResource(key: "Collapse this view", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Coptic
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let coptic = Rswift.StringResource(key: "Coptic", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Create new Clendar event(s)
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let createNewClendarEventS = Rswift.StringResource(key: "Create new Clendar event(s)", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Create new event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let createNewEvent = Rswift.StringResource(key: "Create new event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Custom App Icon
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let customAppIcon = Rswift.StringResource(key: "Custom App Icon", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Dark
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let dark = Rswift.StringResource(key: "Dark", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Date
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let date = Rswift.StringResource(key: "Date", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Date Info Widget
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let dateInfoWidget = Rswift.StringResource(key: "Date Info Widget", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Default
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let `default` = Rswift.StringResource(key: "Default", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Default Calendar
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let defaultCalendar = Rswift.StringResource(key: "Default Calendar", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Default event duration
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let defaultEventDuration = Rswift.StringResource(key: "Default event duration", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Delete
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let delete = Rswift.StringResource(key: "Delete", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Delete All Future Events
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let deleteAllFutureEvents = Rswift.StringResource(key: "Delete All Future Events", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Delete Event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let deleteEvent = Rswift.StringResource(key: "Delete Event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Delete This Event Only
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let deleteThisEventOnly = Rswift.StringResource(key: "Delete This Event Only", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Dim
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let dim = Rswift.StringResource(key: "Dim", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Dismiss view
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let dismissView = Rswift.StringResource(key: "Dismiss view", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Done
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let done = Rswift.StringResource(key: "Done", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Edit
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let edit = Rswift.StringResource(key: "Edit", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Edit Event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let editEvent = Rswift.StringResource(key: "Edit Event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: End
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let end = Rswift.StringResource(key: "End", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: End time
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let endTime = Rswift.StringResource(key: "End time", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: English
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let english = Rswift.StringResource(key: "English", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Ethiopic (Amete Alem)
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let ethiopicAmeteAlem = Rswift.StringResource(key: "Ethiopic (Amete Alem)", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Ethiopic (Amete Mihret)
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let ethiopicAmeteMihret = Rswift.StringResource(key: "Ethiopic (Amete Mihret)", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let event = Rswift.StringResource(key: "Event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Event List Widget
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let eventListWidget = Rswift.StringResource(key: "Event List Widget", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Event deleted!
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let eventDeleted = Rswift.StringResource(key: "Event deleted!", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Event duration
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let eventDuration = Rswift.StringResource(key: "Event duration", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Events
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let events = Rswift.StringResource(key: "Events", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Events deleted!
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let eventsDeleted = Rswift.StringResource(key: "Events deleted!", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Feedback/Report Issue
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let feedbackReportIssue = Rswift.StringResource(key: "Feedback/Report Issue", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Follow system
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let followSystem = Rswift.StringResource(key: "Follow system", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: General
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let general = Rswift.StringResource(key: "General", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Gregorian
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let gregorian = Rswift.StringResource(key: "Gregorian", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Haptic feedback
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let hapticFeedback = Rswift.StringResource(key: "Haptic feedback", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Hebrew
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let hebrew = Rswift.StringResource(key: "Hebrew", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: If you're feeling Clendar is helpful and would like to support the app development effort; like new features, extra themes, app icons in the future; feel free to leave me a tip. Any tip amount at all helps a lot, thank you very much!
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let ifYouReFeelingClendarIsHelpfulAndWouldLikeToSupportTheAppDevelopmentEffortLikeNewFeaturesExtraThemesAppIconsInTheFutureTipsAreGreatlyAppreciatedAnyTipAmountHelpsALotThankYouVeryMuch = Rswift.StringResource(key: "If you're feeling Clendar is helpful and would like to support the app development effort; like new features, extra themes, app icons in the future; tips are greatly appreciated. Any tip amount helps a lot, thank you very much!", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Indian
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let indian = Rswift.StringResource(key: "Indian", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Input event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let inputEvent = Rswift.StringResource(key: "Input event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Is Recurring
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let isRecurring = Rswift.StringResource(key: "Is Recurring", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Islamic
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let islamic = Rswift.StringResource(key: "Islamic", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Islamic civil
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let islamicCivil = Rswift.StringResource(key: "Islamic civil", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Japanese
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let japanese = Rswift.StringResource(key: "Japanese", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Keyboard shortcuts
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let keyboardShortcuts = Rswift.StringResource(key: "Keyboard shortcuts", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Light
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let light = Rswift.StringResource(key: "Light", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Location
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let location = Rswift.StringResource(key: "Location", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Lunar calendar (Chinese calendar)
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let lunarCalendarChineseCalendar = Rswift.StringResource(key: "Lunar calendar (Chinese calendar)", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Lunar date
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let lunarDate = Rswift.StringResource(key: "Lunar date", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Month
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let month = Rswift.StringResource(key: "Month", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Month view
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let monthView = Rswift.StringResource(key: "Month view", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Month view calendar
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let monthViewCalendar = Rswift.StringResource(key: "Month view calendar", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: More calendar identifiers, such as:
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let moreCalendarIdentifiersSuchAs = Rswift.StringResource(key: "More calendar identifiers, such as:", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Name
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let name = Rswift.StringResource(key: "Name", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: New Clendar Event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let newClendarEvent = Rswift.StringResource(key: "New Clendar Event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: New Event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let newEvent = Rswift.StringResource(key: "New Event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: No event selected
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let noEventSelected = Rswift.StringResource(key: "No event selected", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: No events for today, enjoy your day!
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let noEventsForTodayEnjoyYourDay = Rswift.StringResource(key: "No events for today,\nenjoy your day!\n", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: No events for today, enjoy your day! 🎉
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let noEventsForTodayEnjoyYourDay🎉 = Rswift.StringResource(key: "No events for today,\nenjoy your day!\n🎉", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: No more events today, enjoy your day!
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let noMoreEventsTodayEnjoyYourDay = Rswift.StringResource(key: "No more events today,\nenjoy your day!\n", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: No more events today, enjoy your day! 🎉
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let noMoreEventsTodayEnjoyYourDay🎉 = Rswift.StringResource(key: "No more events today,\nenjoy your day!\n🎉", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: None
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let none = Rswift.StringResource(key: "None", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: OK
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let oK = Rswift.StringResource(key: "OK", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Off
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let off = Rswift.StringResource(key: "Off", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: On
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let on = Rswift.StringResource(key: "On", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Open Clendar Settings
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let openClendarSettings = Rswift.StringResource(key: "Open Clendar Settings", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Open Clendar Siri Shortcuts
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let openClendarSiriShortcuts = Rswift.StringResource(key: "Open Clendar Siri Shortcuts", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Open Settings
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let openSettings = Rswift.StringResource(key: "Open Settings", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Original
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let original = Rswift.StringResource(key: "Original", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Persian
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let persian = Rswift.StringResource(key: "Persian", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Preferences
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let preferences = Rswift.StringResource(key: "Preferences", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Productivity, increased! 🚀
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let productivityIncreased🚀 = Rswift.StringResource(key: "Productivity, increased! 🚀", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Quick Event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let quickEvent = Rswift.StringResource(key: "Quick Event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Rate Clendar
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let rateClendar = Rswift.StringResource(key: "Rate Clendar", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Recurring date
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let recurringDate = Rswift.StringResource(key: "Recurring date", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Recurring event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let recurringEvent = Rswift.StringResource(key: "Recurring event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Republic of China
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let republicOfChina = Rswift.StringResource(key: "Republic of China", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Restore
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let restore = Rswift.StringResource(key: "Restore", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Restore Purchases
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let restorePurchases = Rswift.StringResource(key: "Restore Purchases", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Save event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let saveEvent = Rswift.StringResource(key: "Save event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Select event end time
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let selectEventEndTime = Rswift.StringResource(key: "Select event end time", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Select event start time
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let selectEventStartTime = Rswift.StringResource(key: "Select event start time", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Settings
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let settings = Rswift.StringResource(key: "Settings", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Share Clendar
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let shareClendar = Rswift.StringResource(key: "Share Clendar", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Sharing
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let sharing = Rswift.StringResource(key: "Sharing", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Sharing is caring. If you like Clendar, please leave a review or help sharing this app to the world, thank you!
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let sharingIsCaringIfYouLikeClendarPleaseLeaveAReviewOrHelpSharingThisAppToTheWorldThankYou = Rswift.StringResource(key: "Sharing is caring. If you like Clendar, please leave a review or help sharing this app to the world, thank you!", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Show Siri shortcuts view
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let showSiriShortcutsView = Rswift.StringResource(key: "Show Siri shortcuts view", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Show days out
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let showDaysOut = Rswift.StringResource(key: "Show days out", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Siri Shortcuts
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let siriShortcuts = Rswift.StringResource(key: "Siri Shortcuts", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Start
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let start = Rswift.StringResource(key: "Start", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Start time
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let startTime = Rswift.StringResource(key: "Start time", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Supplementary day view
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let supplementaryDayView = Rswift.StringResource(key: "Supplementary day view", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Support
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let support = Rswift.StringResource(key: "Support", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Swipe down to collapse
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let swipeDownToCollapse = Rswift.StringResource(key: "Swipe down to collapse", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Switch to current date
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let switchToCurrentDate = Rswift.StringResource(key: "Switch to current date", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Themes
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let themes = Rswift.StringResource(key: "Themes", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: This is a repeating event.
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let thisIsARepeatingEvent = Rswift.StringResource(key: "This is a repeating event.", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Tip jar
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let tipJar = Rswift.StringResource(key: "Tip jar", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Title of the event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let titleOfTheEvent = Rswift.StringResource(key: "Title of the event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Toggle all day switch
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let toggleAllDaySwitch = Rswift.StringResource(key: "Toggle all day switch", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: True Dark
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let trueDark = Rswift.StringResource(key: "True Dark", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: True Light
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let trueLight = Rswift.StringResource(key: "True Light", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Unable to determine email sending state
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let unableToDetermineEmailSendingState = Rswift.StringResource(key: "Unable to determine email sending state", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Unable to open email client, please try again later
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let unableToOpenEmailClientPleaseTryAgainLater = Rswift.StringResource(key: "Unable to open email client, please try again later", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Unlock all features with one purchase!
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let unlockAllFeaturesWithOnePurchase = Rswift.StringResource(key: "Unlock all features with one purchase!", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Upcoming events
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let upcomingEvents = Rswift.StringResource(key: "Upcoming events", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Version
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let version = Rswift.StringResource(key: "Version", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Vietnamese
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let vietnamese = Rswift.StringResource(key: "Vietnamese", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: View Event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let viewEvent = Rswift.StringResource(key: "View Event", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: View mode
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let viewMode = Rswift.StringResource(key: "View mode", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Week
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let week = Rswift.StringResource(key: "Week", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Week view
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let weekView = Rswift.StringResource(key: "Week view", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Widget theme
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let widgetTheme = Rswift.StringResource(key: "Widget theme", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: You can choose available calendars to show in event list
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let youCanChooseAvailableCalendarsToShownInEventList = Rswift.StringResource(key: "You can choose available calendars to shown in event list", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: You can now quick shortcuts to Siri and Shortcuts app. Try adding one below
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let youCanNowQuickShortcutsToSiriAndShortcutsAppTryAddingOneBelow = Rswift.StringResource(key: "You can now quick shortcuts to Siri and Shortcuts app. Try adding one below", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: You have Clendar+. Thanks for your support! 😊
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let youHaveClendarThanksForYourSupport😊 = Rswift.StringResource(key: "You have Clendar+. Thanks for your support! 😊", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: You will be redirect to Settings app to select your preferred app language. After choosing the language, please relaunch the application to apply effects (Tip: you can tap the top left icon, below the status bar to quickly launch the app).
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let youWillBeRedirectToSettingsAppToSelectYourPreferredAppLanguageAfterChoosingTheLanguagePleaseRelaunchTheApplicationToApplyEffectsTipYouCanTapTheTopLeftIconBelowTheStatusBarToQuicklyLaunchTheApp = Rswift.StringResource(key: "You will be redirect to Settings app to select your preferred app language. After choosing the language, please relaunch the application to apply effects (Tip: you can tap the top left icon, below the status bar to quickly launch the app).", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: Your day events at a glance
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let yourDayEventsAtAGlance = Rswift.StringResource(key: "Your day events at a glance", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: [Beta] You can choose to use experimental natural language parsing mode when create new event. This feature will be constantly improved. Available languages: English, Spanish, French, Japanese, German, Chinese.
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let betaYouCanChooseToUseExperimentalNaturalLanguageParsingModeWhenCreateNewEventThisFeatureWillBeConstantlyImprovedAvailableLanguagesEnglishSpanishFrenchJapaneseGermanChinese = Rswift.StringResource(key: "[Beta] You can choose to use experimental natural language parsing mode when create new event. This feature will be constantly improved. Available languages: English, Spanish, French, Japanese, German, Chinese.", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: minutes
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let minutes = Rswift.StringResource(key: "minutes", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: read a book this Friday 8PM...
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let readABookThisFriday8PM = Rswift.StringResource(key: "read a book this Friday 8PM...", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: tabular Islamic
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static let tabularIslamic = Rswift.StringResource(key: "tabular Islamic", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "vi", "ja", "zh-hans", "es", "ko", "zh-hant", "th", "de", "fr"], comment: nil)
/// en translation: ... and many more features to come in the future!
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static func andManyMoreFeaturesToComeInTheFuture(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("... and many more features to come in the future!", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "... and many more features to come in the future!"
}
return NSLocalizedString("... and many more features to come in the future!", bundle: bundle, comment: "")
}
/// en translation: Add event
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static func addEvent(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("Add event", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "Add event"
}
return NSLocalizedString("Add event", bundle: bundle, comment: "")
}
/// en translation: All day
///
/// Locales: en, vi, ja, zh-hans, es, ko, zh-hant, th, de, fr
static func allDay(preferredLanguages: [String]? = nil) -> String {
guard let preferredLanguages = preferredLanguages else {
return NSLocalizedString("All day", bundle: hostingBundle, comment: "")
}
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else {
return "All day"
}