-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.pot
16937 lines (13777 loc) · 496 KB
/
server.pot
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
msgid ""
msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: Course Answers
msgid "1"
msgstr ""
#: Course Answers
msgid "2"
msgstr ""
#: Course Answers
msgid "3"
msgstr ""
#: Course Answers
msgid "4"
msgstr ""
#: Course Answers
msgid "5"
msgstr ""
#: Course Answers
msgid "6"
msgstr ""
#: Course Answers
msgid "7"
msgstr ""
#: Course Answers
msgid "10"
msgstr ""
#: /app/apps/main/views/emails/global_booking/post_booking_review.html
msgid "- inCruises makes it possible to go on better trips and go more often."
msgstr ""
#: /app/apps/main/views/emails/global_booking/post_booking_review.html
msgid "- inCruises now offers over 190,000 cruise, hotel, and resort options."
msgstr ""
#: /app/apps/main/views/emails/global_booking/post_booking_review.html
msgid ""
"- inCruises referral Partner program makes income and travel incentives "
"possible."
msgstr ""
#: /app/apps/main/views/emails/upgrade_cta/upgrade_cta.html
msgid ""
"—with your on-time $250 monthly Premium payment. Use these points to reduce "
"the price of cruises by up to 50%. No cruise experience is out of reach for "
"Premium Members!"
msgstr ""
#: /app/apps/main/views/emails/upgrade_cta/upgrade_cta.html
msgid ": Travel as much as you like and save on every booking!"
msgstr ""
#: /app/apps/main/controllers/booking_review.js
msgid ""
"\"d. INCRUISES Members must be active paying Members through the entire "
"booking and embarkation process. Once a booking is confirmed, the Member "
"must remain as an active paying Member at least through the embarkation "
"process of the cruise for which Reward Points were used to book the cruise. "
"If a Member fails to make Monthly Membership payments after booking the "
"cruise and before embarkation, and consequently their account goes into an "
"Inactive status, INCRUISES has the right to cancel the cruise, and "
"reimburse/refund all Reward Points and payments made for the booking.\""
msgstr ""
#: /app/apps/main/views/emails/admin/expired_booking.html
msgid ""
"\"g. inGroup International Members must be active paying Members through "
"the entire booking and embarkation process. Once a booking is confirmed, "
"the Member must remain as an active paying Member at least through the "
"embarkation process of the cruise for which Reward Points were used to book "
"the cruise. If a Member fails to make Monthly Membership payments after "
"booking the cruise and before embarkation, and consequently their account "
"goes into an Inactive status, inGroup International has the right to cancel "
"the cruise, and reimburse/refund all Reward Points and payments made for "
"the booking, less any cancellation fees charged by the cruise line.\""
msgstr ""
#: /app/apps/main/views/emails/invoices/membership_free.html
msgid "\"Would you like us to pay your monthly invoice on your behalf?\""
msgstr ""
#: /app/apps/main/views/emails/contacts/reminders/upgrade_reminder_2.html
msgid ""
"“An innovation that creates a new market and value network and eventually "
"disrupts an existing market and value network, displacing established "
"market leaders and alliances. The term was defined and phenomenon analyzed "
"by Clayton M. Christensen beginning in 1995.\""
msgstr ""
#: /app/apps/main/views/emails/upgrade/three_hours.html
msgid "(Click the image to download it)"
msgstr ""
#: /app/apps/main/views/emails/upgrade/cruising.html
#: /app/apps/main/views/emails/upgrade/cruising_partner.html
#: /app/apps/main/views/emails/upgrade/partner.html
msgid ""
"[ Alaska Residents: 5 days ] [ Kentucky Residents: 3 days ] [ Missouri "
"Residents: 3 days ] [ Nevada Residents: 3 days ] [ Virginia Residents: 7 "
"days ] [ Washington Residents: 7 days ] [ Wisconsin Residents: 15 days ] "
"[Japan Residents: 20 days]"
msgstr ""
#: /app/apps/main/views/emails/support/reply.html
msgid "* Do not reply to this email. Please click the link for continued support."
msgstr ""
#: /app/apps/main/views/emails/leadership_review_protocol/warning_leadership_bonus_lost.html
#: /app/apps/main/views/emails/negative_balances/negative_balances_hold.html
#: /app/apps/main/views/emails/payments_review/pm_referer_md.html
#: /app/apps/main/views/emails/payments_review/referer.html
#: /app/apps/main/views/emails/payments_review/remainder1.html
#: /app/apps/main/views/emails/payments_review/remainder2.html
#: /app/apps/main/views/emails/refund_protocol/warning_refund_done.html
#: /app/apps/main/views/emails/refund_protocol/warning_refund_its_rejected.html
#: /app/apps/main/views/emails/refund_protocol/warning_upline_md_smd.html
#: /app/apps/main/views/emails/refund_protocol/warning_user_its_keep.html
#: /app/apps/main/views/emails/refund_protocol/warning_user_to_refund.html
msgid ""
"*** PLEASE DO NOT REPLY DIRECTLY TO THIS EMAIL. THIS IS AN AUTOMATED "
"MESSAGE AND YOUR RESPONSE WOULD NOT BE RECEIVED. ***"
msgstr ""
#: /app/apps/main/views/emails/leadership_review_protocol/warning_leadership_bonus_lost.html
#: /app/apps/main/views/emails/payments_review/pm_referer_md.html
#: /app/apps/main/views/emails/payments_review/referer.html
#: /app/apps/main/views/emails/payments_review/remainder1.html
#: /app/apps/main/views/emails/payments_review/remainder2.html
#: /app/apps/main/views/emails/refund_protocol/warning_refund_done.html
#: /app/apps/main/views/emails/refund_protocol/warning_refund_its_rejected.html
#: /app/apps/main/views/emails/refund_protocol/warning_upline_md_smd.html
#: /app/apps/main/views/emails/refund_protocol/warning_user_its_keep.html
#: /app/apps/main/views/emails/refund_protocol/warning_user_to_refund.html
msgid "************************ CONFIDENTIALITY CLAUSE ************************"
msgstr ""
#: /app/apps/main/views/emails/elevate/payment.html
#: /app/apps/main/views/emails/elevate/payment_reminder.html
#: /app/apps/main/views/emails/elevate/register.html
msgid "# of Passengers: %s"
msgstr ""
#: /app/apps/main/views/certificates/style2.html
msgid "%s"
msgstr ""
#: /app/apps/main/views/emails/subscriptions/deleted.html
msgid "%s has requested to delete their %s subscription."
msgstr ""
#: /app/apps/main/views/emails/invoices/successful.html
#: /app/apps/main/views/emails/invoices/successful_prepayment.html
msgid "%s Invoice"
msgstr ""
#: /app/apps/main/views/emails/bonus/producer_bonus.html
msgid "%s Reward Points"
msgstr ""
#: /app/apps/main/views/emails/recurring/subscription_notice.html
#: /app/apps/main/views/emails/recurring/tmt_check.html
#: /app/apps/main/views/emails/territory_directors_report/index.html
#: /app/apps/main/views/emails/upgrade/first_new_member.html
#: /app/apps/main/views/emails/upgrade/new_membership_announcement.html
msgid "%s,"
msgstr ""
#: /app/apps/main/views/emails/contacts/invitation_personal_opinion.html
msgid "%s, I could really use your help."
msgstr ""
#: /app/apps/main/views/emails/settings/password_change.html
msgid ""
"<a href=\"https://incruises.com/support\">https://incruises.com/support</a> "
"or email us at <a "
"href=\"mailto:[email protected]\">[email protected]</a>"
msgstr ""
#: /app/apps/main/views/emails/upgrade/new_membership_announcement.html
msgid ""
"<b><u>Since you recently activated your inCruises Membership, agreeing to "
"the current terms, we wanted to take this opportunity to advise you that "
"those terms are changing.</u></b>"
msgstr ""
#: /app/apps/main/views/emails/upgrade/fast_start_reminder.html
msgid ""
"<b>Plus, when you achieve the Fast Start Bonus and then maintain the MD "
"rank through the next calendar month, your upline sponsor earns a matching "
"one-time $500.00 bonus.</b>"
msgstr ""
#: /app/apps/main/views/emails/invoices/senior_team_leader.html
msgid ""
"<span style=\"color: #0074ba; font-size: 20px;\">How about more "
"</span><span style=\"color:#f19332; font-size: 20px;\">IN</span><span "
"style=\"color: #0074ba; font-size: 20px;\">centives and </span><span "
"style=\"color: #f19332; font-size: 20px;\">IN</span><span style=\"color: "
"#0074ba; font-size: 20px;\">come?</span>"
msgstr ""
#: /app/apps/main/views/emails/invoices/senior_team_leader.html
msgid ""
"<span style=\"color: #0074ba; font-size: 26px;\">Membership Free "
"</span><span style=\"font-size: 26px; color: #f19332;\">Is Just The "
"Beginning</span><span style=\"font-size: 26px; color: #0074ba;\">!</span>"
msgstr ""
#: /app/apps/main/views/emails/recurring/recurring_setup.html
msgid ""
"<span style=\"color: #1272b9;\"><strong>STEP 3</strong></span> - Complete "
"your recurring profile information. <em>(You can also set a preferred "
"currency for your monthly membership payment.)</em>"
msgstr ""
#: /app/apps/main/views/emails/invoices/senior_team_leader.html
msgid ""
"<span>In your first 30 days as an inCruises Partner you earned the "
"Membership Free </span><span style=\"color: "
"#f19332;\">IN</span><span>centive and helped a direct Partner do the same! "
"This makes you a Senior Team Leader!</span>"
msgstr ""
#: /app/apps/main/views/emails/user/new_upline_direct.html
msgid ""
"<strong> Follow up with them as soon as possible!</strong> - Welcome them "
"to inCruises™"
msgstr ""
#: /app/apps/main/views/emails/user/new_upline_direct.html
msgid ""
"<strong> Help them upgrade</strong> - Make sure they understand the many "
"benefits of upgrading to Partner, Member or our most popular option, "
"Partner Member."
msgstr ""
#: /app/apps/main/views/emails/user/deleted.html
msgid "<strong>%s %s</strong> has just requested to delete their account."
msgstr ""
#: /app/apps/main/views/emails/contacts/professional_member.html
msgid "<strong>%s</strong> asked us to send you this invitation."
msgstr ""
#: /app/apps/main/views/emails/contacts/professional.html
msgid ""
"<strong>%s</strong> asked us to send you this personalized, interactive "
"presentation so you can get all the details."
msgstr ""
#: /app/apps/main/views/emails/contacts/professional_partner.html
msgid ""
"<strong>%s</strong> asked us to send you this private invitation for you to "
"check out our business opportunity."
msgstr ""
#: /app/apps/main/views/emails/contacts/professional_no_ditto.html
msgid "<strong>%s</strong> asked us to send you this private invitation."
msgstr ""
#: /app/apps/main/views/emails/upgrade/one_hour_entire_upline_member.html
msgid ""
"<strong>%s</strong>, just enrolled as a Member. Below you’ll find their "
"contact information and the sponsoring line."
msgstr ""
#: /app/apps/main/views/emails/upgrade/one_hour_entire_upline.html
msgid ""
"<strong>%s</strong>, just enrolled as a Partner. Below you’ll find their "
"contact information and the sponsoring line. You should welcome them and "
"assist them in getting started."
msgstr ""
#: /app/apps/main/views/emails/recurring/recurring_setup.html
msgid ""
"<strong><span style=\"color: #1272b9;\">STEP 1</span> - </strong>Login to "
"your back office "
msgstr ""
#: /app/apps/main/views/emails/recurring/recurring_setup.html
msgid ""
"<strong><span style=\"color: #1272b9;\">STEP 2</span></strong> - From your "
"welcome screen, go to <strong><span style=\"color: "
"#1272b9;\">Payments</span> <span style=\"color: #f3941f;\">></span> "
"<span style=\"color: #1272b9;\">Invoices</span></strong>, from the main "
"menu on the left-hand side."
msgstr ""
#: /app/apps/main/views/emails/bonus/weekly_bonus_3.html
msgid "<strong>Compensation amount:</strong> $%s"
msgstr ""
#: /app/apps/main/views/emails/bonus/weekly_bonus_3.html
msgid "<strong>Compensation type:</strong> Weekly Matching Bonus"
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
msgid ""
"<strong>Example:</strong> You activate 5 total Classic Members in one "
"calendar month. You earn $100.00 ($20.00x5) in Daily Activation Bonus + "
"$150.00 ($30.00x5) in Monthly Activations Bonus for a cumulative total of "
"$250.00."
msgstr ""
#: /app/apps/main/views/emails/compensation/monthly_member_activation.html
msgid ""
"<strong>Example:</strong> You activate 5 total Members in one calendar "
"month. You earn $100.00 ($20.00x5) in Daily Activation Bonus + $150.00 "
"($30.00x5) in Monthly Activations Bonus for a cumulative total of $250.00."
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
msgid ""
"<strong>Example:</strong> You activate 5 total Premium Members in one "
"calendar month. You earn $250.00 ($50.00 x 5) in Daily Activation Bonus + "
"$375.00 ($75.00 x 5) in Monthly Activations Bonus for a cumulative total of "
"$625.00."
msgstr ""
#: /app/apps/main/views/emails/leadership_review_protocol/warning_leadership_bonus_lost.html
#: /app/apps/main/views/emails/payments_review/pm_referer_md.html
#: /app/apps/main/views/emails/payments_review/remainder1.html
#: /app/apps/main/views/emails/payments_review/remainder2.html
msgid "<strong>Info inCruises</strong>"
msgstr ""
#: /app/apps/main/views/emails/payments_review/referer.html
msgid "<strong>Support inCruises</strong>"
msgstr ""
#: /app/apps/main/views/emails/contacts/reminders/upgrade_reminder_2.html
msgid ""
"<strong>Upgrade your account today to Partner/Member</strong> and be a part "
"of history as we disrupt an entire industry together."
msgstr ""
#: /app/apps/main/views/emails/contacts/reminders/upgrade_reminder_3.html
msgid ""
"<strong>Upgrade your account today to Partner/Member</strong> and increase "
"your odds of making a six figure income."
msgstr ""
#: /app/apps/main/cronjobs/sendUpgradeReminder.js
msgid "🎉 Access the power of Premium!"
msgstr ""
#: /app/apps/main/controllers/user.js
msgid "🎉 Welcome to inCruises 🎉"
msgstr ""
#: /app/apps/main/views/emails/two_factor/new_rank_two_factor_reminder.html
msgid "💡 Your security is our priority. Don’t wait—enable 2FA today!"
msgstr ""
#: /app/apps/main/controllers/contacts_old.js
msgid "🛳 %s wants you to check out inCruises"
msgstr ""
#: /app/apps/main/controllers/contacts_old.js
msgid "🛳 You should check out inCruises"
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
msgid "$100.00 Per Activation"
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
#: /app/apps/main/views/emails/compensation/monthly_member_activation.html
msgid "$20.00 Per Activation"
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
#: /app/apps/main/views/emails/compensation/monthly_member_activation.html
msgid "$30.00 Per Activation"
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
#: /app/apps/main/views/emails/compensation/monthly_member_activation.html
msgid "$40.00 Per Activation"
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
msgid "$50.00 Per Activation"
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
msgid "$75.00 Per Activation"
msgstr ""
#: /app/apps/main/views/emails/invoices/membership_free.html
msgid "1. Become an inCruises Partner. Here's a direct link:"
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
#: /app/apps/main/views/emails/compensation/monthly_member_activation.html
msgid "10+ Member Activations:"
msgstr ""
#: /app/apps/main/views/emails/bonus/instant_bonus.html
msgid "10th Partner Member = $150 Instant Pay Bonus"
msgstr ""
#: /app/apps/main/views/emails/invoices/membership_free.html
msgid ""
"2. After becoming a Partner, and before your Membership invoice is created, "
"simply REFER just 5 new Members. That's it!"
msgstr ""
#: /app/apps/main/views/emails/contacts/reminders/upgrade_reminder_2.html
msgid ""
"24 million people are going on a cruise this year. And countless more want "
"to go on a cruise but have never been on one."
msgstr ""
#: /app/apps/main/components/two_factor.js
msgid "2FA is verified"
msgstr ""
#: /app/apps/main/views/emails/bonus/instant_bonus.html
msgid "2nd Partner Member = $60 Instant Pay Bonus"
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
#: /app/apps/main/views/emails/compensation/monthly_member_activation.html
msgid "3-4 Member Activations:"
msgstr ""
#: /app/apps/main/views/emails/bonus/instant_bonus.html
msgid "3rd Partner Member = $70 Instant Pay Bonus"
msgstr ""
#: /app/apps/main/views/emails/bonus/instant_bonus.html
msgid "4th Partner Member = $80 Instant Pay Bonus"
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
#: /app/apps/main/views/emails/compensation/monthly_member_activation.html
msgid "5-9 Member Activations:"
msgstr ""
#: /app/apps/main/views/emails/upgrade_cta/upgrade_cta.html
msgid "500 Reward Points each month"
msgstr ""
#: /app/apps/main/views/emails/upgrade_cta/upgrade_cta.html
msgid ""
"500 Reward Points for your first on-time $250 Monthly payment! Premium is "
"the ultimate inCruises membership experience!."
msgstr ""
#: /app/apps/main/views/emails/bonus/instant_bonus.html
msgid "5th Partner Member = $90 Instant Pay Bonus"
msgstr ""
#: /app/apps/main/views/emails/bonus/instant_bonus.html
msgid "6th Partner Member = $100 Instant Pay Bonus"
msgstr ""
#: /app/apps/main/views/emails/bonus/instant_bonus.html
msgid "7th Partner Member = $110 Instant Pay Bonus"
msgstr ""
#: /app/apps/main/views/emails/bonus/instant_bonus.html
msgid "8th Partner Member = $120 Instant Pay Bonus"
msgstr ""
#: /app/apps/main/views/emails/bonus/instant_bonus.html
msgid "9th Partner Member = $130 Instant Pay Bonus"
msgstr ""
#: /app/apps/main/views/emails/invoices/partner_renewal_reminder.html
msgid ""
"A %s invoice will be created 5 days before your Partnership Renewal due "
"date and you will be notified via email."
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
msgid ""
"A <strong>$%s.00</strong> Daily Activation bonus has just been added to "
"your inCruises wallet for Activating %s as a Classic Member."
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
msgid ""
"A <strong>$%s.00</strong> Daily Activation bonus has just been added to "
"your inCruises wallet for Activating %s as a Premium Member."
msgstr ""
#: /app/apps/main/views/emails/compensation/monthly_member_activation.html
msgid ""
"A <strong>$%s.00</strong> Monthly Activation bonus has just been added to "
"your inCruises wallet for Activating %s members."
msgstr ""
#: /app/apps/main/views/emails/upgrade_cta/upgrade_cta.html
msgid "A 250 Reward Points Match for your one-time $250 Activation Payment"
msgstr ""
#: /app/apps/main/views/emails/payments_review/remainder1.html
#: /app/apps/main/views/emails/payments_review/remainder2.html
msgid ""
"A few days ago we sent you an email requesting information from you, but we "
"have not had an answer yet."
msgstr ""
#: /app/apps/main/controllers/user.js
msgid "A member from your team has requested to delete their account."
msgstr ""
#: /app/apps/main/views/emails/bonus/upline_residual_bonus_alert.html
msgid ""
"A member in your team, %s, has just paid their subscription! You can expect "
"a recurring bonus of $5-9 for eligible legs within your organization."
msgstr ""
#: /app/apps/main/views/emails/email_verification/verify_recipient_account.html
msgid ""
"A new recipient account (Bank or Debit Card) has been added to your InPays "
"account and it requires your immediate attention."
msgstr ""
#: /app/apps/main/components/push_notifications.js
msgid "A new version of the app is available"
msgstr ""
#: /app/apps/main/views/emails/payments_review/pm_referer_md.html
#: /app/apps/main/views/emails/payments_review/remainder1.html
#: /app/apps/main/views/emails/payments_review/remainder2.html
msgid ""
"A photo of your face holding your ID card or passport, so that we can "
"verify that the person holding the document and the person shown on the "
"card are the same person (original document must be shown. No photocopy or "
"scanned copy will be accepted)."
msgstr ""
#: /app/apps/main/views/emails/payments_review/pm_referer_md.html
#: /app/apps/main/views/emails/payments_review/remainder1.html
#: /app/apps/main/views/emails/payments_review/remainder2.html
msgid ""
"A picture of the credit card (front and back) used with the payment. Please "
"cover all the numbers on the credit card except the last 4 numbers and also "
"cover your CVC number on the back of your credit card so that it cannot be "
"visible."
msgstr ""
#: /app/apps/main/views/emails/payments_review/referer.html
msgid ""
"A review means that we must verify the identity of the payee before "
"accepting funds and releasing Bonuses."
msgstr ""
#: /app/apps/main/views/emails/contacts/professional.html
msgid "Accept Invitation"
msgstr ""
#: /app/apps/main/views/emails/contacts/reminders/upgrade_reminder_2.html
msgid "According to Wikipedia, a Disruptive Innovation is defined as:"
msgstr ""
#: /app/apps/main/views/emails/refund_protocol/warning_refund_its_rejected.html
msgid ""
"According with the agreement you entered into when you made the payment, "
"you had a 14-day refund period. Your request is outside of that period, "
"therefore we can’t process a refund."
msgstr ""
#: /app/apps/main/components/account_recovery.js
msgid "Account Recovery Initiated"
msgstr ""
#: /app/apps/main/views/emails/user/created.html
msgid ""
"Activate as a Club Member and you'll earn Rewards Points and your ability "
"to see the world INstyle is elevated immediately."
msgstr ""
#: /app/apps/main/views/emails/compensation/partner_status_inactive.html
msgid "Activations"
msgstr ""
#: /app/apps/main/controllers/cruises.js
msgid "Added Tourico Cabin CategoryInfo!"
msgstr ""
#: /app/apps/main/controllers/cruises.js
msgid "Added Tourico Info!"
msgstr ""
#: /app/apps/main/views/emails/compensation/daily_member_activation.html
#: /app/apps/main/views/emails/compensation/monthly_member_activation.html
msgid "ADDITIONAL BONUS AMOUNT"
msgstr ""
#: /app/apps/main/views/emails/tour_booking/new_booking.html
msgid "Additional Details"
msgstr ""
#: /app/apps/main/views/emails/invoices/invoice_created_but_payment_failed.html
#: /app/apps/main/views/emails/invoices/partner_renewal_reminder.html
msgid ""
"Additionally, if your invoice remains unpaid for 30 days your Partnership "
"lapses entirely and your downline team passes to your upline sponsor. This "
"action is irreversible."
msgstr ""
#: /app/apps/main/views/emails/bonus/travel_rewards_new.html
msgid ""
"Additionally, your 30 Members and 30 Partners must remain Active during the "
"time you will be receiving this award and additional bonus payments. "
"Refunds will affect your ability to earn this award. So Keep Growing!"
msgstr ""
#: /app/apps/main/controllers/account_data.js
msgid "Address Updated!"
msgstr ""
#: /app/apps/main/views/emails/email_verification/verify_recipient_account.html
msgid ""
"After changing your password please log out all sessions in the security "
"page."
msgstr ""
#: /app/apps/main/views/emails/contacts/professional.html
msgid ""
"After viewing it, please be sure to use the following email: "
"<strong>%s</strong> to accept your private invitation here:"
msgstr ""
#: /app/apps/main/views/emails/contacts/reminders/invitation.html
msgid ""
"After watching the video, please be sure to use the following email: %s to "
"accept your private invitation."
msgstr ""
#: /app/apps/main/views/emails/contacts/professional_member.html
#: /app/apps/main/views/emails/contacts/professional_no_ditto.html
#: /app/apps/main/views/emails/contacts/professional_partner.html
msgid ""
"After watching the video, please be sure use the following email: %s to "
"accept your private invitation."
msgstr ""
#: /app/apps/main/views/emails/upgrade/cruising.html
#: /app/apps/main/views/emails/upgrade/cruising_partner.html
msgid ""
"Again welcome aboard and <strong>THANK YOU</strong> for the privilege to "
"serve you and your family."
msgstr ""
#: /app/apps/main/views/emails/hotel_booking/new_booking.html
msgid "Agency Reference"
msgstr ""
#: /app/apps/main/views/emails/upgrade/cruising_partner.html
msgid "All of this is included once you login to your inCruises back office."
msgstr ""
#: /app/apps/main/views/emails/elevate/failed.html
msgid ""
"All Reward Points used have been refunded to your <a "
"href=\"https://www.incruises.com/reward_points\">inCruises</a> account."
msgstr ""
#: /app/apps/main/compensation/ambassador_bod.js
#: /app/apps/main/compensation/qualified_residual.js
#: /app/apps/main/compensation/royal_ambassador_bod.js
msgid "Already paid."
msgstr ""
#: /app/apps/main/views/emails/compensation/ambassador_bod_bonus.html
msgid "Ambassador Bonus"
msgstr ""
#: /app/apps/main/compensation/ambassador_bod.js
msgid "Ambassador Bonus inCome Notification"
msgstr ""
#: /app/apps/main/views/emails/invoices/create_invoice.html
#: /app/apps/main/views/emails/invoices/expired_user.html
#: /app/apps/main/views/emails/invoices/invoice_created_but_payment_failed.html
#: /app/apps/main/views/emails/invoices/power_tools.html
msgid "Amount Due"
msgstr ""
#: /app/apps/main/views/emails/account_recovery/initiate.html
msgid ""
"An account recovery has been requested by your email, and has officially "
"been initiated by an administrator."
msgstr ""
#: /app/apps/main/views/emails/support/reply.html
msgid "An admin has responded to your ticket!"
msgstr ""
#: /app/apps/main/views/emails/two_factor/email_code.html
msgid ""
"An authentication code has been requested for your inCruises account. "
"Please enter the code below to continue:"
msgstr ""
#: /app/apps/main/controllers/contacts_old.js
msgid "An error has occured"
msgstr ""
#: /app/apps/main/controllers/new_production_review.js
msgid "An error occurred while fetching data"
msgstr ""
#: /app/apps/main/controllers/italian_commissions.js
msgid "An InCruises account already has this VAT number approved."
msgstr ""
#: /app/apps/main/views/emails/invoices/power_tools.html
msgid "An invoice has been generated for your inCruises® Connect."
msgstr ""
#: /app/apps/main/views/emails/invoices/create_invoice.html
msgid "An invoice has been generated for your inCruises® membership."
msgstr ""
#: /app/apps/main/views/emails/recurring/failed.html
msgid "An online banking verification failure"
msgstr ""
#: /app/apps/main/views/emails/perfect_pairings/hotel_reminder.html
msgid ""
"And always remember: inStays always gives you peace of mind by offering a "
"Price Match Guarantee. The inStays Price Match Guarantee ensures that if "
"you book with inStays and then find the same category room at the same "
"property on the same dates at a lower price, <strong>we will credit you the "
"price difference with Reward Points!</strong>"
msgstr ""
#: /app/apps/main/views/emails/invoices/membership_free.html
msgid ""
"And as long as those Members remain active you will not have to pay your "
"monthly Membership again."
msgstr ""
#: /app/apps/main/views/emails/elevate/payment.html
#: /app/apps/main/views/emails/elevate/payment_reminder.html
#: /app/apps/main/views/emails/elevate/register.html
msgid "And get ready to ELEVATE!"
msgstr ""
#: /app/apps/main/views/emails/upgrade/cruising_partner.html
msgid ""
"And if that wasn't enough, you will also get access to Reports, a one of a "
"kind tool used to design reports of your team."
msgstr ""
#: /app/apps/main/views/emails/recurring/recurring_setup.html
msgid "And that’s it! As easy as 1, 2, 3!"
msgstr ""
#: /app/apps/main/views/emails/contacts/reminders/upgrade_reminder_3.html
msgid "And the Company? Is inCruises the Right Company?"
msgstr ""
#: /app/apps/main/views/emails/contacts/reminders/upgrade_reminder_2.html
msgid "And the opportunity is both global and massive. Consider this..."
msgstr ""
#: /app/apps/main/views/emails/contacts/reminders/upgrade_reminder_3.html
msgid ""
"And there's absolutely nothing wrong with that at all. In fact, the far "
"majority of people in networking or direct selling industry earn just an "
"extra few hundred dollars per month."
msgstr ""
#: /app/apps/main/views/emails/invoices/not_free.html
msgid "And these are Inactive Members:"
msgstr ""
#: /app/apps/main/views/emails/invoices/not_free.html
msgid "And these are Pending Members (those that have pending unpaid invoices):"
msgstr ""
#: /app/apps/main/views/emails/invoices/inactive_partnership.html
#: /app/apps/main/views/emails/invoices/invoice_created_but_payment_failed.html
#: /app/apps/main/views/emails/invoices/partner_renewal_reminder.html
msgid "and you are"
msgstr ""
#: /app/apps/main/views/emails/recurring/failed.html
#: /app/apps/main/views/emails/recurring/payment_expired.html
#: /app/apps/main/views/emails/recurring/payment_expiring.html
msgid ""
"Another great way to <strong>ensure seamless payments</strong> are made is "
"to <strong>add a secondary card</strong> to your recurring payment profile "
"as a backup. This way, if there are any issues with retrieving the payment "
"from the <strong>primary card</strong> the system will automatically try to "
"take the payment from a <strong>secondary card</strong>."
msgstr ""
#: /app/apps/main/views/emails/contacts/invitation_personal_opinion.html
msgid ""
"Anyway, I am pretty excited about this but I want to get your thoughts on "
"it first."
msgstr ""
#: /app/apps/main/views/emails/global_booking/new_booking.html
msgid "Apply for a refund using the form"
msgstr ""
#: /app/apps/main/views/emails/payments_review/referer.html
msgid "Are you in personal contact with <strong>%s</strong> ?"
msgstr ""
#: /app/apps/main/cronjobs/fastStartReminder.js
msgid "Are you ready for a Fast Start?"
msgstr ""
#: /app/apps/main/views/emails/global_booking/new_booking.html
msgid "Arrival Times"
msgstr ""
#: /app/apps/main/views/emails/upgrade/partner.html
msgid ""
"As a new Partner on our team we want to make sure you're off to a great "
"start."
msgstr ""
#: /app/apps/main/views/emails/upgrade/three_hours.html
msgid ""
"As a new Partner on our team we want to make sure you’re off to a great "
"start."
msgstr ""
#: /app/apps/main/views/emails/user/created.html
msgid "As a registered Member you have complimentary limited access to our website."
msgstr ""
#: /app/apps/main/views/emails/invoices/membership_free.html
msgid ""
"As an inCruises Member, you are guaranteed to always save hundreds and even "
"thousands on luxury travel. We are sending you this notice to make you "
"aware of a way you can boost your savings even more."
msgstr ""
#: /app/apps/main/views/emails/upgrade/cruising_partner.html
msgid ""
"As part of your partnership plan, we are providing you with all of the "
"tools necessary to start building your business."
msgstr ""
#: /app/apps/main/views/emails/compensation/partner_status_inactive.html
msgid ""
"As soon as you directly Activate even one new Member or Partner Member or "
"Reactivate a Member or Partner Member you become immediately Active and "
"inCome eligible again for the next 30 days."
msgstr ""
#: /app/apps/main/views/emails/invoices/senior_team_leader.html
msgid ""
"As you continue to refer and Activate New Members and especially as you "
"Activate New Partners who do the same. You and your team can rapidly reach "
"the minimum $3,000 in Total Team Membership Sales Volume in a calendar "
"month that is necessary for MD. Achieving and then maintaining this rank "
"can unlock new <span style=\"color:#f19332;\">IN</span>centives like the "
"ability to use (2 for 1) Reward Points to book 100% of your cruise. Also "
"Marketing Director opens new <span style=\"color:#f19332;\">IN</span>come "
"possibilities including FastStart, Team Leadership Bonus, Recurring <span "
"style=\"color:#f19332;\">IN</span>come and more."
msgstr ""
#: /app/apps/main/views/emails/perfect_pairings/hotel_reminder.html
msgid ""
"As you finalize your trip details please know that you can book your pre "
"and post-cruise lodging through inStays!"
msgstr ""
#: /app/apps/main/views/emails/upgrade/new_membership_announcement.html
msgid ""
"As you may have already heard, inCruises is upgrading its word-class "
"Membership with important improvements, adding more benefits for its "
"Members and making other adjustments."
msgstr ""
#: /app/apps/main/views/certificates/style2.html
msgid ""
"At inCruises we know that when you Live INspired, you will INspire others "
"which can result in even greater team success."
msgstr ""
#: /app/apps/main/cronjobs/updateActivePartnersTable.js
msgid "Attention - Your Partner status is Inactive"
msgstr ""
#: /app/apps/main/queues/invoices-partnership.process.js
msgid "Attention - Your Partner status is now Inactive"
msgstr ""
#: /app/apps/main/views/emails/account_recovery/initiate.html
msgid "Attention %s,"
msgstr ""
#: /app/apps/main/controllers/payout_withdraw.js
msgid "Authentication has expired, please try again."
msgstr ""
#: /app/apps/main/components/two_factor.js
msgid "Backup code used"
msgstr ""
#: /app/apps/main/views/emails/admin/expired_booking.html
msgid ""
"Be advised that Members must maintain an Active Membership throughout "
"embarkation of any cruise where Reward Points were used to book the cruise."
msgstr ""
#: /app/apps/main/views/emails/upgrade/first_new_member.html
msgid "Become a Team Leader and enroll five (5) Members."
msgstr ""
#: /app/apps/main/views/emails/upgrade/first_new_member.html
msgid "Being a Membership Free Team Leader is a $2,400.00 USD Per Year Value."
msgstr ""
#: /app/apps/main/views/emails/inviter_error.html
msgid ""
"Below are the details of the email invitations that could not be delivered, "
"including the recipient's name, email address, and the date of the failed "
"attempt:"
msgstr ""
#: /app/apps/main/views/emails/inviter_error.html
#: /app/apps/main/views/emails/bonus/global_market_bonus.html
#: /app/apps/main/views/emails/perfect_pairings/hotel_reminder.html
#: /app/apps/main/views/emails/recurring/card_expired.html
#: /app/apps/main/views/emails/refund_protocol/warning_refund_its_rejected.html
msgid "Best regards,"
msgstr ""
#: /app/apps/main/controllers/certificates.js
msgid "BOARD OF DIRECTORS"
msgstr ""
#: /app/apps/main/views/emails/hotel_booking/new_booking.html
msgid "Board Type"
msgstr ""
#: /app/apps/main/controllers/bonus.js
msgid "Bonus Payout"
msgstr ""
#: /app/apps/main/views/emails/perfect_pairings/hotel_reminder.html
msgid "BOOK INSTAYS NOW!"
msgstr ""
#: /app/apps/main/views/emails/hotel_booking/new_booking.html
#: /app/apps/main/views/emails/tour_booking/new_booking.html
msgid "Booking Reference"
msgstr ""
#: /app/apps/main/controllers/booking_review.js
msgid "Booking successfully reviewed."
msgstr ""
#: /app/apps/main/views/emails/contacts/reminders/upgrade_reminder.html
msgid ""
"Boost your “TravelAbility” with additional income and incentives so you can "
"travel bigger, better and more often."
msgstr ""
#: /app/apps/main/views/certificates/business-ownership.html
msgid "BUSINESS OWNERSHIP CERTIFICATE"
msgstr ""
#: /app/apps/main/views/emails/email_verification/verify_recipient_account.html
msgid ""
"By adding this new account, you are authorizing it to receive funds from "
"your InCruises account."
msgstr ""
#: /app/apps/main/views/emails/global_booking/new_booking.html
msgid "Cabin"
msgstr ""
#: /app/apps/main/controllers/settings.js
msgid "Cannot change name once KYC has been completed."
msgstr ""
#: /app/apps/main/components/membership.js
msgid "Cannot downgrade from this membership plan."
msgstr ""
#: /app/apps/main/views/emails/recurring/failed.html
msgid "Card on file has expired"
msgstr ""