connectfy-i18n 0.0.26 → 0.0.29
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.
- package/dist/index.cjs +294 -198
- package/dist/index.d.cts +96 -0
- package/dist/index.d.ts +96 -0
- package/dist/index.mjs +294 -198
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -159,6 +159,8 @@ declare const resources: {
|
|
|
159
159
|
email_invalid_local_chars: string;
|
|
160
160
|
email_invalid_domain: string;
|
|
161
161
|
password_is_required: string;
|
|
162
|
+
min_length: string;
|
|
163
|
+
max_length: string;
|
|
162
164
|
};
|
|
163
165
|
user_messages: {
|
|
164
166
|
verify_successful: string;
|
|
@@ -180,6 +182,8 @@ declare const resources: {
|
|
|
180
182
|
phone_number_changed_successfully: string;
|
|
181
183
|
account_deleted: string;
|
|
182
184
|
logout_successfull: string;
|
|
185
|
+
restore_account_successful: string;
|
|
186
|
+
account_deactivated: string;
|
|
183
187
|
};
|
|
184
188
|
common: {
|
|
185
189
|
login: string;
|
|
@@ -425,6 +429,26 @@ declare const resources: {
|
|
|
425
429
|
logout: string;
|
|
426
430
|
logout_desc: string;
|
|
427
431
|
logout_confirm: string;
|
|
432
|
+
restoring_account: string;
|
|
433
|
+
deactivate_account_desc: string;
|
|
434
|
+
confirm: string;
|
|
435
|
+
profile: string;
|
|
436
|
+
blocklist: string;
|
|
437
|
+
my_friends: string;
|
|
438
|
+
lastSeen: string;
|
|
439
|
+
friends: string;
|
|
440
|
+
blocked: string;
|
|
441
|
+
personal_information: string;
|
|
442
|
+
edit: string;
|
|
443
|
+
gender: string;
|
|
444
|
+
location: string;
|
|
445
|
+
bio: string;
|
|
446
|
+
social_links: string;
|
|
447
|
+
add_link: string;
|
|
448
|
+
no_social_links: string;
|
|
449
|
+
open: string;
|
|
450
|
+
copy: string;
|
|
451
|
+
remove: string;
|
|
428
452
|
};
|
|
429
453
|
enum: {
|
|
430
454
|
male: string;
|
|
@@ -691,6 +715,8 @@ declare const resources: {
|
|
|
691
715
|
email_invalid_local_chars: string;
|
|
692
716
|
email_invalid_domain: string;
|
|
693
717
|
password_is_required: string;
|
|
718
|
+
min_length: string;
|
|
719
|
+
max_length: string;
|
|
694
720
|
};
|
|
695
721
|
user_messages: {
|
|
696
722
|
verify_successful: string;
|
|
@@ -712,6 +738,8 @@ declare const resources: {
|
|
|
712
738
|
phone_number_changed_successfully: string;
|
|
713
739
|
account_deleted: string;
|
|
714
740
|
logout_successfull: string;
|
|
741
|
+
restore_account_successful: string;
|
|
742
|
+
account_deactivated: string;
|
|
715
743
|
};
|
|
716
744
|
common: {
|
|
717
745
|
login: string;
|
|
@@ -957,6 +985,26 @@ declare const resources: {
|
|
|
957
985
|
logout: string;
|
|
958
986
|
logout_desc: string;
|
|
959
987
|
logout_confirm: string;
|
|
988
|
+
restoring_account: string;
|
|
989
|
+
deactivate_account_desc: string;
|
|
990
|
+
confirm: string;
|
|
991
|
+
profile: string;
|
|
992
|
+
blocklist: string;
|
|
993
|
+
my_friends: string;
|
|
994
|
+
lastSeen: string;
|
|
995
|
+
friends: string;
|
|
996
|
+
blocked: string;
|
|
997
|
+
personal_information: string;
|
|
998
|
+
edit: string;
|
|
999
|
+
gender: string;
|
|
1000
|
+
location: string;
|
|
1001
|
+
bio: string;
|
|
1002
|
+
social_links: string;
|
|
1003
|
+
add_link: string;
|
|
1004
|
+
no_social_links: string;
|
|
1005
|
+
open: string;
|
|
1006
|
+
copy: string;
|
|
1007
|
+
remove: string;
|
|
960
1008
|
};
|
|
961
1009
|
enum: {
|
|
962
1010
|
male: string;
|
|
@@ -1223,6 +1271,8 @@ declare const resources: {
|
|
|
1223
1271
|
email_invalid_local_chars: string;
|
|
1224
1272
|
email_invalid_domain: string;
|
|
1225
1273
|
password_is_required: string;
|
|
1274
|
+
min_length: string;
|
|
1275
|
+
max_length: string;
|
|
1226
1276
|
};
|
|
1227
1277
|
user_messages: {
|
|
1228
1278
|
verify_successful: string;
|
|
@@ -1244,6 +1294,8 @@ declare const resources: {
|
|
|
1244
1294
|
phone_number_changed_successfully: string;
|
|
1245
1295
|
account_deleted: string;
|
|
1246
1296
|
logout_successfull: string;
|
|
1297
|
+
restore_account_successful: string;
|
|
1298
|
+
account_deactivated: string;
|
|
1247
1299
|
};
|
|
1248
1300
|
common: {
|
|
1249
1301
|
login: string;
|
|
@@ -1489,6 +1541,26 @@ declare const resources: {
|
|
|
1489
1541
|
logout: string;
|
|
1490
1542
|
logout_desc: string;
|
|
1491
1543
|
logout_confirm: string;
|
|
1544
|
+
restoring_account: string;
|
|
1545
|
+
deactivate_account_desc: string;
|
|
1546
|
+
confirm: string;
|
|
1547
|
+
profile: string;
|
|
1548
|
+
blocklist: string;
|
|
1549
|
+
my_friends: string;
|
|
1550
|
+
lastSeen: string;
|
|
1551
|
+
friends: string;
|
|
1552
|
+
blocked: string;
|
|
1553
|
+
personal_information: string;
|
|
1554
|
+
edit: string;
|
|
1555
|
+
gender: string;
|
|
1556
|
+
location: string;
|
|
1557
|
+
bio: string;
|
|
1558
|
+
social_links: string;
|
|
1559
|
+
add_link: string;
|
|
1560
|
+
no_social_links: string;
|
|
1561
|
+
open: string;
|
|
1562
|
+
copy: string;
|
|
1563
|
+
remove: string;
|
|
1492
1564
|
};
|
|
1493
1565
|
enum: {
|
|
1494
1566
|
male: string;
|
|
@@ -1755,6 +1827,8 @@ declare const resources: {
|
|
|
1755
1827
|
email_invalid_local_chars: string;
|
|
1756
1828
|
email_invalid_domain: string;
|
|
1757
1829
|
password_is_required: string;
|
|
1830
|
+
min_length: string;
|
|
1831
|
+
max_length: string;
|
|
1758
1832
|
};
|
|
1759
1833
|
user_messages: {
|
|
1760
1834
|
verify_successful: string;
|
|
@@ -1776,6 +1850,8 @@ declare const resources: {
|
|
|
1776
1850
|
phone_number_changed_successfully: string;
|
|
1777
1851
|
account_deleted: string;
|
|
1778
1852
|
logout_successfull: string;
|
|
1853
|
+
restore_account_successful: string;
|
|
1854
|
+
account_deactivated: string;
|
|
1779
1855
|
};
|
|
1780
1856
|
common: {
|
|
1781
1857
|
login: string;
|
|
@@ -2021,6 +2097,26 @@ declare const resources: {
|
|
|
2021
2097
|
logout: string;
|
|
2022
2098
|
logout_desc: string;
|
|
2023
2099
|
logout_confirm: string;
|
|
2100
|
+
restoring_account: string;
|
|
2101
|
+
deactivate_account_desc: string;
|
|
2102
|
+
confirm: string;
|
|
2103
|
+
profile: string;
|
|
2104
|
+
blocklist: string;
|
|
2105
|
+
my_friends: string;
|
|
2106
|
+
lastSeen: string;
|
|
2107
|
+
friends: string;
|
|
2108
|
+
blocked: string;
|
|
2109
|
+
personal_information: string;
|
|
2110
|
+
edit: string;
|
|
2111
|
+
gender: string;
|
|
2112
|
+
location: string;
|
|
2113
|
+
bio: string;
|
|
2114
|
+
social_links: string;
|
|
2115
|
+
add_link: string;
|
|
2116
|
+
no_social_links: string;
|
|
2117
|
+
open: string;
|
|
2118
|
+
copy: string;
|
|
2119
|
+
remove: string;
|
|
2024
2120
|
};
|
|
2025
2121
|
enum: {
|
|
2026
2122
|
male: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -159,6 +159,8 @@ declare const resources: {
|
|
|
159
159
|
email_invalid_local_chars: string;
|
|
160
160
|
email_invalid_domain: string;
|
|
161
161
|
password_is_required: string;
|
|
162
|
+
min_length: string;
|
|
163
|
+
max_length: string;
|
|
162
164
|
};
|
|
163
165
|
user_messages: {
|
|
164
166
|
verify_successful: string;
|
|
@@ -180,6 +182,8 @@ declare const resources: {
|
|
|
180
182
|
phone_number_changed_successfully: string;
|
|
181
183
|
account_deleted: string;
|
|
182
184
|
logout_successfull: string;
|
|
185
|
+
restore_account_successful: string;
|
|
186
|
+
account_deactivated: string;
|
|
183
187
|
};
|
|
184
188
|
common: {
|
|
185
189
|
login: string;
|
|
@@ -425,6 +429,26 @@ declare const resources: {
|
|
|
425
429
|
logout: string;
|
|
426
430
|
logout_desc: string;
|
|
427
431
|
logout_confirm: string;
|
|
432
|
+
restoring_account: string;
|
|
433
|
+
deactivate_account_desc: string;
|
|
434
|
+
confirm: string;
|
|
435
|
+
profile: string;
|
|
436
|
+
blocklist: string;
|
|
437
|
+
my_friends: string;
|
|
438
|
+
lastSeen: string;
|
|
439
|
+
friends: string;
|
|
440
|
+
blocked: string;
|
|
441
|
+
personal_information: string;
|
|
442
|
+
edit: string;
|
|
443
|
+
gender: string;
|
|
444
|
+
location: string;
|
|
445
|
+
bio: string;
|
|
446
|
+
social_links: string;
|
|
447
|
+
add_link: string;
|
|
448
|
+
no_social_links: string;
|
|
449
|
+
open: string;
|
|
450
|
+
copy: string;
|
|
451
|
+
remove: string;
|
|
428
452
|
};
|
|
429
453
|
enum: {
|
|
430
454
|
male: string;
|
|
@@ -691,6 +715,8 @@ declare const resources: {
|
|
|
691
715
|
email_invalid_local_chars: string;
|
|
692
716
|
email_invalid_domain: string;
|
|
693
717
|
password_is_required: string;
|
|
718
|
+
min_length: string;
|
|
719
|
+
max_length: string;
|
|
694
720
|
};
|
|
695
721
|
user_messages: {
|
|
696
722
|
verify_successful: string;
|
|
@@ -712,6 +738,8 @@ declare const resources: {
|
|
|
712
738
|
phone_number_changed_successfully: string;
|
|
713
739
|
account_deleted: string;
|
|
714
740
|
logout_successfull: string;
|
|
741
|
+
restore_account_successful: string;
|
|
742
|
+
account_deactivated: string;
|
|
715
743
|
};
|
|
716
744
|
common: {
|
|
717
745
|
login: string;
|
|
@@ -957,6 +985,26 @@ declare const resources: {
|
|
|
957
985
|
logout: string;
|
|
958
986
|
logout_desc: string;
|
|
959
987
|
logout_confirm: string;
|
|
988
|
+
restoring_account: string;
|
|
989
|
+
deactivate_account_desc: string;
|
|
990
|
+
confirm: string;
|
|
991
|
+
profile: string;
|
|
992
|
+
blocklist: string;
|
|
993
|
+
my_friends: string;
|
|
994
|
+
lastSeen: string;
|
|
995
|
+
friends: string;
|
|
996
|
+
blocked: string;
|
|
997
|
+
personal_information: string;
|
|
998
|
+
edit: string;
|
|
999
|
+
gender: string;
|
|
1000
|
+
location: string;
|
|
1001
|
+
bio: string;
|
|
1002
|
+
social_links: string;
|
|
1003
|
+
add_link: string;
|
|
1004
|
+
no_social_links: string;
|
|
1005
|
+
open: string;
|
|
1006
|
+
copy: string;
|
|
1007
|
+
remove: string;
|
|
960
1008
|
};
|
|
961
1009
|
enum: {
|
|
962
1010
|
male: string;
|
|
@@ -1223,6 +1271,8 @@ declare const resources: {
|
|
|
1223
1271
|
email_invalid_local_chars: string;
|
|
1224
1272
|
email_invalid_domain: string;
|
|
1225
1273
|
password_is_required: string;
|
|
1274
|
+
min_length: string;
|
|
1275
|
+
max_length: string;
|
|
1226
1276
|
};
|
|
1227
1277
|
user_messages: {
|
|
1228
1278
|
verify_successful: string;
|
|
@@ -1244,6 +1294,8 @@ declare const resources: {
|
|
|
1244
1294
|
phone_number_changed_successfully: string;
|
|
1245
1295
|
account_deleted: string;
|
|
1246
1296
|
logout_successfull: string;
|
|
1297
|
+
restore_account_successful: string;
|
|
1298
|
+
account_deactivated: string;
|
|
1247
1299
|
};
|
|
1248
1300
|
common: {
|
|
1249
1301
|
login: string;
|
|
@@ -1489,6 +1541,26 @@ declare const resources: {
|
|
|
1489
1541
|
logout: string;
|
|
1490
1542
|
logout_desc: string;
|
|
1491
1543
|
logout_confirm: string;
|
|
1544
|
+
restoring_account: string;
|
|
1545
|
+
deactivate_account_desc: string;
|
|
1546
|
+
confirm: string;
|
|
1547
|
+
profile: string;
|
|
1548
|
+
blocklist: string;
|
|
1549
|
+
my_friends: string;
|
|
1550
|
+
lastSeen: string;
|
|
1551
|
+
friends: string;
|
|
1552
|
+
blocked: string;
|
|
1553
|
+
personal_information: string;
|
|
1554
|
+
edit: string;
|
|
1555
|
+
gender: string;
|
|
1556
|
+
location: string;
|
|
1557
|
+
bio: string;
|
|
1558
|
+
social_links: string;
|
|
1559
|
+
add_link: string;
|
|
1560
|
+
no_social_links: string;
|
|
1561
|
+
open: string;
|
|
1562
|
+
copy: string;
|
|
1563
|
+
remove: string;
|
|
1492
1564
|
};
|
|
1493
1565
|
enum: {
|
|
1494
1566
|
male: string;
|
|
@@ -1755,6 +1827,8 @@ declare const resources: {
|
|
|
1755
1827
|
email_invalid_local_chars: string;
|
|
1756
1828
|
email_invalid_domain: string;
|
|
1757
1829
|
password_is_required: string;
|
|
1830
|
+
min_length: string;
|
|
1831
|
+
max_length: string;
|
|
1758
1832
|
};
|
|
1759
1833
|
user_messages: {
|
|
1760
1834
|
verify_successful: string;
|
|
@@ -1776,6 +1850,8 @@ declare const resources: {
|
|
|
1776
1850
|
phone_number_changed_successfully: string;
|
|
1777
1851
|
account_deleted: string;
|
|
1778
1852
|
logout_successfull: string;
|
|
1853
|
+
restore_account_successful: string;
|
|
1854
|
+
account_deactivated: string;
|
|
1779
1855
|
};
|
|
1780
1856
|
common: {
|
|
1781
1857
|
login: string;
|
|
@@ -2021,6 +2097,26 @@ declare const resources: {
|
|
|
2021
2097
|
logout: string;
|
|
2022
2098
|
logout_desc: string;
|
|
2023
2099
|
logout_confirm: string;
|
|
2100
|
+
restoring_account: string;
|
|
2101
|
+
deactivate_account_desc: string;
|
|
2102
|
+
confirm: string;
|
|
2103
|
+
profile: string;
|
|
2104
|
+
blocklist: string;
|
|
2105
|
+
my_friends: string;
|
|
2106
|
+
lastSeen: string;
|
|
2107
|
+
friends: string;
|
|
2108
|
+
blocked: string;
|
|
2109
|
+
personal_information: string;
|
|
2110
|
+
edit: string;
|
|
2111
|
+
gender: string;
|
|
2112
|
+
location: string;
|
|
2113
|
+
bio: string;
|
|
2114
|
+
social_links: string;
|
|
2115
|
+
add_link: string;
|
|
2116
|
+
no_social_links: string;
|
|
2117
|
+
open: string;
|
|
2118
|
+
copy: string;
|
|
2119
|
+
remove: string;
|
|
2024
2120
|
};
|
|
2025
2121
|
enum: {
|
|
2026
2122
|
male: string;
|