lorgg-v2-components 0.2.2 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/components/library/NavigationSide/NavigationSide.vue.d.ts +13 -1
  2. package/dist/components/library/NavigationSide/types.d.ts +6 -0
  3. package/dist/components/library/NavigationTop/NavigationTop.vue.d.ts +13 -1
  4. package/dist/components/library/NavigationTopDesktop/NavigationTopDesktop.vue.d.ts +11 -0
  5. package/dist/components/library/NavigationTopMobile/NavigationTopMobile.vue.d.ts +13 -1
  6. package/dist/components/setup/i18n.d.ts +536 -0
  7. package/dist/components/setup/icons.d.ts.map +1 -1
  8. package/dist/components/setup/locales/de.d.ts +41 -0
  9. package/dist/components/setup/locales/de.d.ts.map +1 -1
  10. package/dist/components/setup/locales/en.d.ts +44 -0
  11. package/dist/components/setup/locales/en.d.ts.map +1 -1
  12. package/dist/components/setup/locales/es.d.ts +41 -0
  13. package/dist/components/setup/locales/es.d.ts.map +1 -1
  14. package/dist/components/setup/locales/fr.d.ts +41 -0
  15. package/dist/components/setup/locales/fr.d.ts.map +1 -1
  16. package/dist/components/setup/locales/it.d.ts +41 -0
  17. package/dist/components/setup/locales/it.d.ts.map +1 -1
  18. package/dist/components/setup/locales/ja.d.ts +41 -0
  19. package/dist/components/setup/locales/ja.d.ts.map +1 -1
  20. package/dist/components/setup/locales/ko.d.ts +41 -0
  21. package/dist/components/setup/locales/ko.d.ts.map +1 -1
  22. package/dist/components/setup/locales/pl.d.ts +41 -0
  23. package/dist/components/setup/locales/pl.d.ts.map +1 -1
  24. package/dist/components/setup/locales/pt.d.ts +41 -0
  25. package/dist/components/setup/locales/pt.d.ts.map +1 -1
  26. package/dist/components/setup/locales/ru.d.ts +41 -0
  27. package/dist/components/setup/locales/ru.d.ts.map +1 -1
  28. package/dist/components/setup/locales/th.d.ts +41 -0
  29. package/dist/components/setup/locales/th.d.ts.map +1 -1
  30. package/dist/components/setup/locales/tr.d.ts +41 -0
  31. package/dist/components/setup/locales/tr.d.ts.map +1 -1
  32. package/dist/components/setup/locales/zh.d.ts +41 -0
  33. package/dist/components/setup/locales/zh.d.ts.map +1 -1
  34. package/dist/components/types/navigation.d.ts +6 -0
  35. package/dist/components/types/navigation.d.ts.map +1 -1
  36. package/dist/lorgg-components.cjs.js +52 -52
  37. package/dist/lorgg-components.css +1 -1
  38. package/dist/lorgg-components.es.js +3730 -3163
  39. package/dist/lorgg-components.umd.js +54 -54
  40. package/package.json +1 -1
@@ -416,8 +416,52 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
416
416
  buyPremium: string;
417
417
  };
418
418
  };
419
+ premium: {
420
+ loading: string;
421
+ title: string;
422
+ description: string;
423
+ loginToSubscribe: string;
424
+ verifyToSubscribe: string;
425
+ verifyHint: string;
426
+ loadingPaymentUi: string;
427
+ cancelAutoRenew: string;
428
+ resumeAutoRenew: string;
429
+ updatePaymentMethod: string;
430
+ cancelSubmittedPending: string;
431
+ cancelCompleted: string;
432
+ resumeSubmittedPending: string;
433
+ resumeCompleted: string;
434
+ subscriptionStatus: string;
435
+ subscriptionEvent: {
436
+ renews: string;
437
+ cancels: string;
438
+ };
439
+ errors: {
440
+ loadPayment: string;
441
+ loadSubscription: string;
442
+ cancel: string;
443
+ resume: string;
444
+ };
445
+ adFree: {
446
+ title: string;
447
+ price: string;
448
+ changeAction: string;
449
+ feature1: string;
450
+ feature2: string;
451
+ };
452
+ premium: {
453
+ title: string;
454
+ price: string;
455
+ changeAction: string;
456
+ feature1: string;
457
+ feature2: string;
458
+ feature3: string;
459
+ feature4: string;
460
+ };
461
+ };
419
462
  navigation: {
420
463
  searchPlaceholder: string;
464
+ subscriptionStatus: string;
421
465
  };
