-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathStrings+Generated.swift
3767 lines (3761 loc) · 259 KB
/
Strings+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
// swiftlint:disable all
// Generated using SwiftGen — https://github.com/SwiftGen/SwiftGen
import Foundation
// swiftlint:disable superfluous_disable_command file_length implicit_return
// MARK: - Strings
// swiftlint:disable explicit_type_interface function_parameter_count identifier_name line_length
// swiftlint:disable nesting type_body_length type_name vertical_whitespace_opening_braces
internal enum L10n {
/// Automattic Family
internal static var aboutA8cFamily: String { return L10n.tr("Localizable", "about_a8c_family") }
/// Acknowledgements
internal static var aboutAcknowledgements: String { return L10n.tr("Localizable", "about_acknowledgements") }
/// Join From Anywhere
internal static var aboutJoinFromAnywhere: String { return L10n.tr("Localizable", "about_join_from_anywhere") }
/// Legal and More
internal static var aboutLegalAndMore: String { return L10n.tr("Localizable", "about_legal_and_more") }
/// Privacy Policy
internal static var aboutPrivacyPolicy: String { return L10n.tr("Localizable", "about_privacy_policy") }
/// Rate Us
internal static var aboutRateUs: String { return L10n.tr("Localizable", "about_rate_us") }
/// Share With Friends
internal static var aboutShareFriends: String { return L10n.tr("Localizable", "about_share_friends") }
/// Terms of service
internal static var aboutTermsOfService: String { return L10n.tr("Localizable", "about_terms_of_service") }
/// Website
internal static var aboutWebsite: String { return L10n.tr("Localizable", "about_website") }
/// Work With Us
internal static var aboutWorkWithUs: String { return L10n.tr("Localizable", "about_work_with_us") }
/// Cancel multiselect
internal static var accessibilityCancelMultiselect: String { return L10n.tr("Localizable", "accessibility_cancel_multiselect") }
/// Close dialog
internal static var accessibilityCloseDialog: String { return L10n.tr("Localizable", "accessibility_close_dialog") }
/// Deselect Episode
internal static var accessibilityDeselectEpisode: String { return L10n.tr("Localizable", "accessibility_deselect_episode") }
/// Disabled
internal static var accessibilityDisabled: String { return L10n.tr("Localizable", "accessibility_disabled") }
/// Dismiss
internal static var accessibilityDismiss: String { return L10n.tr("Localizable", "accessibility_dismiss") }
/// Episode Playback
internal static var accessibilityEpisodePlayback: String { return L10n.tr("Localizable", "accessibility_episode_playback") }
/// Tap to hide filter details
internal static var accessibilityHideFilterDetails: String { return L10n.tr("Localizable", "accessibility_hide_filter_details") }
/// Tap to navigate to main podcast information page
internal static var accessibilityHintPlayerNavigateToPodcastLabel: String { return L10n.tr("Localizable", "accessibility_hint_player_navigate_to_podcast_label") }
/// Double tap to star episode
internal static var accessibilityHintStar: String { return L10n.tr("Localizable", "accessibility_hint_star") }
/// Double tap to remove star from episode
internal static var accessibilityHintUnstar: String { return L10n.tr("Localizable", "accessibility_hint_unstar") }
/// More actions
internal static var accessibilityMoreActions: String { return L10n.tr("Localizable", "accessibility_more_actions") }
/// Locked, Patron Feature
internal static var accessibilityPatronOnly: String { return L10n.tr("Localizable", "accessibility_patron_only") }
/// %1$@ percent completed
internal static func accessibilityPercentCompleteFormat(_ p1: Any) -> String {
return L10n.tr("Localizable", "accessibility_percent_complete_format", String(describing: p1))
}
/// %1$@ of %2$@
internal static func accessibilityPlaybackProgress(_ p1: Any, _ p2: Any) -> String {
return L10n.tr("Localizable", "accessibility_playback_progress", String(describing: p1), String(describing: p2))
}
/// Playback speed %1$@ times
internal static func accessibilityPlayerEffectsPlaybackSpeed(_ p1: Any) -> String {
return L10n.tr("Localizable", "accessibility_player_effects_playback_speed", String(describing: p1))
}
/// Playlist color %1$@
internal static func accessibilityPlaylistColor(_ p1: Any) -> String {
return L10n.tr("Localizable", "accessibility_playlist_color", String(describing: p1))
}
/// Locked, Plus Feature
internal static var accessibilityPlusOnly: String { return L10n.tr("Localizable", "accessibility_plus_only") }
/// Pocket Casts Settings
internal static var accessibilityProfileSettings: String { return L10n.tr("Localizable", "accessibility_profile_settings") }
/// Select Episode
internal static var accessibilitySelectEpisode: String { return L10n.tr("Localizable", "accessibility_select_episode") }
/// Tap to show filter details
internal static var accessibilityShowFilterDetails: String { return L10n.tr("Localizable", "accessibility_show_filter_details") }
/// Tap to view or setup account
internal static var accessibilitySignIn: String { return L10n.tr("Localizable", "accessibility_sign_in") }
/// Sort and Options
internal static var accessibilitySortAndOptions: String { return L10n.tr("Localizable", "accessibility_sort_and_options") }
/// Account
internal static var account: String { return L10n.tr("Localizable", "account") }
/// Change Email
internal static var accountChangeEmail: String { return L10n.tr("Localizable", "account_change_email") }
/// Almost There!
internal static var accountCompletionNudge: String { return L10n.tr("Localizable", "account_completion_nudge") }
/// Finalize your payment to finish upgrading your account.
internal static var accountCompletionNudgeMsg: String { return L10n.tr("Localizable", "account_completion_nudge_msg") }
/// Account Created
internal static var accountCreated: String { return L10n.tr("Localizable", "account_created") }
/// Complete Account
internal static var accountCreationComplete: String { return L10n.tr("Localizable", "account_creation_complete") }
/// Delete Account
internal static var accountDeleteAccount: String { return L10n.tr("Localizable", "account_delete_account") }
/// Yes, Delete It
internal static var accountDeleteAccountConf: String { return L10n.tr("Localizable", "account_delete_account_conf") }
/// Delete Account Failed
internal static var accountDeleteAccountError: String { return L10n.tr("Localizable", "account_delete_account_error") }
/// Unable to delete account.
internal static var accountDeleteAccountErrorMsg: String { return L10n.tr("Localizable", "account_delete_account_error_msg") }
/// Last chance, you definitely want to delete your account? You will lose all your subscriptions and play history permanently!
internal static var accountDeleteAccountFinalAlertMsg: String { return L10n.tr("Localizable", "account_delete_account_final_alert_msg") }
/// Are you sure you want to delete your account, there's no way to undo this!
internal static var accountDeleteAccountFirstAlertMsg: String { return L10n.tr("Localizable", "account_delete_account_first_alert_msg") }
/// Delete Account?
internal static var accountDeleteAccountTitle: String { return L10n.tr("Localizable", "account_delete_account_title") }
/// Free Account
internal static var accountDetailsFreeAccount: String { return L10n.tr("Localizable", "account_details_free_account") }
/// Listened for %1$@
internal static func accountDetailsListenedFor(_ p1: Any) -> String {
return L10n.tr("Localizable", "account_details_listened_for", String(describing: p1))
}
/// Take your podcasting experience to the next level with exclusive access to features and customisation options.
internal static var accountDetailsPlusTitle: String { return L10n.tr("Localizable", "account_details_plus_title") }
/// Log in
internal static var accountLogin: String { return L10n.tr("Localizable", "account_login") }
/// Renews automatically monthly
internal static var accountPaymentRenewsMonthly: String { return L10n.tr("Localizable", "account_payment_renews_monthly") }
/// Renews automatically yearly
internal static var accountPaymentRenewsYearly: String { return L10n.tr("Localizable", "account_payment_renews_yearly") }
/// Privacy Policy
internal static var accountPrivacyPolicy: String { return L10n.tr("Localizable", "account_privacy_policy") }
/// Registration failed, please try again later
internal static var accountRegistrationFailed: String { return L10n.tr("Localizable", "account_registration_failed") }
/// Select Account Type
internal static var accountSelectType: String { return L10n.tr("Localizable", "account_select_type") }
/// Sign Out
internal static var accountSignOut: String { return L10n.tr("Localizable", "account_sign_out") }
/// Signing out will remove %1$@ supported podcasts from this device. Are you sure?
internal static func accountSignOutSupporterPrompt(_ p1: Any) -> String {
return L10n.tr("Localizable", "account_sign_out_supporter_prompt", String(describing: p1))
}
/// You can sign in again to regain access.
internal static var accountSignOutSupporterSubtitle: String { return L10n.tr("Localizable", "account_sign_out_supporter_subtitle") }
/// Turns out, if you type Google into Google, you can break the internet. 🫢
///
/// Tap the button below to sign into your Pocket Casts account again.
internal static var accountSignedOutAlertMessage: String { return L10n.tr("Localizable", "account_signed_out_alert_message") }
/// You've been signed out.
internal static var accountSignedOutAlertTitle: String { return L10n.tr("Localizable", "account_signed_out_alert_title") }
/// Sign in failed. Please try again.
internal static var accountSsoFailed: String { return L10n.tr("Localizable", "account_sso_failed") }
/// Pocket Casts Account
internal static var accountTitle: String { return L10n.tr("Localizable", "account_title") }
/// Account Upgraded
internal static var accountUpgraded: String { return L10n.tr("Localizable", "account_upgraded") }
/// Welcome to Pocket Casts!
internal static var accountWelcome: String { return L10n.tr("Localizable", "account_welcome") }
/// Welcome to Pocket Casts Plus!
internal static var accountWelcomePlus: String { return L10n.tr("Localizable", "account_welcome_plus") }
/// Add Bookmark
internal static var addBookmark: String { return L10n.tr("Localizable", "add_bookmark") }
/// Add an optional title to identify this bookmark
internal static var addBookmarkSubtitle: String { return L10n.tr("Localizable", "add_bookmark_subtitle") }
/// Add to Up Next
internal static var addToUpNext: String { return L10n.tr("Localizable", "add_to_up_next") }
/// After Playing
internal static var afterPlaying: String { return L10n.tr("Localizable", "after_playing") }
/// If your Up Next queue is empty and you start listening to an episode, Autoplay will keep playing episodes from that show or list.
internal static var announcementAutoplayDescription: String { return L10n.tr("Localizable", "announcement_autoplay_description") }
/// Autoplay is here!
internal static var announcementAutoplayTitle: String { return L10n.tr("Localizable", "announcement_autoplay_title") }
/// You can now save timestamps of episodes from the actions menu in the player or with a headphones action.
internal static var announcementBookmarksDescription: String { return L10n.tr("Localizable", "announcement_bookmarks_description") }
/// Bookmarks are here!
internal static var announcementBookmarksTitle: String { return L10n.tr("Localizable", "announcement_bookmarks_title") }
/// Join us in the beta testing for bookmarks!
internal static var announcementBookmarksTitleBeta: String { return L10n.tr("Localizable", "announcement_bookmarks_title_beta") }
/// Subscribe to Plus now so you can preselect and skip chapters automatically in any episode that supports them.
internal static var announcementDeselectChaptersFree: String { return L10n.tr("Localizable", "announcement_deselect_chapters_free") }
/// As part of your Patron subscription, you can now preselect and skip chapters automatically in any episode that supports them.
internal static var announcementDeselectChaptersPatron: String { return L10n.tr("Localizable", "announcement_deselect_chapters_patron") }
/// As part of your Plus subscription, you can now preselect and skip chapters automatically in any episode that supports them.
internal static var announcementDeselectChaptersPlus: String { return L10n.tr("Localizable", "announcement_deselect_chapters_plus") }
/// Code copied to clipboard
internal static var announcementSlumberCodeCopied: String { return L10n.tr("Localizable", "announcement_slumber_code_copied") }
/// Subscribe to Plus Yearly and enjoy a 1-year subscription to Slumber Studios content, podcasts designed for the sweetest dreams. Learn more.
internal static var announcementSlumberNonPlusDescription: String { return L10n.tr("Localizable", "announcement_slumber_non_plus_description") }
/// As part of your Yearly Plus subscription, enjoy a 1-year subscription to Slumber Studios content using code %1$@. Learn more.
internal static func announcementSlumberPlusDescription(_ p1: Any) -> String {
return L10n.tr("Localizable", "announcement_slumber_plus_description", String(describing: p1))
}
/// Learn more
internal static var announcementSlumberPlusDescriptionLearnMore: String { return L10n.tr("Localizable", "announcement_slumber_plus_description_learn_more") }
/// Redeem your code
internal static var announcementSlumberRedeem: String { return L10n.tr("Localizable", "announcement_slumber_redeem") }
/// Dream big
internal static var announcementSlumberTitle: String { return L10n.tr("Localizable", "announcement_slumber_title") }
/// App Badge
internal static var appBadge: String { return L10n.tr("Localizable", "app_badge") }
/// It may have been removed or the link is broken.
/// But there's plenty more on Pocket Casts.
/// Download the app for the full experience!
internal static var appClipPlacholderMessage: String { return L10n.tr("Localizable", "app_clip_placholder_message") }
/// Sorry, we couldn't find that episode
internal static var appClipPlacholderTitle: String { return L10n.tr("Localizable", "app_clip_placholder_title") }
/// Classic
internal static var appIconClassic: String { return L10n.tr("Localizable", "app_icon_classic") }
/// Dark
internal static var appIconDark: String { return L10n.tr("Localizable", "app_icon_dark") }
/// Default
internal static var appIconDefault: String { return L10n.tr("Localizable", "app_icon_default") }
/// Electric Blue
internal static var appIconElectricBlue: String { return L10n.tr("Localizable", "app_icon_electric_blue") }
/// Electric Pink
internal static var appIconElectricPink: String { return L10n.tr("Localizable", "app_icon_electric_pink") }
/// Halloween
internal static var appIconHalloween: String { return L10n.tr("Localizable", "app_icon_halloween") }
/// Indigo
internal static var appIconIndigo: String { return L10n.tr("Localizable", "app_icon_indigo") }
/// Patron Chrome
internal static var appIconPatronChrome: String { return L10n.tr("Localizable", "app_icon_patron_chrome") }
/// Patron Dark
internal static var appIconPatronDark: String { return L10n.tr("Localizable", "app_icon_patron_dark") }
/// Patron Glow
internal static var appIconPatronGlow: String { return L10n.tr("Localizable", "app_icon_patron_glow") }
/// Patron Round
internal static var appIconPatronRound: String { return L10n.tr("Localizable", "app_icon_patron_round") }
/// Plus
internal static var appIconPlus: String { return L10n.tr("Localizable", "app_icon_plus") }
/// Pocket Cats
internal static var appIconPocketCats: String { return L10n.tr("Localizable", "app_icon_pocket_cats") }
/// Radioactivity
internal static var appIconRadioactivity: String { return L10n.tr("Localizable", "app_icon_radioactivity") }
/// Red Velvet
internal static var appIconRedVelvet: String { return L10n.tr("Localizable", "app_icon_red_velvet") }
/// Rosé
internal static var appIconRose: String { return L10n.tr("Localizable", "app_icon_rose") }
/// Round Dark
internal static var appIconRoundDark: String { return L10n.tr("Localizable", "app_icon_round_dark") }
/// Round Light
internal static var appIconRoundLight: String { return L10n.tr("Localizable", "app_icon_round_light") }
/// Hey! Here is a link to download the Pocket Casts app. I'm really enjoying it and thought you might too.
internal static var appShareText: String { return L10n.tr("Localizable", "app_share_text") }
/// Version %1$@ (%2$@)
internal static func appVersion(_ p1: Any, _ p2: Any) -> String {
return L10n.tr("Localizable", "app_version", String(describing: p1), String(describing: p2))
}
/// App Icon
internal static var appearanceAppIconHeader: String { return L10n.tr("Localizable", "appearance_app_icon_header") }
/// Podcast Artwork
internal static var appearanceArtworkHeader: String { return L10n.tr("Localizable", "appearance_artwork_header") }
/// Dark Theme
internal static var appearanceDarkTheme: String { return L10n.tr("Localizable", "appearance_dark_theme") }
/// Use Episode Artwork
internal static var appearanceEmbeddedArtwork: String { return L10n.tr("Localizable", "appearance_embedded_artwork") }
/// Some shows have custom artwork for certain episodes. Enable this option and Pocket Casts will display them instead of the show’s artwork.
internal static var appearanceEmbeddedArtworkSubtitle: String { return L10n.tr("Localizable", "appearance_embedded_artwork_subtitle") }
/// Light Theme
internal static var appearanceLightTheme: String { return L10n.tr("Localizable", "appearance_light_theme") }
/// Use iOS Light/Dark Mode
internal static var appearanceMatchDeviceTheme: String { return L10n.tr("Localizable", "appearance_match_device_theme") }
/// Refresh All Podcast Artwork
internal static var appearanceRefreshAllArtwork: String { return L10n.tr("Localizable", "appearance_refresh_all_artwork") }
/// Refreshing your artwork now
internal static var appearanceRefreshAllArtworkConfMsg: String { return L10n.tr("Localizable", "appearance_refresh_all_artwork_conf_msg") }
/// Aye Aye Captain
internal static var appearanceRefreshAllArtworkConfTitle: String { return L10n.tr("Localizable", "appearance_refresh_all_artwork_conf_title") }
/// Theme
internal static var appearanceThemeHeader: String { return L10n.tr("Localizable", "appearance_theme_header") }
/// Select Theme
internal static var appearanceThemeSelect: String { return L10n.tr("Localizable", "appearance_theme_select") }
/// Archive
internal static var archive: String { return L10n.tr("Localizable", "archive") }
/// Are You Sure?
internal static var areYouSure: String { return L10n.tr("Localizable", "are_you_sure") }
/// Auto Add To
internal static var autoAdd: String { return L10n.tr("Localizable", "auto_add") }
/// To Bottom
internal static var autoAddToBottom: String { return L10n.tr("Localizable", "auto_add_to_bottom") }
/// To Top
internal static var autoAddToTop: String { return L10n.tr("Localizable", "auto_add_to_top") }
/// Stop Adding New Episodes
internal static var autoAddToUpNextStop: String { return L10n.tr("Localizable", "auto_add_to_up_next_stop") }
/// Stop Adding
internal static var autoAddToUpNextStopShort: String { return L10n.tr("Localizable", "auto_add_to_up_next_stop_short") }
/// Only Add To Top
internal static var autoAddToUpNextTopOnly: String { return L10n.tr("Localizable", "auto_add_to_up_next_top_only") }
/// Only Add To Top
internal static var autoAddToUpNextTopOnlyShort: String { return L10n.tr("Localizable", "auto_add_to_up_next_top_only_short") }
/// Auto Download First
internal static var autoDownloadFirst: String { return L10n.tr("Localizable", "auto_download_first") }
/// Limit auto downloads
internal static var autoDownloadLimitAutoDownloads: String { return L10n.tr("Localizable", "auto_download_limit_auto_downloads") }
/// Limit Downloads
internal static var autoDownloadLimitDownloads: String { return L10n.tr("Localizable", "auto_download_limit_downloads") }
/// %1$@ Episodes
internal static func autoDownloadLimitNumberOfEpisodes(_ p1: Any) -> String {
return L10n.tr("Localizable", "auto_download_limit_number_of_episodes", String(describing: p1))
}
/// %1$@ Latest Episodes per Show
internal static func autoDownloadLimitNumberOfEpisodesShow(_ p1: Any) -> String {
return L10n.tr("Localizable", "auto_download_limit_number_of_episodes_show", String(describing: p1))
}
/// Latest Episode
internal static var autoDownloadLimitOneEpisode: String { return L10n.tr("Localizable", "auto_download_limit_one_episode") }
/// Latest Episode per Show
internal static var autoDownloadLimitOneEpisodeShow: String { return L10n.tr("Localizable", "auto_download_limit_one_episode_show") }
/// Enable to auto download episodes in this filter
internal static var autoDownloadOffSubtitle: String { return L10n.tr("Localizable", "auto_download_off_subtitle") }
/// The first %1$@ episodes in this filter will be automatically downloaded
internal static func autoDownloadOnPluralFormat(_ p1: Any) -> String {
return L10n.tr("Localizable", "auto_download_on_plural_format", String(describing: p1))
}
/// First
internal static var autoDownloadPromptFirst: String { return L10n.tr("Localizable", "auto_download_prompt_first") }
/// Auto Restart Sleep Timer
internal static var autoRestartSleepTimer: String { return L10n.tr("Localizable", "auto_restart_sleep_timer") }
/// If on, the sleep timer will restart automatically if you play an episode within 5 minutes after the last pause.
internal static var autoRestartSleepTimerDescription: String { return L10n.tr("Localizable", "auto_restart_sleep_timer_description") }
/// Back
internal static var back: String { return L10n.tr("Localizable", "back") }
/// Please download Pocket Casts from the App Store to purchase %1$@.
internal static func betaPurchaseDisabled(_ p1: Any) -> String {
return L10n.tr("Localizable", "beta_purchase_disabled", String(describing: p1))
}
/// Thank you for beta testing!
internal static var betaThankYou: String { return L10n.tr("Localizable", "beta_thank_you") }
/// Bookmark added
internal static var bookmarkAdded: String { return L10n.tr("Localizable", "bookmark_added") }
/// View
internal static var bookmarkAddedButtonTitle: String { return L10n.tr("Localizable", "bookmark_added_button_title") }
/// Bookmark "%1$@" added
internal static func bookmarkAddedNotification(_ p1: Any) -> String {
return L10n.tr("Localizable", "bookmark_added_notification", String(describing: p1))
}
/// Bookmark
internal static var bookmarkDefaultTitle: String { return L10n.tr("Localizable", "bookmark_default_title") }
/// Are you sure you want to delete these bookmarks, there’s no way to undo it!
internal static var bookmarkDeleteWarningBody: String { return L10n.tr("Localizable", "bookmark_delete_warning_body") }
/// Delete Bookmarks?
internal static var bookmarkDeleteWarningTitle: String { return L10n.tr("Localizable", "bookmark_delete_warning_title") }
/// We couldn't find any bookmarks for that search.
internal static var bookmarkSearchNoResultsMessage: String { return L10n.tr("Localizable", "bookmark_search_no_results_message") }
/// No bookmarks found
internal static var bookmarkSearchNoResultsTitle: String { return L10n.tr("Localizable", "bookmark_search_no_results_title") }
/// Bookmark "%1$@" updated
internal static func bookmarkUpdatedNotification(_ p1: Any) -> String {
return L10n.tr("Localizable", "bookmark_updated_notification", String(describing: p1))
}
/// Bookmarks
internal static var bookmarks: String { return L10n.tr("Localizable", "bookmarks") }
/// %1$@ bookmarks
internal static func bookmarksCountPlural(_ p1: Any) -> String {
return L10n.tr("Localizable", "bookmarks_count_plural", String(describing: p1))
}
/// 1 bookmark
internal static var bookmarksCountSingular: String { return L10n.tr("Localizable", "bookmarks_count_singular") }
/// Unlock this feature and many more with Pocket Casts %1$@ and save timestamps of your favorite episodes. Available for %2$@ subscribers soon.
internal static func bookmarksEarlyAccessLockedMessage(_ p1: Any, _ p2: Any) -> String {
return L10n.tr("Localizable", "bookmarks_early_access_locked_message", String(describing: p1), String(describing: p2))
}
/// Unlock this feature and many more with Pocket Casts %1$@ and save timestamps of your favorite episodes.
internal static func bookmarksLockedMessage(_ p1: Any) -> String {
return L10n.tr("Localizable", "bookmarks_locked_message", String(describing: p1))
}
/// Bottom
internal static var bottom: String { return L10n.tr("Localizable", "bottom") }
/// Bulk downloads are limited to %1$@.
internal static func bulkDownloadMaxFormat(_ p1: Any) -> String {
return L10n.tr("Localizable", "bulk_download_max_format", String(describing: p1))
}
/// Cancel
internal static var cancel: String { return L10n.tr("Localizable", "cancel") }
/// Yes, Cancel my Subscription
internal static var cancelConfirmCancelButtonTitle: String { return L10n.tr("Localizable", "cancel_confirm_cancel_button_title") }
/// Your folders will be removed and their contents will move back to the Podcasts screen.
internal static var cancelConfirmItemFolders: String { return L10n.tr("Localizable", "cancel_confirm_item_folders") }
/// Access to Pocket Casts Plus features will be locked after this date.
internal static var cancelConfirmItemPlus: String { return L10n.tr("Localizable", "cancel_confirm_item_plus") }
/// All files uploaded to your Pocket Casts account will be deleted (but downloaded files on your mobile devices will remain)
internal static var cancelConfirmItemUploads: String { return L10n.tr("Localizable", "cancel_confirm_item_uploads") }
/// You will no longer be able to access Pocket Casts using your web browser, or desktop computer.
internal static var cancelConfirmItemWebPlayer: String { return L10n.tr("Localizable", "cancel_confirm_item_web_player") }
/// Actually, I want to stay
internal static var cancelConfirmStayButtonTitle: String { return L10n.tr("Localizable", "cancel_confirm_stay_button_title") }
/// Your current subscription will remain active until %1$@.
internal static func cancelConfirmSubExpiry(_ p1: Any) -> String {
return L10n.tr("Localizable", "cancel_confirm_sub_expiry", String(describing: p1))
}
/// your expiration date
internal static var cancelConfirmSubExpiryDateFallback: String { return L10n.tr("Localizable", "cancel_confirm_sub_expiry_date_fallback") }
/// This will change your plan to a free account.
internal static var cancelConfirmSubtitle: String { return L10n.tr("Localizable", "cancel_confirm_subtitle") }
/// Cancel Download
internal static var cancelDownload: String { return L10n.tr("Localizable", "cancel_download") }
/// Unable To Cancel
internal static var cancelFailed: String { return L10n.tr("Localizable", "cancel_failed") }
/// Cancel Subscription
internal static var cancelSubscription: String { return L10n.tr("Localizable", "cancel_subscription") }
/// Your new plan will activate at the end of your current billing period.
internal static var cancelSubscriptionAvailablePlansFooter: String { return L10n.tr("Localizable", "cancel_subscription_available_plans_footer") }
/// Sorry, but something went wrong fetching your plans.
internal static var cancelSubscriptionAvailablePlansRetryScreenText: String { return L10n.tr("Localizable", "cancel_subscription_available_plans_retry_screen_text") }
/// Available Plans
internal static var cancelSubscriptionAvailablePlansTitle: String { return L10n.tr("Localizable", "cancel_subscription_available_plans_title") }
/// Claim offer
internal static var cancelSubscriptionClaimOfferButton: String { return L10n.tr("Localizable", "cancel_subscription_claim_offer_button") }
/// Continue to Cancellation
internal static var cancelSubscriptionContinueButton: String { return L10n.tr("Localizable", "cancel_subscription_continue_button") }
/// An error occurred. Please try again later.
internal static var cancelSubscriptionGenericError: String { return L10n.tr("Localizable", "cancel_subscription_generic_error") }
/// Struggling with any features or having issues.
internal static var cancelSubscriptionHelpDescription: String { return L10n.tr("Localizable", "cancel_subscription_help_description") }
/// Need help with Pocket Casts?
internal static var cancelSubscriptionHelpTitle: String { return L10n.tr("Localizable", "cancel_subscription_help_title") }
/// Find the plan that’s right for you.
internal static var cancelSubscriptionNewPlanDescription: String { return L10n.tr("Localizable", "cancel_subscription_new_plan_description") }
/// Looking for a different plan?
internal static var cancelSubscriptionNewPlanTitle: String { return L10n.tr("Localizable", "cancel_subscription_new_plan_title") }
/// Thanks for choosing Pocket Casts. Billing starts after your free month ends.
internal static var cancelSubscriptionOfferSuccessViewDescription: String { return L10n.tr("Localizable", "cancel_subscription_offer_success_view_description") }
/// Enjoy your free month!
internal static var cancelSubscriptionOfferSuccessViewTitle: String { return L10n.tr("Localizable", "cancel_subscription_offer_success_view_title") }
/// Thanks for choosing Pocket Casts. Your discounted plan starts after your current billing period.
internal static var cancelSubscriptionOfferYearlySuccessViewDescription: String { return L10n.tr("Localizable", "cancel_subscription_offer_yearly_success_view_description") }
/// 50%% off your next year!
internal static var cancelSubscriptionOfferYearlySuccessViewTitle: String { return L10n.tr("Localizable", "cancel_subscription_offer_yearly_success_view_title") }
/// Save %@ at the start of your next billing cycle.
internal static func cancelSubscriptionPromotionDescriptionMonthly(_ p1: Any) -> String {
return L10n.tr("Localizable", "cancel_subscription_promotion_description_monthly", String(describing: p1))
}
/// Pay %@ now for another year at 50%% off
internal static func cancelSubscriptionPromotionDescriptionYearly(_ p1: Any) -> String {
return L10n.tr("Localizable", "cancel_subscription_promotion_description_yearly", String(describing: p1))
}
/// Get your next month free
internal static var cancelSubscriptionPromotionTitle: String { return L10n.tr("Localizable", "cancel_subscription_promotion_title") }
/// Before you cancel,
/// check out these offers
internal static var cancelSubscriptionTitle: String { return L10n.tr("Localizable", "cancel_subscription_title") }
/// Get 50%% off your next year
internal static var cancelSubscriptionYearlyPromotionTitle: String { return L10n.tr("Localizable", "cancel_subscription_yearly_promotion_title") }
/// Canceling...
internal static var canceling: String { return L10n.tr("Localizable", "canceling") }
/// %1$@ of %2$@. %3$@
internal static func carplayChapterCount(_ p1: Any, _ p2: Any, _ p3: Any) -> String {
return L10n.tr("Localizable", "carplay_chapter_count", String(describing: p1), String(describing: p2), String(describing: p3))
}
/// More
internal static var carplayMore: String { return L10n.tr("Localizable", "carplay_more") }
/// Playback Speed
internal static var carplayPlaybackSpeed: String { return L10n.tr("Localizable", "carplay_playback_speed") }
/// Up Next Queue
internal static var carplayUpNextQueue: String { return L10n.tr("Localizable", "carplay_up_next_queue") }
/// Thanks for being with us since the beginning! If you enjoy using our app, we’d love to hear your feedback.
internal static var championDescription: String { return L10n.tr("Localizable", "champion_description") }
/// You’re a true champion of Pocket Casts!
internal static var championTitle: String { return L10n.tr("Localizable", "champion_title") }
/// Change App Icon
internal static var changeAppIcon: String { return L10n.tr("Localizable", "change_app_icon") }
/// Change the title that identifies this bookmark
internal static var changeBookmarkSubtitle: String { return L10n.tr("Localizable", "change_bookmark_subtitle") }
/// Change title
internal static var changeBookmarkTitle: String { return L10n.tr("Localizable", "change_bookmark_title") }
/// Change Email Address
internal static var changeEmail: String { return L10n.tr("Localizable", "change_email") }
/// Email Address Changed
internal static var changeEmailConf: String { return L10n.tr("Localizable", "change_email_conf") }
/// Change Password
internal static var changePassword: String { return L10n.tr("Localizable", "change_password") }
/// Password Changed
internal static var changePasswordConf: String { return L10n.tr("Localizable", "change_password_conf") }
/// Unable to change password. Invalid password.
internal static var changePasswordError: String { return L10n.tr("Localizable", "change_password_error") }
/// Passwords do not match
internal static var changePasswordErrorMismatch: String { return L10n.tr("Localizable", "change_password_error_mismatch") }
/// Must be at least 6 characters
internal static var changePasswordLengthError: String { return L10n.tr("Localizable", "change_password_length_error") }
/// Chapters
internal static var chapters: String { return L10n.tr("Localizable", "chapters") }
/// Please check your Internet connection
internal static var checkInternetConnection: String { return L10n.tr("Localizable", "check_internet_connection") }
/// %1$@ Podcasts Chosen
internal static func chosenPodcastsPluralFormat(_ p1: Any) -> String {
return L10n.tr("Localizable", "chosen_podcasts_plural_format", String(describing: p1))
}
/// 1 Podcast Chosen
internal static var chosenPodcastsSingular: String { return L10n.tr("Localizable", "chosen_podcasts_singular") }
/// Cast to
internal static var chromecastCastTo: String { return L10n.tr("Localizable", "chromecast_cast_to") }
/// Connected
internal static var chromecastConnected: String { return L10n.tr("Localizable", "chromecast_connected") }
/// Connected to device
internal static var chromecastConnectedToDevice: String { return L10n.tr("Localizable", "chromecast_connected_to_device") }
/// Unable to cast local file
internal static var chromecastError: String { return L10n.tr("Localizable", "chromecast_error") }
/// Nothing is playing
internal static var chromecastNothingPlaying: String { return L10n.tr("Localizable", "chromecast_nothing_playing") }
/// Un-named device
internal static var chromecastUnnamedDevice: String { return L10n.tr("Localizable", "chromecast_unnamed_device") }
/// Clean Up
internal static var cleanUp: String { return L10n.tr("Localizable", "clean_up") }
/// Clear
internal static var clear: String { return L10n.tr("Localizable", "clear") }
/// Clear Search
internal static var clearSearch: String { return L10n.tr("Localizable", "clear_search") }
/// Clear Up Next
internal static var clearUpNext: String { return L10n.tr("Localizable", "clear_up_next") }
/// Are you sure you want to clear your Up Next queue?
internal static var clearUpNextMessage: String { return L10n.tr("Localizable", "clear_up_next_message") }
/// Token authentication failed.
internal static var clientErrorTokenDeauth: String { return L10n.tr("Localizable", "client_error_token_deauth") }
/// Clip
internal static var clip: String { return L10n.tr("Localizable", "clip") }
/// %@ Duration
internal static func clipDurationLabel(_ p1: Any) -> String {
return L10n.tr("Localizable", "clip_duration_label", String(describing: p1))
}
/// Creating Clip...
internal static var clipLoadingLabel: String { return L10n.tr("Localizable", "clip_loading_label") }
/// %@ Start
internal static func clipStartLabel(_ p1: Any) -> String {
return L10n.tr("Localizable", "clip_start_label", String(describing: p1))
}
/// Clip end
internal static var clipsEndTimeAccessibilityLabel: String { return L10n.tr("Localizable", "clips_end_time_accessibility_label") }
/// Shareable media options
internal static var clipsShareableMediaA11yLabel: String { return L10n.tr("Localizable", "clips_shareable_media_a11y_label") }
/// %1$@ format %2$@ of %3$@
internal static func clipsShareableMediaItemA11yLabel(_ p1: Any, _ p2: Any, _ p3: Any) -> String {
return L10n.tr("Localizable", "clips_shareable_media_item_a11y_label", String(describing: p1), String(describing: p2), String(describing: p3))
}
/// Clip start
internal static var clipsStartTimeAccessibilityLabel: String { return L10n.tr("Localizable", "clips_start_time_accessibility_label") }
/// Got it
internal static var clipsWhatsNewButtonTitle: String { return L10n.tr("Localizable", "clips_whats_new_button_title") }
/// You can now share clips of your favorite bits from any episode. We’ve also made easier to share any content to all social media apps.
internal static var clipsWhatsNewMessage: String { return L10n.tr("Localizable", "clips_whats_new_message") }
/// Clip sharing available now!
internal static var clipsWhatsNewTitle: String { return L10n.tr("Localizable", "clips_whats_new_title") }
/// Close
internal static var close: String { return L10n.tr("Localizable", "close") }
/// Color
internal static var color: String { return L10n.tr("Localizable", "color") }
/// Confirm
internal static var confirm: String { return L10n.tr("Localizable", "confirm") }
/// Confirm New Password
internal static var confirmNewPasswordPrompt: String { return L10n.tr("Localizable", "confirm_new_password_prompt") }
/// Continue
internal static var `continue`: String { return L10n.tr("Localizable", "continue") }
/// Copy
internal static var copy: String { return L10n.tr("Localizable", "copy") }
/// Create Account
internal static var createAccount: String { return L10n.tr("Localizable", "create_account") }
/// Pocket Casts is having trouble connecting to the App Store. Please check your connection and try again.
internal static var createAccountAppStoreErrorMessage: String { return L10n.tr("Localizable", "create_account_app_store_error_message") }
/// Unable to contact App Store
internal static var createAccountAppStoreErrorTitle: String { return L10n.tr("Localizable", "create_account_app_store_error_title") }
/// Find out more about Pocket Casts Plus
internal static var createAccountFindOutMorePlus: String { return L10n.tr("Localizable", "create_account_find_out_more_plus") }
/// Regular
internal static var createAccountFreeAccountType: String { return L10n.tr("Localizable", "create_account_free_account_type") }
/// Almost everything
internal static var createAccountFreeDetails: String { return L10n.tr("Localizable", "create_account_free_details") }
/// Free
internal static var createAccountFreePrice: String { return L10n.tr("Localizable", "create_account_free_price") }
/// Everything unlocked
internal static var createAccountPlusDetails: String { return L10n.tr("Localizable", "create_account_plus_details") }
/// Create a .m4a audio file
internal static var createAudioClipDescription: String { return L10n.tr("Localizable", "create_audio_clip_description") }
/// Create audio file
internal static var createAudioClipTitle: String { return L10n.tr("Localizable", "create_audio_clip_title") }
/// Create clip
internal static var createClip: String { return L10n.tr("Localizable", "create_clip") }
/// Create Filter
internal static var createFilter: String { return L10n.tr("Localizable", "create_filter") }
/// Current Email
internal static var currentEmailPrompt: String { return L10n.tr("Localizable", "current_email_prompt") }
/// Current Password
internal static var currentPasswordPrompt: String { return L10n.tr("Localizable", "current_password_prompt") }
/// Custom Episode
internal static var customEpisode: String { return L10n.tr("Localizable", "custom_episode") }
/// Cancel Upload
internal static var customEpisodeCancelUpload: String { return L10n.tr("Localizable", "custom_episode_cancel_upload") }
/// Remove from Cloud
internal static var customEpisodeRemoveUpload: String { return L10n.tr("Localizable", "custom_episode_remove_upload") }
/// Upload to Cloud
internal static var customEpisodeUpload: String { return L10n.tr("Localizable", "custom_episode_upload") }
/// We're moving a few bits and bytes so the app runs faster...
internal static var databaseMigration: String { return L10n.tr("Localizable", "database_migration") }
/// day
internal static var day: String { return L10n.tr("Localizable", "day") }
/// Day listened
internal static var dayListened: String { return L10n.tr("Localizable", "day_listened") }
/// Day saved
internal static var daySaved: String { return L10n.tr("Localizable", "day_saved") }
/// Days listened
internal static var daysListened: String { return L10n.tr("Localizable", "days_listened") }
/// Days saved
internal static var daysSaved: String { return L10n.tr("Localizable", "days_saved") }
/// Delete
internal static var delete: String { return L10n.tr("Localizable", "delete") }
/// Delete Download
internal static var deleteDownload: String { return L10n.tr("Localizable", "delete_download") }
/// Delete From Everywhere
internal static var deleteEverywhere: String { return L10n.tr("Localizable", "delete_everywhere") }
/// Delete Everywhere
internal static var deleteEverywhereShort: String { return L10n.tr("Localizable", "delete_everywhere_short") }
/// Delete File
internal static var deleteFile: String { return L10n.tr("Localizable", "delete_file") }
/// Are you sure you want to delete this file?
internal static var deleteFileMessage: String { return L10n.tr("Localizable", "delete_file_message") }
/// Delete From Cloud
internal static var deleteFromCloud: String { return L10n.tr("Localizable", "delete_from_cloud") }
/// Delete From Device
internal static var deleteFromDevice: String { return L10n.tr("Localizable", "delete_from_device") }
/// Delete From Device Only
internal static var deleteFromDeviceOnly: String { return L10n.tr("Localizable", "delete_from_device_only") }
/// Deselect All
internal static var deselectAll: String { return L10n.tr("Localizable", "deselect_all") }
/// Sleep timer restarted due to device shake
internal static var deviceShakeSleepTimer: String { return L10n.tr("Localizable", "device_shake_sleep_timer") }
/// Discover
internal static var discover: String { return L10n.tr("Localizable", "discover") }
/// All Episodes
internal static var discoverAllEpisodes: String { return L10n.tr("Localizable", "discover_all_episodes") }
/// All Podcasts
internal static var discoverAllPodcasts: String { return L10n.tr("Localizable", "discover_all_podcasts") }
/// Browse By Category
internal static var discoverBrowseByCategory: String { return L10n.tr("Localizable", "discover_browse_by_category") }
/// Arts
internal static var discoverBrowseByCategoryArt: String { return L10n.tr("Localizable", "discover_browse_by_category_art") }
/// Business
internal static var discoverBrowseByCategoryBusiness: String { return L10n.tr("Localizable", "discover_browse_by_category_business") }
/// Comedy
internal static var discoverBrowseByCategoryComedy: String { return L10n.tr("Localizable", "discover_browse_by_category_comedy") }
/// Education
internal static var discoverBrowseByCategoryEducation: String { return L10n.tr("Localizable", "discover_browse_by_category_education") }
/// Family
internal static var discoverBrowseByCategoryFamily: String { return L10n.tr("Localizable", "discover_browse_by_category_family") }
/// Fiction
internal static var discoverBrowseByCategoryFiction: String { return L10n.tr("Localizable", "discover_browse_by_category_fiction") }
/// Games & Hobbies
internal static var discoverBrowseByCategoryGamesAndHobbies: String { return L10n.tr("Localizable", "discover_browse_by_category_games_and_hobbies") }
/// Government
internal static var discoverBrowseByCategoryGovernment: String { return L10n.tr("Localizable", "discover_browse_by_category_government") }
/// Government & Organizations
internal static var discoverBrowseByCategoryGovernmentAndOrganizations: String { return L10n.tr("Localizable", "discover_browse_by_category_government_and_organizations") }
/// Health
internal static var discoverBrowseByCategoryHealth: String { return L10n.tr("Localizable", "discover_browse_by_category_health") }
/// Health & Fitness
internal static var discoverBrowseByCategoryHealthAndFitness: String { return L10n.tr("Localizable", "discover_browse_by_category_health_and_fitness") }
/// History
internal static var discoverBrowseByCategoryHistory: String { return L10n.tr("Localizable", "discover_browse_by_category_history") }
/// Kids & Family
internal static var discoverBrowseByCategoryKidsAndFamily: String { return L10n.tr("Localizable", "discover_browse_by_category_kids_and_family") }
/// Leisure
internal static var discoverBrowseByCategoryLeisure: String { return L10n.tr("Localizable", "discover_browse_by_category_leisure") }
/// Music
internal static var discoverBrowseByCategoryMusic: String { return L10n.tr("Localizable", "discover_browse_by_category_music") }
/// News
internal static var discoverBrowseByCategoryNews: String { return L10n.tr("Localizable", "discover_browse_by_category_news") }
/// News & Politics
internal static var discoverBrowseByCategoryNewsAndPolitics: String { return L10n.tr("Localizable", "discover_browse_by_category_news_and_politics") }
/// Religion & Spirituality
internal static var discoverBrowseByCategoryReligionAndSpirituality: String { return L10n.tr("Localizable", "discover_browse_by_category_religion_and_spirituality") }
/// Science
internal static var discoverBrowseByCategoryScience: String { return L10n.tr("Localizable", "discover_browse_by_category_science") }
/// Science & Medicine
internal static var discoverBrowseByCategoryScienceAndMedicine: String { return L10n.tr("Localizable", "discover_browse_by_category_science_and_medicine") }
/// Society
internal static var discoverBrowseByCategorySociety: String { return L10n.tr("Localizable", "discover_browse_by_category_society") }
/// Culture
internal static var discoverBrowseByCategorySocietyAndCulture: String { return L10n.tr("Localizable", "discover_browse_by_category_society_and_culture") }
/// Spirituality
internal static var discoverBrowseByCategorySpirituality: String { return L10n.tr("Localizable", "discover_browse_by_category_spirituality") }
/// Sports
internal static var discoverBrowseByCategorySports: String { return L10n.tr("Localizable", "discover_browse_by_category_sports") }
/// Sports & Recreation
internal static var discoverBrowseByCategorySportsAndRecreation: String { return L10n.tr("Localizable", "discover_browse_by_category_sports_and_recreation") }
/// Technology
internal static var discoverBrowseByCategoryTechnology: String { return L10n.tr("Localizable", "discover_browse_by_category_technology") }
/// True Crime
internal static var discoverBrowseByCategoryTrueCrime: String { return L10n.tr("Localizable", "discover_browse_by_category_true_crime") }
/// TV & Film
internal static var discoverBrowseByCategoryTvAndFilm: String { return L10n.tr("Localizable", "discover_browse_by_category_tv_and_film") }
/// Change Region, currently %1$@
internal static func discoverChangeRegion(_ p1: Any) -> String {
return L10n.tr("Localizable", "discover_change_region", String(describing: p1))
}
/// The episode couldn't be loaded
internal static var discoverEpisodeFailToLoad: String { return L10n.tr("Localizable", "discover_episode_fail_to_load") }
/// Featured
internal static var discoverFeatured: String { return L10n.tr("Localizable", "discover_featured") }
/// FEATURED EPISODE
internal static var discoverFeaturedEpisode: String { return L10n.tr("Localizable", "discover_featured_episode") }
/// Featured podcast or episode not found. Make sure you are connected to the internet and try again.
internal static var discoverFeaturedEpisodeErrorNotFound: String { return L10n.tr("Localizable", "discover_featured_episode_error_not_found") }
/// FRESH PICK
internal static var discoverFreshPick: String { return L10n.tr("Localizable", "discover_fresh_pick") }
/// No episodes found
internal static var discoverNoEpisodesFound: String { return L10n.tr("Localizable", "discover_no_episodes_found") }
/// No podcasts found
internal static var discoverNoPodcastsFound: String { return L10n.tr("Localizable", "discover_no_podcasts_found") }
/// Try more general or different keywords.
internal static var discoverNoPodcastsFoundMsg: String { return L10n.tr("Localizable", "discover_no_podcasts_found_msg") }
/// Play Episode
internal static var discoverPlayEpisode: String { return L10n.tr("Localizable", "discover_play_episode") }
/// Play Trailer
internal static var discoverPlayTrailer: String { return L10n.tr("Localizable", "discover_play_trailer") }
/// %1$@ Network
internal static func discoverPodcastNetwork(_ p1: Any) -> String {
return L10n.tr("Localizable", "discover_podcast_network", String(describing: p1))
}
/// Popular
internal static var discoverPopular: String { return L10n.tr("Localizable", "discover_popular") }
/// Popular in %1$@
internal static func discoverPopularIn(_ p1: Any) -> String {
return L10n.tr("Localizable", "discover_popular_in", String(describing: p1))
}
/// Australia
internal static var discoverRegionAustralia: String { return L10n.tr("Localizable", "discover_region_australia") }
/// Austria
internal static var discoverRegionAustria: String { return L10n.tr("Localizable", "discover_region_austria") }
/// Belgium
internal static var discoverRegionBelgium: String { return L10n.tr("Localizable", "discover_region_belgium") }
/// Brazil
internal static var discoverRegionBrazil: String { return L10n.tr("Localizable", "discover_region_brazil") }
/// Canada
internal static var discoverRegionCanada: String { return L10n.tr("Localizable", "discover_region_canada") }
/// China
internal static var discoverRegionChina: String { return L10n.tr("Localizable", "discover_region_china") }
/// Czechia
internal static var discoverRegionCzechia: String { return L10n.tr("Localizable", "discover_region_czechia") }
/// Denmark
internal static var discoverRegionDenmark: String { return L10n.tr("Localizable", "discover_region_denmark") }
/// Finland
internal static var discoverRegionFinland: String { return L10n.tr("Localizable", "discover_region_finland") }
/// France
internal static var discoverRegionFrance: String { return L10n.tr("Localizable", "discover_region_france") }
/// Germany
internal static var discoverRegionGermany: String { return L10n.tr("Localizable", "discover_region_germany") }
/// Hong Kong
internal static var discoverRegionHongKong: String { return L10n.tr("Localizable", "discover_region_hong_kong") }
/// India
internal static var discoverRegionIndia: String { return L10n.tr("Localizable", "discover_region_india") }
/// Ireland
internal static var discoverRegionIreland: String { return L10n.tr("Localizable", "discover_region_ireland") }
/// Israel
internal static var discoverRegionIsrael: String { return L10n.tr("Localizable", "discover_region_israel") }
/// Italy
internal static var discoverRegionItaly: String { return L10n.tr("Localizable", "discover_region_italy") }
/// Japan
internal static var discoverRegionJapan: String { return L10n.tr("Localizable", "discover_region_japan") }
/// Mexico
internal static var discoverRegionMexico: String { return L10n.tr("Localizable", "discover_region_mexico") }
/// Netherlands
internal static var discoverRegionNetherlands: String { return L10n.tr("Localizable", "discover_region_netherlands") }
/// New Zealand
internal static var discoverRegionNewZealand: String { return L10n.tr("Localizable", "discover_region_new_zealand") }
/// Norway
internal static var discoverRegionNorway: String { return L10n.tr("Localizable", "discover_region_norway") }
/// Philippines
internal static var discoverRegionPhilippines: String { return L10n.tr("Localizable", "discover_region_philippines") }
/// Poland
internal static var discoverRegionPoland: String { return L10n.tr("Localizable", "discover_region_poland") }
/// Portugal
internal static var discoverRegionPortugal: String { return L10n.tr("Localizable", "discover_region_portugal") }
/// Russia
internal static var discoverRegionRussia: String { return L10n.tr("Localizable", "discover_region_russia") }
/// Saudi Arabia
internal static var discoverRegionSaudiArabia: String { return L10n.tr("Localizable", "discover_region_saudi_arabia") }
/// Singapore
internal static var discoverRegionSingapore: String { return L10n.tr("Localizable", "discover_region_singapore") }
/// South Africa
internal static var discoverRegionSouthAfrica: String { return L10n.tr("Localizable", "discover_region_south_africa") }
/// South Korea
internal static var discoverRegionSouthKorea: String { return L10n.tr("Localizable", "discover_region_south_korea") }
/// Spain
internal static var discoverRegionSpain: String { return L10n.tr("Localizable", "discover_region_spain") }
/// Sweden
internal static var discoverRegionSweden: String { return L10n.tr("Localizable", "discover_region_sweden") }
/// Switzerland
internal static var discoverRegionSwitzerland: String { return L10n.tr("Localizable", "discover_region_switzerland") }
/// Taiwan
internal static var discoverRegionTaiwan: String { return L10n.tr("Localizable", "discover_region_taiwan") }
/// Turkey
internal static var discoverRegionTurkey: String { return L10n.tr("Localizable", "discover_region_turkey") }
/// Ukraine
internal static var discoverRegionUkraine: String { return L10n.tr("Localizable", "discover_region_ukraine") }
/// United Kingdom
internal static var discoverRegionUnitedKingdom: String { return L10n.tr("Localizable", "discover_region_united_kingdom") }
/// United States
internal static var discoverRegionUnitedStates: String { return L10n.tr("Localizable", "discover_region_united_states") }
/// Worldwide
internal static var discoverRegionWorldwide: String { return L10n.tr("Localizable", "discover_region_worldwide") }
/// Please enter at least 2 characters.
internal static var discoverSearchErrorMsg: String { return L10n.tr("Localizable", "discover_search_error_msg") }
/// Length Challenged
internal static var discoverSearchErrorTitle: String { return L10n.tr("Localizable", "discover_search_error_title") }
/// Search Failed
internal static var discoverSearchFailed: String { return L10n.tr("Localizable", "discover_search_failed") }
/// Check your Internet connection.
internal static var discoverSearchFailedMsg: String { return L10n.tr("Localizable", "discover_search_failed_msg") }
/// Select Content Region
internal static var discoverSelectRegion: String { return L10n.tr("Localizable", "discover_select_region") }
/// SHOW ALL
internal static var discoverShowAll: String { return L10n.tr("Localizable", "discover_show_all") }
/// SPONSORED
internal static var discoverSponsored: String { return L10n.tr("Localizable", "discover_sponsored") }
/// Trending
internal static var discoverTrending: String { return L10n.tr("Localizable", "discover_trending") }
/// Unable to load Discover
internal static var discoverUnableToLoad: String { return L10n.tr("Localizable", "discover_unable_to_load") }
/// Done
internal static var done: String { return L10n.tr("Localizable", "done") }
/// Download
internal static var download: String { return L10n.tr("Localizable", "download") }
/// Download All
internal static var downloadAll: String { return L10n.tr("Localizable", "download_all") }
/// Downloading will use data.
internal static var downloadDataWarning: String { return L10n.tr("Localizable", "download_data_warning") }
/// Download %1$@ Episodes
internal static func downloadEpisodePluralFormat(_ p1: Any) -> String {
return L10n.tr("Localizable", "download_episode_plural_format", String(describing: p1))
}
/// Download 1 Episode
internal static var downloadEpisodeSingular: String { return L10n.tr("Localizable", "download_episode_singular") }
/// Episode not available due to an error in the podcast feed. Contact the podcast author.
internal static var downloadErrorContactAuthor: String { return L10n.tr("Localizable", "download_error_contact_author") }
/// This episode may have been moved or deleted. Contact the podcast author.
internal static var downloadErrorContactAuthorVersion2: String { return L10n.tr("Localizable", "download_error_contact_author_version_2") }
/// Unable to save episode, have you run out of space?
internal static var downloadErrorNotEnoughSpace: String { return L10n.tr("Localizable", "download_error_not_enough_space") }
/// File not uploaded, unable to play
internal static var downloadErrorNotUploaded: String { return L10n.tr("Localizable", "download_error_not_uploaded") }
/// Download failed, error code %1$@. Contact the podcast author.
internal static func downloadErrorStatusCode(_ p1: Any) -> String {
return L10n.tr("Localizable", "download_error_status_code", String(describing: p1))
}
/// Unable to download episode. Please try again later.
internal static var downloadErrorTryAgain: String { return L10n.tr("Localizable", "download_error_try_again") }
/// Download Failed
internal static var downloadFailed: String { return L10n.tr("Localizable", "download_failed") }
/// Downloaded Files
internal static var downloadedFiles: String { return L10n.tr("Localizable", "downloaded_files") }
/// Are you sure you want to delete these downloaded files?
internal static var downloadedFilesCleanupConfirmation: String { return L10n.tr("Localizable", "downloaded_files_cleanup_confirmation") }
/// Unsubscribing will delete all downloaded files in this Podcast, are you sure?
internal static var downloadedFilesConfMessage: String { return L10n.tr("Localizable", "downloaded_files_conf_message") }
/// Unfollowing will delete all downloaded files in this Podcast, are you sure?
internal static var downloadedFilesConfMessageNew: String { return L10n.tr("Localizable", "downloaded_files_conf_message_new") }
/// %1$@ Downloaded Files
internal static func downloadedFilesConfPluralFormat(_ p1: Any) -> String {
return L10n.tr("Localizable", "downloaded_files_conf_plural_format", String(describing: p1))
}
/// 1 Downloaded File
internal static var downloadedFilesConfSingular: String { return L10n.tr("Localizable", "downloaded_files_conf_singular") }
/// Downloads
internal static var downloads: String { return L10n.tr("Localizable", "downloads") }
/// Auto Download Settings
internal static var downloadsAutoDownload: String { return L10n.tr("Localizable", "downloads_auto_download") }
/// Oh no! You’re fresh out of downloads. Download some more and they’ll show up here.
internal static var downloadsNoDownloadsDesc: String { return L10n.tr("Localizable", "downloads_no_downloads_desc") }
/// No Downloaded Episodes
internal static var downloadsNoDownloadsTitle: String { return L10n.tr("Localizable", "downloads_no_downloads_title") }
/// Retry Failed Downloads
internal static var downloadsRetryFailedDownloads: String { return L10n.tr("Localizable", "downloads_retry_failed_downloads") }
/// Stop All Downloads
internal static var downloadsStopAllDownloads: String { return L10n.tr("Localizable", "downloads_stop_all_downloads") }
/// Edit
internal static var edit: String { return L10n.tr("Localizable", "edit") }
/// Edit clip
internal static var editClip: String { return L10n.tr("Localizable", "edit_clip") }
/// Enable it now
internal static var enableItNow: String { return L10n.tr("Localizable", "enable_it_now") }
/// Don’t forget to share with friends and give a shout out to your favourite podcasts and creators.
internal static var eoy2024EpilogueDescription: String { return L10n.tr("Localizable", "eoy_2024_epilogue_description") }
/// Thank you for listening with us this year.
/// See you in 2025!
internal static var eoy2024EpilogueTitle: String { return L10n.tr("Localizable", "eoy_2024_epilogue_title") }
/// See your listening stats, top podcasts, and more.
internal static var eoyCardDescription: String { return L10n.tr("Localizable", "eoy_card_description") }
/// Save your podcasts in the cloud, get your end of year review and sync your progress with other devices.
internal static var eoyCreateAccountToSee: String { return L10n.tr("Localizable", "eoy_create_account_to_see") }
/// See your top podcasts, categories, listening stats, and more. Share with friends and shout out your favorite creators!
internal static var eoyDescription: String { return L10n.tr("Localizable", "eoy_description") }
/// Not Now
internal static var eoyNotNow: String { return L10n.tr("Localizable", "eoy_not_now") }
/// Share this story
internal static var eoyShare: String { return L10n.tr("Localizable", "eoy_share") }
/// Paste this image to your socials and give a shout out to your favorite shows and creators
internal static var eoyShareThisStoryMessage: String { return L10n.tr("Localizable", "eoy_share_this_story_message") }
/// Share this story?
internal static var eoyShareThisStoryTitle: String { return L10n.tr("Localizable", "eoy_share_this_story_title") }
/// Year in Podcasts
internal static var eoySmallTitle: String { return L10n.tr("Localizable", "eoy_small_title") }
/// Start your Free Trial
internal static var eoyStartYourFreeTrial: String { return L10n.tr("Localizable", "eoy_start_your_free_trial") }
/// Failed to load stories.
internal static var eoyStoriesFailed: String { return L10n.tr("Localizable", "eoy_stories_failed") }
/// Don't forget to share with your friends and give a shout out to your favorite podcast creators
internal static var eoyStoryEpilogueSubtitle: String { return L10n.tr("Localizable", "eoy_story_epilogue_subtitle") }
/// Thank you for listening with us this year.
/// See you in 2024!
internal static var eoyStoryEpilogueTitle: String { return L10n.tr("Localizable", "eoy_story_epilogue_title") }
/// Let's celebrate your year of listening...
internal static var eoyStoryIntroTitle: String { return L10n.tr("Localizable", "eoy_story_intro_title") }
/// In 2022, you spent %1$@ listening to podcasts
internal static func eoyStoryListenedTo(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_listened_to", String(describing: p1))
}
/// You listened to %1$@ different categories this year
internal static func eoyStoryListenedToCategories(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_listened_to_categories", String(describing: p1))
}
/// You listened to %1$@ this year
internal static func eoyStoryListenedToCategoriesHighlighted(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_listened_to_categories_highlighted", String(describing: p1))
}
/// I listened to %1$@ different categories in 2023
internal static func eoyStoryListenedToCategoriesShareText(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_listened_to_categories_share_text", String(describing: p1))
}
/// Let's take a look at some of your favorites...
internal static var eoyStoryListenedToCategoriesSubtitle: String { return L10n.tr("Localizable", "eoy_story_listened_to_categories_subtitle") }
/// %1$@ different categories
internal static func eoyStoryListenedToCategoriesText(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_listened_to_categories_text", String(describing: p1))
}
/// %1$@ episodes
internal static func eoyStoryListenedToEpisodesText(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_listened_to_episodes_text", String(describing: p1))
}
/// You listened to %1$@ different shows and %2$@ episodes in total
internal static func eoyStoryListenedToNumbers(_ p1: Any, _ p2: Any) -> String {
return L10n.tr("Localizable", "eoy_story_listened_to_numbers", String(describing: p1), String(describing: p2))
}
/// I listened to %1$@ different podcasts and %2$@ episodes this year
internal static func eoyStoryListenedToNumbersShareText(_ p1: Any, _ p2: Any) -> String {
return L10n.tr("Localizable", "eoy_story_listened_to_numbers_share_text", String(describing: p1), String(describing: p2))
}
/// But there was one you kept coming to...
internal static var eoyStoryListenedToNumbersSubtitle: String { return L10n.tr("Localizable", "eoy_story_listened_to_numbers_subtitle") }
/// You listened to %1$@ and %2$@
internal static func eoyStoryListenedToNumbersUpdated(_ p1: Any, _ p2: Any) -> String {
return L10n.tr("Localizable", "eoy_story_listened_to_numbers_updated", String(describing: p1), String(describing: p2))
}
/// %1$@ different podcasts
internal static func eoyStoryListenedToPodcastText(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_listened_to_podcast_text", String(describing: p1))
}
/// I spent %1$@ listening to podcasts this year
internal static func eoyStoryListenedToShareText(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_listened_to_share_text", String(describing: p1))
}
/// We hope you loved every minute of it!
internal static var eoyStoryListenedToSubtitle: String { return L10n.tr("Localizable", "eoy_story_listened_to_subtitle") }
/// This was your total time listening to podcasts
internal static var eoyStoryListenedToTitle: String { return L10n.tr("Localizable", "eoy_story_listened_to_title") }
/// This year, you spent %1$@ listening to podcasts
internal static func eoyStoryListenedToUpdated(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_listened_to_updated", String(describing: p1))
}
/// The longest episode you listened to was %1$@
internal static func eoyStoryLongestEpisode(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_longest_episode", String(describing: p1))
}
/// This episode was %1$@ long
internal static func eoyStoryLongestEpisodeDuration(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_longest_episode_duration", String(describing: p1))
}
/// The longest episode I listened to this year %1$@
internal static func eoyStoryLongestEpisodeShareText(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_longest_episode_share_text", String(describing: p1))
}
/// It was none other than “%1$@” from “%2$@”
internal static func eoyStoryLongestEpisodeSubtitle(_ p1: Any, _ p2: Any) -> String {
return L10n.tr("Localizable", "eoy_story_longest_episode_subtitle", String(describing: p1), String(describing: p2))
}
/// The longest episode
/// you listened to was
/// %1$@
internal static func eoyStoryLongestEpisodeTime(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_longest_episode_time", String(describing: p1))
}
/// Play again
internal static var eoyStoryReplay: String { return L10n.tr("Localizable", "eoy_story_replay") }
/// Your Top Categories
internal static var eoyStoryTopCategories: String { return L10n.tr("Localizable", "eoy_story_top_categories") }
/// My most listened to podcast categories
internal static var eoyStoryTopCategoriesShareText: String { return L10n.tr("Localizable", "eoy_story_top_categories_share_text") }
/// You listened to %1$@ episodes for a total of %2$@
internal static func eoyStoryTopCategoriesSubtitle(_ p1: Any, _ p2: Any) -> String {
return L10n.tr("Localizable", "eoy_story_top_categories_subtitle", String(describing: p1), String(describing: p2))
}
/// Did you know that %1$@ was your favorite category?
internal static func eoyStoryTopCategoriesTitle(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_top_categories_title", String(describing: p1))
}
/// %1$@ was your most listened show in 2023
internal static func eoyStoryTopPodcast(_ p1: Any) -> String {
return L10n.tr("Localizable", "eoy_story_top_podcast", String(describing: p1))
}
/// My favorite podcast this year! %1$@