422
466
  "profile-overview": string;
423
467
  "profile-statistics": string;
@@ -803,6 +847,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
803
847
  };
804
848
  navigation: {
805
849
  searchPlaceholder: string;
850
+ subscriptionStatus: string;
806
851
  };
807
852
  ads: {
808
853
  supportLorgg: string;
@@ -822,6 +867,46 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
822
867
  buyPremium: string;
823
868
  };
824
869
  };
870
+ premium: {
871
+ loading: string;
872
+ title: string;
873
+ loginToSubscribe: string;
874
+ verifyToSubscribe: string;
875
+ verifyHint: string;
876
+ loadingPaymentUi: string;
877
+ cancelAutoRenew: string;
878
+ resumeAutoRenew: string;
879
+ updatePaymentMethod: string;
880
+ cancelCompleted: string;
881
+ resumeCompleted: string;
882
+ subscriptionStatus: string;
883
+ subscriptionEvent: {
884
+ renews: string;
885
+ cancels: string;
886
+ };
887
+ errors: {
888
+ loadPayment: string;
889
+ loadSubscription: string;
890
+ cancel: string;
891
+ resume: string;
892
+ };
893
+ adFree: {
894
+ title: string;
895
+ price: string;
896
+ changeAction: string;
897
+ feature1: string;
898
+ feature2: string;
899
+ };
900
+ premium: {
901
+ title: string;
902
+ price: string;
903
+ changeAction: string;
904
+ feature1: string;
905
+ feature2: string;
906
+ feature3: string;
907
+ feature4: string;
908
+ };
909
+ };
825
910
  };
826
911
  es: {
827
912
  cardLottery: {
@@ -1185,6 +1270,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
1185
1270
  };
1186
1271
  navigation: {
1187
1272
  searchPlaceholder: string;
1273
+ subscriptionStatus: string;
1188
1274
  };
1189
1275
  ads: {
1190
1276
  supportLorgg: string;
@@ -1204,6 +1290,46 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
1204
1290
  buyPremium: string;
1205
1291
  };
1206
1292
  };
1293
+ premium: {
1294
+ loading: string;
1295
+ title: string;
1296
+ loginToSubscribe: string;
1297
+ verifyToSubscribe: string;
1298
+ verifyHint: string;
1299
+ loadingPaymentUi: string;
1300
+ cancelAutoRenew: string;
1301
+ resumeAutoRenew: string;
1302
+ updatePaymentMethod: string;
1303
+ cancelCompleted: string;
1304
+ resumeCompleted: string;
1305
+ subscriptionStatus: string;
1306
+ subscriptionEvent: {
1307
+ renews: string;
1308
+ cancels: string;
1309
+ };
1310
+ errors: {
1311
+ loadPayment: string;
1312
+ loadSubscription: string;
1313
+ cancel: string;
1314
+ resume: string;
1315
+ };
1316
+ adFree: {
1317
+ title: string;
1318
+ price: string;
1319
+ changeAction: string;
1320
+ feature1: string;
1321
+ feature2: string;
1322
+ };
1323
+ premium: {
1324
+ title: string;
1325
+ price: string;
1326
+ changeAction: string;
1327
+ feature1: string;
1328
+ feature2: string;
1329
+ feature3: string;
1330
+ feature4: string;
1331
+ };
1332
+ };
1207
1333
  };
1208
1334
  fr: {
1209
1335
  cardLottery: {
@@ -1567,6 +1693,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
1567
1693
  };
1568
1694
  navigation: {
1569
1695
  searchPlaceholder: string;
1696
+ subscriptionStatus: string;
1570
1697
  };
1571
1698
  ads: {
1572
1699
  supportLorgg: string;
@@ -1586,6 +1713,46 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
1586
1713
  buyPremium: string;
1587
1714
  };
1588
1715
  };
1716
+ premium: {
1717
+ loading: string;
1718
+ title: string;
1719
+ loginToSubscribe: string;
1720
+ verifyToSubscribe: string;
1721
+ verifyHint: string;
1722
+ loadingPaymentUi: string;
1723
+ cancelAutoRenew: string;
1724
+ resumeAutoRenew: string;
1725
+ updatePaymentMethod: string;
1726
+ cancelCompleted: string;
1727
+ resumeCompleted: string;
1728
+ subscriptionStatus: string;
1729
+ subscriptionEvent: {
1730
+ renews: string;
1731
+ cancels: string;
1732
+ };
1733
+ errors: {
1734
+ loadPayment: string;
1735
+ loadSubscription: string;
1736
+ cancel: string;
1737
+ resume: string;
1738
+ };
1739
+ adFree: {
1740
+ title: string;
1741
+ price: string;
1742
+ changeAction: string;
1743
+ feature1: string;
1744
+ feature2: string;
1745
+ };
1746
+ premium: {
1747
+ title: string;
1748
+ price: string;
1749
+ changeAction: string;
1750
+ feature1: string;
1751
+ feature2: string;
1752
+ feature3: string;
1753
+ feature4: string;
1754
+ };
1755
+ };
1589
1756
  };
1590
1757
  it: {
1591
1758
  cardLottery: {
@@ -1949,6 +2116,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
1949
2116
  };
1950
2117
  navigation: {
1951
2118
  searchPlaceholder: string;
2119
+ subscriptionStatus: string;
1952
2120
  };
1953
2121
  ads: {
1954
2122
  supportLorgg: string;
@@ -1968,6 +2136,46 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
1968
2136
  buyPremium: string;
1969
2137
  };
1970
2138
  };
2139
+ premium: {
2140
+ loading: string;
2141
+ title: string;
2142
+ loginToSubscribe: string;
2143
+ verifyToSubscribe: string;
2144
+ verifyHint: string;
2145
+ loadingPaymentUi: string;
2146
+ cancelAutoRenew: string;
2147
+ resumeAutoRenew: string;
2148
+ updatePaymentMethod: string;
2149
+ cancelCompleted: string;
2150
+ resumeCompleted: string;
2151
+ subscriptionStatus: string;
2152
+ subscriptionEvent: {
2153
+ renews: string;
2154
+ cancels: string;
2155
+ };
2156
+ errors: {
2157
+ loadPayment: string;
2158
+ loadSubscription: string;
2159
+ cancel: string;
2160
+ resume: string;
2161
+ };
2162
+ adFree: {
2163
+ title: string;
2164
+ price: string;
2165
+ changeAction: string;
2166
+ feature1: string;
2167
+ feature2: string;
2168
+ };
2169
+ premium: {
2170
+ title: string;
2171
+ price: string;
2172
+ changeAction: string;
2173
+ feature1: string;
2174
+ feature2: string;
2175
+ feature3: string;
2176
+ feature4: string;
2177
+ };
2178
+ };
1971
2179
  };
1972
2180
  ja: {
1973
2181
  cardLottery: {
@@ -2331,6 +2539,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
2331
2539
  };
2332
2540
  navigation: {
2333
2541
  searchPlaceholder: string;
2542
+ subscriptionStatus: string;
2334
2543
  };
2335
2544
  ads: {
2336
2545
  supportLorgg: string;
@@ -2350,6 +2559,46 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
2350
2559
  buyPremium: string;
2351
2560
  };
2352
2561
  };
2562
+ premium: {
2563
+ loading: string;
2564
+ title: string;
2565
+ loginToSubscribe: string;
2566
+ verifyToSubscribe: string;
2567
+ verifyHint: string;
2568
+ loadingPaymentUi: string;
2569
+ cancelAutoRenew: string;
2570
+ resumeAutoRenew: string;
2571
+ updatePaymentMethod: string;
2572
+ cancelCompleted: string;
2573
+ resumeCompleted: string;
2574
+ subscriptionStatus: string;
2575
+ subscriptionEvent: {
2576
+ renews: string;
2577
+ cancels: string;
2578
+ };
2579
+ errors: {
2580
+ loadPayment: string;
2581
+ loadSubscription: string;
2582
+ cancel: string;
2583
+ resume: string;
2584
+ };
2585
+ adFree: {
2586
+ title: string;
2587
+ price: string;
2588
+ changeAction: string;
2589
+ feature1: string;
2590
+ feature2: string;
2591
+ };
2592
+ premium: {
2593
+ title: string;
2594
+ price: string;
2595
+ changeAction: string;
2596
+ feature1: string;
2597
+ feature2: string;
2598
+ feature3: string;
2599
+ feature4: string;
2600
+ };
2601
+ };
2353
2602
  };
2354
2603
  ko: {
2355
2604
  cardLottery: {
@@ -2713,6 +2962,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
2713
2962
  };
2714
2963
  navigation: {
2715
2964
  searchPlaceholder: string;
2965
+ subscriptionStatus: string;
2716
2966
  };
2717
2967
  ads: {
2718
2968
  supportLorgg: string;
@@ -2732,6 +2982,46 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
2732
2982
  buyPremium: string;
2733
2983
  };
2734
2984
  };
2985
+ premium: {
2986
+ loading: string;
2987
+ title: string;
2988
+ loginToSubscribe: string;
2989
+ verifyToSubscribe: string;
2990
+ verifyHint: string;
2991
+ loadingPaymentUi: string;
2992
+ cancelAutoRenew: string;
2993
+ resumeAutoRenew: string;
2994
+ updatePaymentMethod: string;
2995
+ cancelCompleted: string;
2996
+ resumeCompleted: string;
2997
+ subscriptionStatus: string;
2998
+ subscriptionEvent: {
2999
+ renews: string;
3000
+ cancels: string;
3001
+ };
3002
+ errors: {
3003
+ loadPayment: string;
3004
+ loadSubscription: string;
3005
+ cancel: string;
3006
+ resume: string;
3007
+ };
3008
+ adFree: {
3009
+ title: string;
3010
+ price: string;
3011
+ changeAction: string;
3012
+ feature1: string;
3013
+ feature2: string;
3014
+ };
3015
+ premium: {
3016
+ title: string;
3017
+ price: string;
3018
+ changeAction: string;
3019
+ feature1: string;
3020
+ feature2: string;
3021
+ feature3: string;
3022
+ feature4: string;
3023
+ };
3024
+ };
2735
3025
  };
2736
3026
  pl: {
2737
3027
  cardLottery: {
@@ -3095,6 +3385,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
3095
3385
  };
3096
3386
  navigation: {
3097
3387
  searchPlaceholder: string;
3388
+ subscriptionStatus: string;
3098
3389
  };
3099
3390
  ads: {
3100
3391
  supportLorgg: string;
@@ -3114,6 +3405,46 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
3114
3405
  buyPremium: string;
3115
3406
  };
3116
3407
  };
3408
+ premium: {
3409
+ loading: string;
3410
+ title: string;
3411
+ loginToSubscribe: string;
3412
+ verifyToSubscribe: string;
3413
+ verifyHint: string;
3414
+ loadingPaymentUi: string;
3415
+ cancelAutoRenew: string;
3416
+ resumeAutoRenew: string;
3417
+ updatePaymentMethod: string;
3418
+ cancelCompleted: string;
3419
+ resumeCompleted: string;
3420
+ subscriptionStatus: string;
3421
+ subscriptionEvent: {
3422
+ renews: string;
3423
+ cancels: string;
3424
+ };
3425
+ errors: {
3426
+ loadPayment: string;
3427
+ loadSubscription: string;
3428
+ cancel: string;
3429
+ resume: string;
3430
+ };
3431
+ adFree: {
3432
+ title: string;
3433
+ price: string;
3434
+ changeAction: string;
3435
+ feature1: string;
3436
+ feature2: string;
3437
+ };
3438
+ premium: {
3439
+ title: string;
3440
+ price: string;
3441
+ changeAction: string;
3442
+ feature1: string;
3443
+ feature2: string;
3444
+ feature3: string;
3445
+ feature4: string;
3446
+ };
3447
+ };
3117
3448
  };
3118
3449
  pt: {
3119
3450
  cardLottery: {
@@ -3477,6 +3808,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
3477
3808
  };
3478
3809
  navigation: {
3479
3810
  searchPlaceholder: string;
3811
+ subscriptionStatus: string;
3480
3812
  };
3481
3813
  ads: {
3482
3814
  supportLorgg: string;
@@ -3496,6 +3828,46 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
3496
3828
  buyPremium: string;
3497
3829
  };
3498
3830
  };
3831
+ premium: {
3832
+ loading: string;
3833
+ title: string;
3834
+ loginToSubscribe: string;
3835
+ verifyToSubscribe: string;
3836
+ verifyHint: string;
3837
+ loadingPaymentUi: string;
3838
+ cancelAutoRenew: string;
3839
+ resumeAutoRenew: string;
3840
+ updatePaymentMethod: string;
3841
+ cancelCompleted: string;
3842
+ resumeCompleted: string;
3843
+ subscriptionStatus: string;
3844
+ subscriptionEvent: {
3845
+ renews: string;
3846
+ cancels: string;
3847
+ };
3848
+ errors: {
3849
+ loadPayment: string;
3850
+ loadSubscription: string;
3851
+ cancel: string;
3852
+ resume: string;
3853
+ };
3854
+ adFree: {
3855
+ title: string;
3856
+ price: string;
3857
+ changeAction: string;
3858
+ feature1: string;
3859
+ feature2: string;
3860
+ };
3861
+ premium: {
3862
+ title: string;
3863
+ price: string;
3864
+ changeAction: string;
3865
+ feature1: string;
3866
+ feature2: string;
3867
+ feature3: string;
3868
+ feature4: string;
3869
+ };
3870
+ };
3499
3871
  };
3500
3872
  th: {
3501
3873
  cardLottery: {
@@ -3859,6 +4231,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
3859
4231
  };
3860
4232
  navigation: {
3861
4233
  searchPlaceholder: string;
4234
+ subscriptionStatus: string;
3862
4235
  };
3863
4236
  ads: {
3864
4237
  supportLorgg: string;
@@ -3878,6 +4251,46 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
3878
4251
  buyPremium: string;
3879
4252
  };
3880
4253
  };
4254
+ premium: {
4255
+ loading: string;
4256
+ title: string;
4257
+ loginToSubscribe: string;
4258
+ verifyToSubscribe: string;
4259
+ verifyHint: string;
4260
+ loadingPaymentUi: string;
4261
+ cancelAutoRenew: string;
4262
+ resumeAutoRenew: string;
4263
+ updatePaymentMethod: string;
4264
+ cancelCompleted: string;
4265
+ resumeCompleted: string;
4266
+ subscriptionStatus: string;
4267
+ subscriptionEvent: {
4268
+ renews: string;
4269
+ cancels: string;
4270
+ };
4271
+ errors: {
4272
+ loadPayment: string;
4273
+ loadSubscription: string;
4274
+ cancel: string;
4275
+ resume: string;
4276
+ };
4277
+ adFree: {
4278
+ title: string;
4279
+ price: string;
4280
+ changeAction: string;
4281
+ feature1: string;
4282
+ feature2: string;
4283
+ };
4284
+ premium: {
4285
+ title: string;
4286
+ price: string;
4287
+ changeAction: string;
4288
+ feature1: string;
4289
+ feature2: string;
4290
+ feature3: string;
4291
+ feature4: string;
4292
+ };
4293
+ };
3881
4294
  };
3882
4295
  tr: {
3883
4296
  cardLottery: {
@@ -4241,6 +4654,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
4241
4654
  };
4242
4655
  navigation: {
4243
4656
  searchPlaceholder: string;
4657
+ subscriptionStatus: string;
4244
4658
  };
4245
4659
  ads: {
4246
4660
  supportLorgg: string;
@@ -4260,6 +4674,46 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
4260
4674
  buyPremium: string;
4261
4675
  };
4262
4676
  };
4677
+ premium: {
4678
+ loading: string;
4679
+ title: string;
4680
+ loginToSubscribe: string;
4681
+ verifyToSubscribe: string;
4682
+ verifyHint: string;
4683
+ loadingPaymentUi: string;
4684
+ cancelAutoRenew: string;
4685
+ resumeAutoRenew: string;
4686
+ updatePaymentMethod: string;
4687
+ cancelCompleted: string;
4688
+ resumeCompleted: string;
4689
+ subscriptionStatus: string;
4690
+ subscriptionEvent: {
4691
+ renews: string;
4692
+ cancels: string;
4693
+ };
4694
+ errors: {
4695
+ loadPayment: string;
4696
+ loadSubscription: string;
4697
+ cancel: string;
4698
+ resume: string;
4699
+ };
4700
+ adFree: {
4701
+ title: string;
4702
+ price: string;
4703
+ changeAction: string;
4704
+ feature1: string;
4705
+ feature2: string;
4706
+ };
4707
+ premium: {
4708
+ title: string;
4709
+ price: string;
4710
+ changeAction: string;
4711
+ feature1: string;
4712
+ feature2: string;
4713
+ feature3: string;
4714
+ feature4: string;
4715
+ };
4716
+ };
4263
4717
  };
4264
4718
  ru: {
4265
4719
  cardLottery: {
@@ -4623,6 +5077,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
4623
5077
  };
4624
5078
  navigation: {
4625
5079
  searchPlaceholder: string;
5080
+ subscriptionStatus: string;
4626
5081
  };
4627
5082
  ads: {
4628
5083
  supportLorgg: string;
@@ -4642,6 +5097,46 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
4642
5097
  buyPremium: string;
4643
5098
  };
4644
5099
  };
5100
+ premium: {
5101
+ loading: string;
5102
+ title: string;
5103
+ loginToSubscribe: string;
5104
+ verifyToSubscribe: string;
5105
+ verifyHint: string;
5106
+ loadingPaymentUi: string;
5107
+ cancelAutoRenew: string;
5108
+ resumeAutoRenew: string;
5109
+ updatePaymentMethod: string;
5110
+ cancelCompleted: string;
5111
+ resumeCompleted: string;
5112
+ subscriptionStatus: string;
5113
+ subscriptionEvent: {
5114
+ renews: string;
5115
+ cancels: string;
5116
+ };
5117
+ errors: {
5118
+ loadPayment: string;
5119
+ loadSubscription: string;
5120
+ cancel: string;
5121
+ resume: string;
5122
+ };
5123
+ adFree: {
5124
+ title: string;
5125
+ price: string;
5126
+ changeAction: string;
5127
+ feature1: string;
5128
+ feature2: string;
5129
+ };
5130
+ premium: {
5131
+ title: string;
5132
+ price: string;
5133
+ changeAction: string;
5134
+ feature1: string;
5135
+ feature2: string;
5136
+ feature3: string;
5137
+ feature4: string;
5138
+ };
5139
+ };
4645
5140
  };
4646
5141
  zh: {
4647
5142
  cardLottery: {
@@ -5005,6 +5500,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
5005
5500
  };
5006
5501
  navigation: {
5007
5502
  searchPlaceholder: string;
5503
+ subscriptionStatus: string;
5008
5504
  };
5009
5505
  ads: {
5010
5506
  supportLorgg: string;
@@ -5024,5 +5520,45 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
5024
5520
  buyPremium: string;
5025
5521
  };
5026
5522
  };
5523
+ premium: {
5524
+ loading: string;
5525
+ title: string;
5526
+ loginToSubscribe: string;
5527
+ verifyToSubscribe: string;
5528
+ verifyHint: string;
5529
+ loadingPaymentUi: string;
5530
+ cancelAutoRenew: string;
5531
+ resumeAutoRenew: string;
5532
+ updatePaymentMethod: string;
5533
+ cancelCompleted: string;
5534
+ resumeCompleted: string;
5535
+ subscriptionStatus: string;
5536
+ subscriptionEvent: {
5537
+ renews: string;
5538
+ cancels: string;
5539
+ };
5540
+ errors: {
5541
+ loadPayment: string;
5542
+ loadSubscription: string;
5543
+ cancel: string;
5544
+ resume: string;
5545
+ };
5546
+ adFree: {
5547
+ title: string;
5548
+ price: string;
5549
+ changeAction: string;
5550
+ feature1: string;
5551
+ feature2: string;
5552
+ };
5553
+ premium: {
5554
+ title: string;
5555
+ price: string;
5556
+ changeAction: string;
5557
+ feature1: string;
5558
+ feature2: string;
5559
+ feature3: string;
5560
+ feature4: string;
5561
+ };
5562
+ };
5027
5563
  };
5028
5564
  }, {}, {}, string, false>;
@@ -1 +1 @@
1
- {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/components/setup/icons.ts"],"names":[],"mappings":"AA+DA,wBAAgB,WAAW,SAiI1B"}
1
+ {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/components/setup/icons.ts"],"names":[],"mappings":"AAgEA,wBAAgB,WAAW,SAkI1B"}