@candlerip/shared 0.0.133 → 0.0.134
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/cache/redis/workers/index.js +13 -9
- package/common/translation/translation-code/candle/candle-maintenance/config.d.ts +1 -1
- package/common/translation/translation-code/candle/candle-maintenance/config.js +4 -4
- package/common/translation/translation-code/page/common-page/config.d.ts +1 -1
- package/common/translation/translation-code/page/common-page/config.js +11 -11
- package/common/translation/translation-code/page/configs.d.ts +1 -1
- package/common/translation/translation-code/page/configs.js +106 -106
- package/common/translation/translation-code/page/excluded-page-translation-code/configs.js +3 -3
- package/common/translation/translation-code/page/excluded-page-translation-code/utils/compose-excluded-page-translation-codes/index.js +1 -1
- package/common/translation/translation-code/page/maps.d.ts +16 -16
- package/common/translation/translation-code/page/maps.js +95 -95
- package/common/translation/translation-code/page/utils/filter-page-translation-codes/index.js +1 -1
- package/common/translation/translation-code/person/person-maintenance/config.d.ts +1 -1
- package/common/translation/translation-code/person/person-maintenance/config.js +13 -13
- package/common/translation/translation-code/person/persons-list/config.d.ts +1 -1
- package/common/translation/translation-code/person/persons-list/config.js +2 -2
- package/package.json +1 -1
|
@@ -50,6 +50,7 @@ export const CacheWorker = (environmentMode, url, password, options) => {
|
|
|
50
50
|
let data;
|
|
51
51
|
try {
|
|
52
52
|
data = await client.json.get(cacheKey, { path: pathKeys });
|
|
53
|
+
console.error('DATA:', data, pathKeys);
|
|
53
54
|
if (!data || data?.length === 0) {
|
|
54
55
|
return {
|
|
55
56
|
customError: composeCustomError('No data in Redis'),
|
|
@@ -143,12 +144,15 @@ export const CacheWorker = (environmentMode, url, password, options) => {
|
|
|
143
144
|
set,
|
|
144
145
|
};
|
|
145
146
|
};
|
|
146
|
-
const
|
|
147
|
-
|
|
148
|
-
const
|
|
149
|
-
const resp = await
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
147
|
+
const cacheWorker = CacheWorker('production', 'redis://localhost:6379', 'redis_pwd', { isEnabled: true });
|
|
148
|
+
await new Promise((resolve) => setTimeout(resolve, 1000));
|
|
149
|
+
const { get, gets } = cacheWorker;
|
|
150
|
+
const resp = await get({ cacheKey: `terms-and-conditions-page-dictionary-hu`, objKeys: ['terms-and-conditions-page.disputesTitle'] });
|
|
151
|
+
console.error('*', resp);
|
|
152
|
+
if (resp.data) {
|
|
153
|
+
console.error(resp.data);
|
|
154
|
+
}
|
|
155
|
+
// const resp2 = await gets<any>([{ cacheKey: `terms-and-conditions-page-dictionary-hu` }]);
|
|
156
|
+
// if (resp2.data) {
|
|
157
|
+
// console.error(resp2.data, typeof resp2.data);
|
|
158
|
+
// }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const CANDLE_MAINTENANCE_TRANSLATION_CODES: readonly ["
|
|
1
|
+
export declare const CANDLE_MAINTENANCE_TRANSLATION_CODES: readonly ["auth_candleLitWarning", "reset", "candle_description", "form_error_maxLength", "form_error_required", "litName"];
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export const CANDLE_MAINTENANCE_TRANSLATION_CODES = [
|
|
2
|
-
'
|
|
2
|
+
'auth_candleLitWarning',
|
|
3
3
|
'reset',
|
|
4
|
-
'
|
|
5
|
-
'
|
|
6
|
-
'
|
|
4
|
+
'candle_description',
|
|
5
|
+
'form_error_maxLength',
|
|
6
|
+
'form_error_required',
|
|
7
7
|
'litName',
|
|
8
8
|
];
|
|
9
9
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const COMMON_PAGE_TRANSLATION_CODES: readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
1
|
+
export declare const COMMON_PAGE_TRANSLATION_CODES: readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook"];
|
|
@@ -4,23 +4,23 @@ export const COMMON_PAGE_TRANSLATION_CODES = [
|
|
|
4
4
|
'customize',
|
|
5
5
|
'rejectAll',
|
|
6
6
|
'save',
|
|
7
|
-
'
|
|
8
|
-
'
|
|
9
|
-
'
|
|
7
|
+
'cookieConsentForm_description',
|
|
8
|
+
'cookieConsentForm_languageFormDescription',
|
|
9
|
+
'cookieConsentForm_title',
|
|
10
10
|
'author',
|
|
11
11
|
'motto1',
|
|
12
12
|
'motto2',
|
|
13
13
|
'motto3',
|
|
14
14
|
'login',
|
|
15
15
|
'logout',
|
|
16
|
-
'
|
|
17
|
-
'
|
|
18
|
-
'
|
|
19
|
-
'
|
|
20
|
-
'
|
|
21
|
-
'
|
|
22
|
-
'
|
|
23
|
-
'
|
|
16
|
+
'pageMenu_add-person-page',
|
|
17
|
+
'pageMenu_candles-page',
|
|
18
|
+
'pageMenu_contact-page',
|
|
19
|
+
'pageMenu_cookie-policy-page',
|
|
20
|
+
'pageMenu_help-page',
|
|
21
|
+
'pageMenu_persons-page',
|
|
22
|
+
'pageMenu_persons-map-page',
|
|
23
|
+
'pageMenu_terms-and-conditions-page',
|
|
24
24
|
'more',
|
|
25
25
|
'shareOnFacebook',
|
|
26
26
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PAGE_TRANSLATION_CODES: readonly ["acceptAll", "add-person-page", "add-person-
|
|
1
|
+
export declare const PAGE_TRANSLATION_CODES: readonly ["acceptAll", "add-person-page", "add-person-page_maintenance_submitError", "add-person-page_maintenance_submitSuccess", "auth_cannotBeChangedLaterWarning", "auth_candleLitWarning", "auth_loginRequired", "author", "burnedCandles", "burnedOutCandle", "burningCandles", "burningEndsAt", "burningStartsAt", "burnsSoFar", "candleNotFound", "cancel", "candle-details-page", "candle-details-page_deleteCandle_submitError", "candle-details-page_deleteCandle_submitSuccess", "candle-details-page_deleteCandle_question", "candle-details-page_deleteCandle", "candle-details-page_myCandle_submitError", "candle-details-page_myCandle_submitSuccess", "candle-details-page_myCandle_loginRequired", "candle-details-page_myCandle_question", "candle-details-page_myCandle", "candle-details-page_relightCandle_submitError", "candle-details-page_relightCandle_submitSuccess", "candle-details-page_relightCandle_question", "candle-details-page_relightCandle", "candle", "candlesInCount", "candles", "candles-page", "candle_description", "caseSensitive", "contact-page", "contact-page_infoTitle", "contact-page_sendMessage_submitError", "contact-page_sendMessage_submitSuccess", "contact-page_sendMessageTitle", "cookieConsentForm_title", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookie-policy-page", "count", "createdAt", "customize", "dropZone_acceptedFormats", "dropZone_drapActive", "dropZone_dropZone", "dropZone_sizeLimit", "edit-candle-page", "edit-candle-page_maintenance_submitError", "edit-candle-page_maintenance_submitSuccess", "edit-person-page", "edit-person-page_maintenance_submitError", "edit-person-page_maintenance_submitSuccess", "email", "errorLoadingData", "facebook", "help-page_addPersonRule1", "help-page_addPersonRule2", "help-page_addPersonRule3", "help-page_addPersonRule4", "help-page_addPersonTitle", "help-page_candlesParagraph1", "help-page_candlesParagraph2", "help-page_candlesParagraph3", "help-page_intro", "help-page_lightACandleRule1", "help-page_lightACandleRule2", "help-page_lightACandleTitle", "help-page_personsParagraph", "help-page", "home-page", "home-page_proposal", "home-page_lastLitCandles", "home-page_lastUploadedPersons", "home-page_quickCandleLighting_placeOfTheCandle_placehodler", "home-page_quickCandleLighting", "home-page_statistics", "home-page_welcome_description1", "home-page_welcome_description2", "home-page_welcome", "form_error_date", "form_error_email", "form_error_invalid", "form_error_maxLength", "form_error_message", "form_error_required", "image", "invalidImage", "noMoreImages", "tooBigImage", "imageCannotBeLoaded", "imageClickToSeeOriginal", "imageNotSet", "lightACandle", "light-candle-page", "light-candle-page_maintenance_submitError", "light-candle-page_maintenance_submitSuccess", "lightTheCandle", "litName", "loading", "login", "loginPage_login_submitError", "loginPage_login_showPassword", "logout", "map", "message", "modify", "more", "motto1", "motto2", "motto3", "myCandles", "myPersons", "name", "ok", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "page-not-found", "password", "person", "personNotFound", "person_birthDate", "person_birthPlaceCountry", "person_deathDate", "person_description", "person_name", "person-candles-page", "person-candles-page_addCandle_description", "person-details-page", "person-details-page_deletePerson_submitError", "person-details-page_deletePerson_submitSuccess", "person-details-page_deletePerson_question", "person-details-page_deletePerson", "person-details-page_myPerson_submitError", "person-details-page_myPerson_submitSuccess", "person-details-page_myPerson_loginRequired", "person-details-page_myPerson_question", "person-details-page_myPerson", "persons-page", "persons", "personsInCount", "persons-page_addPerson_description", "persons-page_personsList_hasImage", "persons-page_personsList", "persons-map-page_map_description", "persons-map-page", "proposable", "redirecting", "rejectAll", "reset", "save", "savedSuccessfully", "select", "send", "shareOnFacebook", "sort", "subject", "terms-and-conditions-page_applicableLawParagraph", "terms-and-conditions-page_applicableLawTitle", "terms-and-conditions-page_conditionsOfUseParagraph", "terms-and-conditions-page_conditionsOfUseTitle", "terms-and-conditions-page_disputesParagraph", "terms-and-conditions-page_disputesTitle", "terms-and-conditions-page_intellectualPropertyParagraph", "terms-and-conditions-page_intellectualPropertyTitle", "terms-and-conditions-page_intro", "terms-and-conditions-page_limitationAndLiabilityParagraph", "terms-and-conditions-page_limitationAndLiabilityTitle", "terms-and-conditions-page", "terms-and-conditions-page_userAccountsParagraph", "terms-and-conditions-page_userAccountsTitle", "username"];
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
export const PAGE_TRANSLATION_CODES = [
|
|
3
3
|
'acceptAll',
|
|
4
4
|
'add-person-page',
|
|
5
|
-
'add-person-
|
|
6
|
-
'add-person-
|
|
7
|
-
'
|
|
8
|
-
'
|
|
9
|
-
'
|
|
5
|
+
'add-person-page_maintenance_submitError',
|
|
6
|
+
'add-person-page_maintenance_submitSuccess',
|
|
7
|
+
'auth_cannotBeChangedLaterWarning',
|
|
8
|
+
'auth_candleLitWarning',
|
|
9
|
+
'auth_loginRequired',
|
|
10
10
|
'author',
|
|
11
11
|
'burnedCandles',
|
|
12
12
|
'burnedOutCandle',
|
|
@@ -17,80 +17,80 @@ export const PAGE_TRANSLATION_CODES = [
|
|
|
17
17
|
'candleNotFound',
|
|
18
18
|
'cancel',
|
|
19
19
|
'candle-details-page',
|
|
20
|
-
'candle-details-
|
|
21
|
-
'candle-details-
|
|
22
|
-
'candle-details-
|
|
23
|
-
'candle-details-
|
|
24
|
-
'candle-details-
|
|
25
|
-
'candle-details-
|
|
26
|
-
'candle-details-
|
|
27
|
-
'candle-details-
|
|
28
|
-
'candle-details-
|
|
29
|
-
'candle-details-
|
|
30
|
-
'candle-details-
|
|
31
|
-
'candle-details-
|
|
32
|
-
'candle-details-
|
|
20
|
+
'candle-details-page_deleteCandle_submitError',
|
|
21
|
+
'candle-details-page_deleteCandle_submitSuccess',
|
|
22
|
+
'candle-details-page_deleteCandle_question',
|
|
23
|
+
'candle-details-page_deleteCandle',
|
|
24
|
+
'candle-details-page_myCandle_submitError',
|
|
25
|
+
'candle-details-page_myCandle_submitSuccess',
|
|
26
|
+
'candle-details-page_myCandle_loginRequired',
|
|
27
|
+
'candle-details-page_myCandle_question',
|
|
28
|
+
'candle-details-page_myCandle',
|
|
29
|
+
'candle-details-page_relightCandle_submitError',
|
|
30
|
+
'candle-details-page_relightCandle_submitSuccess',
|
|
31
|
+
'candle-details-page_relightCandle_question',
|
|
32
|
+
'candle-details-page_relightCandle',
|
|
33
33
|
'candle',
|
|
34
34
|
'candlesInCount',
|
|
35
35
|
'candles',
|
|
36
36
|
'candles-page',
|
|
37
|
-
'
|
|
37
|
+
'candle_description',
|
|
38
38
|
'caseSensitive',
|
|
39
39
|
'contact-page',
|
|
40
|
-
'contact-
|
|
41
|
-
'contact-
|
|
42
|
-
'contact-
|
|
43
|
-
'contact-
|
|
44
|
-
'
|
|
45
|
-
'
|
|
46
|
-
'
|
|
40
|
+
'contact-page_infoTitle',
|
|
41
|
+
'contact-page_sendMessage_submitError',
|
|
42
|
+
'contact-page_sendMessage_submitSuccess',
|
|
43
|
+
'contact-page_sendMessageTitle',
|
|
44
|
+
'cookieConsentForm_title',
|
|
45
|
+
'cookieConsentForm_description',
|
|
46
|
+
'cookieConsentForm_languageFormDescription',
|
|
47
47
|
'cookie-policy-page',
|
|
48
48
|
'count',
|
|
49
49
|
'createdAt',
|
|
50
50
|
'customize',
|
|
51
|
-
'
|
|
52
|
-
'
|
|
53
|
-
'
|
|
54
|
-
'
|
|
51
|
+
'dropZone_acceptedFormats',
|
|
52
|
+
'dropZone_drapActive',
|
|
53
|
+
'dropZone_dropZone',
|
|
54
|
+
'dropZone_sizeLimit',
|
|
55
55
|
'edit-candle-page',
|
|
56
|
-
'edit-candle-
|
|
57
|
-
'edit-candle-
|
|
56
|
+
'edit-candle-page_maintenance_submitError',
|
|
57
|
+
'edit-candle-page_maintenance_submitSuccess',
|
|
58
58
|
'edit-person-page',
|
|
59
|
-
'edit-person-
|
|
60
|
-
'edit-person-
|
|
59
|
+
'edit-person-page_maintenance_submitError',
|
|
60
|
+
'edit-person-page_maintenance_submitSuccess',
|
|
61
61
|
'email',
|
|
62
62
|
'errorLoadingData',
|
|
63
63
|
'facebook',
|
|
64
|
-
'help-
|
|
65
|
-
'help-
|
|
66
|
-
'help-
|
|
67
|
-
'help-
|
|
68
|
-
'help-
|
|
69
|
-
'help-
|
|
70
|
-
'help-
|
|
71
|
-
'help-
|
|
72
|
-
'help-
|
|
73
|
-
'help-
|
|
74
|
-
'help-
|
|
75
|
-
'help-
|
|
76
|
-
'help-
|
|
64
|
+
'help-page_addPersonRule1',
|
|
65
|
+
'help-page_addPersonRule2',
|
|
66
|
+
'help-page_addPersonRule3',
|
|
67
|
+
'help-page_addPersonRule4',
|
|
68
|
+
'help-page_addPersonTitle',
|
|
69
|
+
'help-page_candlesParagraph1',
|
|
70
|
+
'help-page_candlesParagraph2',
|
|
71
|
+
'help-page_candlesParagraph3',
|
|
72
|
+
'help-page_intro',
|
|
73
|
+
'help-page_lightACandleRule1',
|
|
74
|
+
'help-page_lightACandleRule2',
|
|
75
|
+
'help-page_lightACandleTitle',
|
|
76
|
+
'help-page_personsParagraph',
|
|
77
77
|
'help-page',
|
|
78
78
|
'home-page',
|
|
79
|
-
'home-
|
|
80
|
-
'home-
|
|
81
|
-
'home-
|
|
82
|
-
'home-
|
|
83
|
-
'home-
|
|
84
|
-
'home-
|
|
85
|
-
'home-
|
|
86
|
-
'home-
|
|
87
|
-
'home-
|
|
88
|
-
'
|
|
89
|
-
'
|
|
90
|
-
'
|
|
91
|
-
'
|
|
92
|
-
'
|
|
93
|
-
'
|
|
79
|
+
'home-page_proposal',
|
|
80
|
+
'home-page_lastLitCandles',
|
|
81
|
+
'home-page_lastUploadedPersons',
|
|
82
|
+
'home-page_quickCandleLighting_placeOfTheCandle_placehodler',
|
|
83
|
+
'home-page_quickCandleLighting',
|
|
84
|
+
'home-page_statistics',
|
|
85
|
+
'home-page_welcome_description1',
|
|
86
|
+
'home-page_welcome_description2',
|
|
87
|
+
'home-page_welcome',
|
|
88
|
+
'form_error_date',
|
|
89
|
+
'form_error_email',
|
|
90
|
+
'form_error_invalid',
|
|
91
|
+
'form_error_maxLength',
|
|
92
|
+
'form_error_message',
|
|
93
|
+
'form_error_required',
|
|
94
94
|
'image',
|
|
95
95
|
'invalidImage',
|
|
96
96
|
'noMoreImages',
|
|
@@ -100,14 +100,14 @@ export const PAGE_TRANSLATION_CODES = [
|
|
|
100
100
|
'imageNotSet',
|
|
101
101
|
'lightACandle',
|
|
102
102
|
'light-candle-page',
|
|
103
|
-
'light-candle-
|
|
104
|
-
'light-candle-
|
|
103
|
+
'light-candle-page_maintenance_submitError',
|
|
104
|
+
'light-candle-page_maintenance_submitSuccess',
|
|
105
105
|
'lightTheCandle',
|
|
106
106
|
'litName',
|
|
107
107
|
'loading',
|
|
108
108
|
'login',
|
|
109
|
-
'
|
|
110
|
-
'
|
|
109
|
+
'loginPage_login_submitError',
|
|
110
|
+
'loginPage_login_showPassword',
|
|
111
111
|
'logout',
|
|
112
112
|
'map',
|
|
113
113
|
'message',
|
|
@@ -120,42 +120,42 @@ export const PAGE_TRANSLATION_CODES = [
|
|
|
120
120
|
'myPersons',
|
|
121
121
|
'name',
|
|
122
122
|
'ok',
|
|
123
|
-
'
|
|
124
|
-
'
|
|
125
|
-
'
|
|
126
|
-
'
|
|
127
|
-
'
|
|
128
|
-
'
|
|
129
|
-
'
|
|
130
|
-
'
|
|
123
|
+
'pageMenu_add-person-page',
|
|
124
|
+
'pageMenu_candles-page',
|
|
125
|
+
'pageMenu_contact-page',
|
|
126
|
+
'pageMenu_cookie-policy-page',
|
|
127
|
+
'pageMenu_help-page',
|
|
128
|
+
'pageMenu_persons-page',
|
|
129
|
+
'pageMenu_persons-map-page',
|
|
130
|
+
'pageMenu_terms-and-conditions-page',
|
|
131
131
|
'page-not-found',
|
|
132
132
|
'password',
|
|
133
133
|
'person',
|
|
134
134
|
'personNotFound',
|
|
135
|
-
'
|
|
136
|
-
'
|
|
137
|
-
'
|
|
138
|
-
'
|
|
139
|
-
'
|
|
135
|
+
'person_birthDate',
|
|
136
|
+
'person_birthPlaceCountry',
|
|
137
|
+
'person_deathDate',
|
|
138
|
+
'person_description',
|
|
139
|
+
'person_name',
|
|
140
140
|
'person-candles-page',
|
|
141
|
-
'person-candles-
|
|
141
|
+
'person-candles-page_addCandle_description',
|
|
142
142
|
'person-details-page',
|
|
143
|
-
'person-details-
|
|
144
|
-
'person-details-
|
|
145
|
-
'person-details-
|
|
146
|
-
'person-details-
|
|
147
|
-
'person-details-
|
|
148
|
-
'person-details-
|
|
149
|
-
'person-details-
|
|
150
|
-
'person-details-
|
|
151
|
-
'person-details-
|
|
143
|
+
'person-details-page_deletePerson_submitError',
|
|
144
|
+
'person-details-page_deletePerson_submitSuccess',
|
|
145
|
+
'person-details-page_deletePerson_question',
|
|
146
|
+
'person-details-page_deletePerson',
|
|
147
|
+
'person-details-page_myPerson_submitError',
|
|
148
|
+
'person-details-page_myPerson_submitSuccess',
|
|
149
|
+
'person-details-page_myPerson_loginRequired',
|
|
150
|
+
'person-details-page_myPerson_question',
|
|
151
|
+
'person-details-page_myPerson',
|
|
152
152
|
'persons-page',
|
|
153
153
|
'persons',
|
|
154
154
|
'personsInCount',
|
|
155
|
-
'persons-
|
|
156
|
-
'persons-
|
|
157
|
-
'persons-
|
|
158
|
-
'persons-map-
|
|
155
|
+
'persons-page_addPerson_description',
|
|
156
|
+
'persons-page_personsList_hasImage',
|
|
157
|
+
'persons-page_personsList',
|
|
158
|
+
'persons-map-page_map_description',
|
|
159
159
|
'persons-map-page',
|
|
160
160
|
'proposable',
|
|
161
161
|
'redirecting',
|
|
@@ -168,19 +168,19 @@ export const PAGE_TRANSLATION_CODES = [
|
|
|
168
168
|
'shareOnFacebook',
|
|
169
169
|
'sort',
|
|
170
170
|
'subject',
|
|
171
|
-
'terms-and-conditions-
|
|
172
|
-
'terms-and-conditions-
|
|
173
|
-
'terms-and-conditions-
|
|
174
|
-
'terms-and-conditions-
|
|
175
|
-
'terms-and-conditions-
|
|
176
|
-
'terms-and-conditions-
|
|
177
|
-
'terms-and-conditions-
|
|
178
|
-
'terms-and-conditions-
|
|
179
|
-
'terms-and-conditions-
|
|
180
|
-
'terms-and-conditions-
|
|
181
|
-
'terms-and-conditions-
|
|
171
|
+
'terms-and-conditions-page_applicableLawParagraph',
|
|
172
|
+
'terms-and-conditions-page_applicableLawTitle',
|
|
173
|
+
'terms-and-conditions-page_conditionsOfUseParagraph',
|
|
174
|
+
'terms-and-conditions-page_conditionsOfUseTitle',
|
|
175
|
+
'terms-and-conditions-page_disputesParagraph',
|
|
176
|
+
'terms-and-conditions-page_disputesTitle',
|
|
177
|
+
'terms-and-conditions-page_intellectualPropertyParagraph',
|
|
178
|
+
'terms-and-conditions-page_intellectualPropertyTitle',
|
|
179
|
+
'terms-and-conditions-page_intro',
|
|
180
|
+
'terms-and-conditions-page_limitationAndLiabilityParagraph',
|
|
181
|
+
'terms-and-conditions-page_limitationAndLiabilityTitle',
|
|
182
182
|
'terms-and-conditions-page',
|
|
183
|
-
'terms-and-conditions-
|
|
184
|
-
'terms-and-conditions-
|
|
183
|
+
'terms-and-conditions-page_userAccountsParagraph',
|
|
184
|
+
'terms-and-conditions-page_userAccountsTitle',
|
|
185
185
|
'username',
|
|
186
186
|
];
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export const EXCLUDED_PAGE_TRANSLATION_CODES = {
|
|
2
2
|
cookieConsent: [
|
|
3
3
|
'acceptAll',
|
|
4
|
-
'
|
|
5
|
-
'
|
|
6
|
-
'
|
|
4
|
+
'cookieConsentForm_description',
|
|
5
|
+
'cookieConsentForm_languageFormDescription',
|
|
6
|
+
'cookieConsentForm_title',
|
|
7
7
|
'cookie-policy-page',
|
|
8
8
|
'customize',
|
|
9
9
|
'rejectAll',
|
|
@@ -12,7 +12,7 @@ export const composeExcludedPageTranslationCodes = (props) => {
|
|
|
12
12
|
excludedIds = excludedIds.concat(EXCLUDED_PAGE_TRANSLATION_CODES.cookieConsent);
|
|
13
13
|
}
|
|
14
14
|
if (isPageMenu(page)) {
|
|
15
|
-
excludedIds.push(`
|
|
15
|
+
excludedIds.push(`pageMenu_${page}`);
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
return excludedIds;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
export declare const PAGE_TRANSLATION_CODES_MAP: {
|
|
2
|
-
readonly 'add-person-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
3
|
-
readonly 'candle-details-page': readonly ["
|
|
4
|
-
readonly 'candles-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
5
|
-
readonly 'common-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
6
|
-
readonly 'contact-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
7
|
-
readonly 'cookie-policy-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
8
|
-
readonly 'edit-candle-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
9
|
-
readonly 'edit-person-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
10
|
-
readonly 'help-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
11
|
-
readonly 'home-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
12
|
-
readonly 'light-candle-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
13
|
-
readonly 'person-candles-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
14
|
-
readonly 'person-details-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
15
|
-
readonly 'persons-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
16
|
-
readonly 'persons-map-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
17
|
-
readonly 'terms-and-conditions-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "
|
|
2
|
+
readonly 'add-person-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "persons", "auth_cannotBeChangedLaterWarning", "auth_loginRequired", "add-person-page", "modify", "reset", "count", "dropZone_acceptedFormats", "dropZone_drapActive", "dropZone_dropZone", "dropZone_sizeLimit", "invalidImage", "tooBigImage", "image", "noMoreImages", "form_error_date", "person_birthDate", "person_birthPlaceCountry", "person_deathDate", "person_description", "select", "form_error_maxLength", "proposable", "form_error_required", "name", "add-person-page", "person-details-page", "add-person-page_maintenance_submitError", "add-person-page_maintenance_submitSuccess", "errorLoadingData", "loading", "persons-page"];
|
|
3
|
+
readonly 'candle-details-page': readonly ["auth_loginRequired", "acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "person-candles-page", "imageCannotBeLoaded", "burnsSoFar", "burnedOutCandle", "candle_description", "litName", "candle-details-page_deleteCandle_submitError", "candle-details-page_deleteCandle_submitSuccess", "candle-details-page_deleteCandle_question", "candle-details-page_deleteCandle", "candle-details-page_myCandle_submitError", "candle-details-page_myCandle_submitSuccess", "candle-details-page_myCandle_loginRequired", "candle-details-page_myCandle_question", "candle-details-page_myCandle", "candle-details-page_relightCandle_submitError", "candle-details-page_relightCandle_submitSuccess", "candle-details-page_relightCandle_question", "candle-details-page_relightCandle", "cancel", "ok", "edit-candle-page", "candle-details-page", "person-details-page"];
|
|
4
|
+
readonly 'candles-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "imageCannotBeLoaded", "burnedOutCandle", "burnsSoFar", "select", "burningEndsAt", "burningStartsAt", "burnedCandles", "burningCandles", "myCandles", "createdAt", "litName", "candles", "candle", "candlesInCount", "reset", "sort", "candles", "candles-page"];
|
|
5
|
+
readonly 'common-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook"];
|
|
6
|
+
readonly 'contact-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "contact-page_infoTitle", "contact-page_sendMessage_submitError", "contact-page_sendMessage_submitSuccess", "contact-page_sendMessageTitle", "contact-page", "email", "form_error_email", "form_error_invalid", "form_error_required", "reset", "send", "message", "name", "subject", "facebook"];
|
|
7
|
+
readonly 'cookie-policy-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "acceptAll", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookie-policy-page"];
|
|
8
|
+
readonly 'edit-candle-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "candle-details-page", "auth_candleLitWarning", "reset", "candle_description", "form_error_maxLength", "form_error_required", "litName", "edit-candle-page", "modify", "edit-candle-page_maintenance_submitError", "edit-candle-page_maintenance_submitSuccess"];
|
|
9
|
+
readonly 'edit-person-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "edit-person-page", "auth_cannotBeChangedLaterWarning", "auth_loginRequired", "add-person-page", "modify", "reset", "count", "dropZone_acceptedFormats", "dropZone_drapActive", "dropZone_dropZone", "dropZone_sizeLimit", "invalidImage", "tooBigImage", "image", "noMoreImages", "form_error_date", "person_birthDate", "person_birthPlaceCountry", "person_deathDate", "person_description", "select", "form_error_maxLength", "proposable", "form_error_required", "name", "person-details-page", "edit-person-page_maintenance_submitError", "edit-person-page_maintenance_submitSuccess"];
|
|
10
|
+
readonly 'help-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "help-page", "help-page_intro", "persons", "help-page_personsParagraph", "help-page_addPersonTitle", "help-page_addPersonRule1", "help-page_addPersonRule2", "help-page_addPersonRule3", "help-page_addPersonRule4", "candles", "help-page_candlesParagraph1", "help-page_candlesParagraph2", "help-page_candlesParagraph3", "help-page_lightACandleTitle", "help-page_lightACandleRule1", "help-page_lightACandleRule2"];
|
|
11
|
+
readonly 'home-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "lightACandle", "imageCannotBeLoaded", "imageClickToSeeOriginal", "imageNotSet", "imageCannotBeLoaded", "burnedOutCandle", "burnsSoFar", "candles", "home-page_lastLitCandles", "burnedCandles", "burningCandles", "imageCannotBeLoaded", "imageClickToSeeOriginal", "imageNotSet", "lightACandle", "persons", "home-page_lastUploadedPersons", "auth_cannotBeChangedLaterWarning", "more", "reset", "light-candle-page_maintenance_submitError", "lightTheCandle", "light-candle-page_maintenance_submitSuccess", "form_error_maxLength", "person_name", "form_error_required", "litName", "burnedCandles", "burningCandles", "candles", "persons", "home-page_statistics", "add-person-page", "auth_cannotBeChangedLaterWarning", "home-page_welcome_description1", "home-page_welcome_description2", "home-page_welcome", "persons-map-page", "home-page_proposal", "home-page"];
|
|
12
|
+
readonly 'light-candle-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "person-candles-page", "auth_candleLitWarning", "reset", "candle_description", "form_error_maxLength", "form_error_required", "litName", "lightTheCandle", "light-candle-page_maintenance_submitError", "light-candle-page_maintenance_submitSuccess", "light-candle-page"];
|
|
13
|
+
readonly 'person-candles-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "auth_cannotBeChangedLaterWarning", "auth_candleLitWarning", "light-candle-page", "person-candles-page_addCandle_description", "imageCannotBeLoaded", "imageClickToSeeOriginal", "imageNotSet", "imageCannotBeLoaded", "burnedOutCandle", "burnsSoFar", "select", "burningEndsAt", "burningStartsAt", "burnedCandles", "burningCandles", "myCandles", "createdAt", "litName", "candles", "candle", "candlesInCount", "reset", "sort", "person-candles-page", "person-details-page"];
|
|
14
|
+
readonly 'person-details-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "person-candles-page", "persons", "person_birthDate", "person_birthPlaceCountry", "person_deathDate", "person_description", "proposable", "burnedCandles", "burningCandles", "person-details-page_deletePerson_submitError", "cancel", "ok", "person-details-page_deletePerson_submitSuccess", "person-details-page_deletePerson_question", "person-details-page_deletePerson", "person-details-page_myPerson_submitError", "person-details-page_myPerson_submitSuccess", "person-details-page_myPerson_loginRequired", "person-details-page_myPerson_question", "person-details-page_myPerson", "edit-person-page", "imageCannotBeLoaded", "imageClickToSeeOriginal", "imageNotSet", "person-details-page", "persons-page", "auth_loginRequired"];
|
|
15
|
+
readonly 'persons-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "auth_cannotBeChangedLaterWarning", "persons-page_addPerson_description", "login", "add-person-page", "burnedCandles", "burningCandles", "imageCannotBeLoaded", "imageClickToSeeOriginal", "imageNotSet", "lightACandle", "personsInCount", "person", "reset", "sort", "name", "caseSensitive", "myPersons", "select", "persons-map-page", "person_birthPlaceCountry", "persons", "persons-page_personsList_hasImage", "createdAt", "caseSensitive", "myPersons", "persons-page_personsList_hasImage", "name", "person_birthPlaceCountry", "person", "personsInCount", "reset", "sort", "createdAt", "name", "persons-page_personsList", "persons", "persons-map-page", "persons-page", "loading"];
|
|
16
|
+
readonly 'persons-map-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "persons-map-page_map_description", "persons-map-page", "map"];
|
|
17
|
+
readonly 'terms-and-conditions-page': readonly ["acceptAll", "cookie-policy-page", "customize", "rejectAll", "save", "cookieConsentForm_description", "cookieConsentForm_languageFormDescription", "cookieConsentForm_title", "author", "motto1", "motto2", "motto3", "login", "logout", "pageMenu_add-person-page", "pageMenu_candles-page", "pageMenu_contact-page", "pageMenu_cookie-policy-page", "pageMenu_help-page", "pageMenu_persons-page", "pageMenu_persons-map-page", "pageMenu_terms-and-conditions-page", "more", "shareOnFacebook", "terms-and-conditions-page_intro", "terms-and-conditions-page_conditionsOfUseTitle", "terms-and-conditions-page_conditionsOfUseParagraph", "terms-and-conditions-page_intellectualPropertyTitle", "terms-and-conditions-page_intellectualPropertyParagraph", "terms-and-conditions-page_userAccountsTitle", "terms-and-conditions-page_userAccountsParagraph", "terms-and-conditions-page_applicableLawTitle", "terms-and-conditions-page_applicableLawParagraph", "terms-and-conditions-page_disputesTitle", "terms-and-conditions-page_disputesParagraph", "terms-and-conditions-page_limitationAndLiabilityTitle", "terms-and-conditions-page_limitationAndLiabilityParagraph", "terms-and-conditions-page"];
|
|
18
18
|
};
|
|
@@ -8,34 +8,34 @@ export const PAGE_TRANSLATION_CODES_MAP = {
|
|
|
8
8
|
...PERSON_MAINTENANCE_TRANSLATION_CODES,
|
|
9
9
|
'add-person-page',
|
|
10
10
|
'person-details-page',
|
|
11
|
-
'add-person-
|
|
12
|
-
'add-person-
|
|
11
|
+
'add-person-page_maintenance_submitError',
|
|
12
|
+
'add-person-page_maintenance_submitSuccess',
|
|
13
13
|
'errorLoadingData',
|
|
14
14
|
'loading',
|
|
15
15
|
'persons-page',
|
|
16
16
|
],
|
|
17
17
|
'candle-details-page': [
|
|
18
|
-
'
|
|
18
|
+
'auth_loginRequired',
|
|
19
19
|
...COMMON_PAGE_TRANSLATION_CODES,
|
|
20
20
|
'person-candles-page',
|
|
21
21
|
...CANDLE_IMAGE_TRANSLATION_CODES,
|
|
22
22
|
'burnsSoFar',
|
|
23
23
|
'burnedOutCandle',
|
|
24
|
-
'
|
|
24
|
+
'candle_description',
|
|
25
25
|
'litName',
|
|
26
|
-
'candle-details-
|
|
27
|
-
'candle-details-
|
|
28
|
-
'candle-details-
|
|
29
|
-
'candle-details-
|
|
30
|
-
'candle-details-
|
|
31
|
-
'candle-details-
|
|
32
|
-
'candle-details-
|
|
33
|
-
'candle-details-
|
|
34
|
-
'candle-details-
|
|
35
|
-
'candle-details-
|
|
36
|
-
'candle-details-
|
|
37
|
-
'candle-details-
|
|
38
|
-
'candle-details-
|
|
26
|
+
'candle-details-page_deleteCandle_submitError',
|
|
27
|
+
'candle-details-page_deleteCandle_submitSuccess',
|
|
28
|
+
'candle-details-page_deleteCandle_question',
|
|
29
|
+
'candle-details-page_deleteCandle',
|
|
30
|
+
'candle-details-page_myCandle_submitError',
|
|
31
|
+
'candle-details-page_myCandle_submitSuccess',
|
|
32
|
+
'candle-details-page_myCandle_loginRequired',
|
|
33
|
+
'candle-details-page_myCandle_question',
|
|
34
|
+
'candle-details-page_myCandle',
|
|
35
|
+
'candle-details-page_relightCandle_submitError',
|
|
36
|
+
'candle-details-page_relightCandle_submitSuccess',
|
|
37
|
+
'candle-details-page_relightCandle_question',
|
|
38
|
+
'candle-details-page_relightCandle',
|
|
39
39
|
'cancel',
|
|
40
40
|
'ok',
|
|
41
41
|
'edit-candle-page',
|
|
@@ -46,15 +46,15 @@ export const PAGE_TRANSLATION_CODES_MAP = {
|
|
|
46
46
|
'common-page': COMMON_PAGE_TRANSLATION_CODES,
|
|
47
47
|
'contact-page': [
|
|
48
48
|
...COMMON_PAGE_TRANSLATION_CODES,
|
|
49
|
-
'contact-
|
|
50
|
-
'contact-
|
|
51
|
-
'contact-
|
|
52
|
-
'contact-
|
|
49
|
+
'contact-page_infoTitle',
|
|
50
|
+
'contact-page_sendMessage_submitError',
|
|
51
|
+
'contact-page_sendMessage_submitSuccess',
|
|
52
|
+
'contact-page_sendMessageTitle',
|
|
53
53
|
'contact-page',
|
|
54
54
|
'email',
|
|
55
|
-
'
|
|
56
|
-
'
|
|
57
|
-
'
|
|
55
|
+
'form_error_email',
|
|
56
|
+
'form_error_invalid',
|
|
57
|
+
'form_error_required',
|
|
58
58
|
'reset',
|
|
59
59
|
'send',
|
|
60
60
|
'message',
|
|
@@ -67,8 +67,8 @@ export const PAGE_TRANSLATION_CODES_MAP = {
|
|
|
67
67
|
'acceptAll',
|
|
68
68
|
'rejectAll',
|
|
69
69
|
'save',
|
|
70
|
-
'
|
|
71
|
-
'
|
|
70
|
+
'cookieConsentForm_description',
|
|
71
|
+
'cookieConsentForm_languageFormDescription',
|
|
72
72
|
'cookie-policy-page',
|
|
73
73
|
],
|
|
74
74
|
'edit-candle-page': [
|
|
@@ -77,35 +77,35 @@ export const PAGE_TRANSLATION_CODES_MAP = {
|
|
|
77
77
|
...CANDLE_MAINTENANCE_TRANSLATION_CODES,
|
|
78
78
|
'edit-candle-page',
|
|
79
79
|
'modify',
|
|
80
|
-
'edit-candle-
|
|
81
|
-
'edit-candle-
|
|
80
|
+
'edit-candle-page_maintenance_submitError',
|
|
81
|
+
'edit-candle-page_maintenance_submitSuccess',
|
|
82
82
|
],
|
|
83
83
|
'edit-person-page': [
|
|
84
84
|
...COMMON_PAGE_TRANSLATION_CODES,
|
|
85
85
|
'edit-person-page',
|
|
86
86
|
...PERSON_MAINTENANCE_TRANSLATION_CODES,
|
|
87
87
|
'person-details-page',
|
|
88
|
-
'edit-person-
|
|
89
|
-
'edit-person-
|
|
88
|
+
'edit-person-page_maintenance_submitError',
|
|
89
|
+
'edit-person-page_maintenance_submitSuccess',
|
|
90
90
|
],
|
|
91
91
|
'help-page': [
|
|
92
92
|
...COMMON_PAGE_TRANSLATION_CODES,
|
|
93
93
|
'help-page',
|
|
94
|
-
'help-
|
|
94
|
+
'help-page_intro',
|
|
95
95
|
'persons',
|
|
96
|
-
'help-
|
|
97
|
-
'help-
|
|
98
|
-
'help-
|
|
99
|
-
'help-
|
|
100
|
-
'help-
|
|
101
|
-
'help-
|
|
96
|
+
'help-page_personsParagraph',
|
|
97
|
+
'help-page_addPersonTitle',
|
|
98
|
+
'help-page_addPersonRule1',
|
|
99
|
+
'help-page_addPersonRule2',
|
|
100
|
+
'help-page_addPersonRule3',
|
|
101
|
+
'help-page_addPersonRule4',
|
|
102
102
|
'candles',
|
|
103
|
-
'help-
|
|
104
|
-
'help-
|
|
105
|
-
'help-
|
|
106
|
-
'help-
|
|
107
|
-
'help-
|
|
108
|
-
'help-
|
|
103
|
+
'help-page_candlesParagraph1',
|
|
104
|
+
'help-page_candlesParagraph2',
|
|
105
|
+
'help-page_candlesParagraph3',
|
|
106
|
+
'help-page_lightACandleTitle',
|
|
107
|
+
'help-page_lightACandleRule1',
|
|
108
|
+
'help-page_lightACandleRule2',
|
|
109
109
|
],
|
|
110
110
|
'home-page': [
|
|
111
111
|
...COMMON_PAGE_TRANSLATION_CODES,
|
|
@@ -113,32 +113,32 @@ export const PAGE_TRANSLATION_CODES_MAP = {
|
|
|
113
113
|
...PERSON_IMAGE_TRANSLATION_CODES,
|
|
114
114
|
...CANDLE_CARDS_TRANSLATION_CODES,
|
|
115
115
|
'candles',
|
|
116
|
-
'home-
|
|
116
|
+
'home-page_lastLitCandles',
|
|
117
117
|
...PERSON_CARDS_TRANSLATION_CODES,
|
|
118
118
|
'persons',
|
|
119
|
-
'home-
|
|
120
|
-
'
|
|
119
|
+
'home-page_lastUploadedPersons',
|
|
120
|
+
'auth_cannotBeChangedLaterWarning',
|
|
121
121
|
'more',
|
|
122
122
|
'reset',
|
|
123
|
-
'light-candle-
|
|
123
|
+
'light-candle-page_maintenance_submitError',
|
|
124
124
|
'lightTheCandle',
|
|
125
|
-
'light-candle-
|
|
126
|
-
'
|
|
127
|
-
'
|
|
128
|
-
'
|
|
125
|
+
'light-candle-page_maintenance_submitSuccess',
|
|
126
|
+
'form_error_maxLength',
|
|
127
|
+
'person_name',
|
|
128
|
+
'form_error_required',
|
|
129
129
|
'litName',
|
|
130
130
|
'burnedCandles',
|
|
131
131
|
'burningCandles',
|
|
132
132
|
'candles',
|
|
133
133
|
'persons',
|
|
134
|
-
'home-
|
|
134
|
+
'home-page_statistics',
|
|
135
135
|
'add-person-page',
|
|
136
|
-
'
|
|
137
|
-
'home-
|
|
138
|
-
'home-
|
|
139
|
-
'home-
|
|
136
|
+
'auth_cannotBeChangedLaterWarning',
|
|
137
|
+
'home-page_welcome_description1',
|
|
138
|
+
'home-page_welcome_description2',
|
|
139
|
+
'home-page_welcome',
|
|
140
140
|
'persons-map-page',
|
|
141
|
-
'home-
|
|
141
|
+
'home-page_proposal',
|
|
142
142
|
'home-page',
|
|
143
143
|
],
|
|
144
144
|
'light-candle-page': [
|
|
@@ -146,16 +146,16 @@ export const PAGE_TRANSLATION_CODES_MAP = {
|
|
|
146
146
|
'person-candles-page',
|
|
147
147
|
...CANDLE_MAINTENANCE_TRANSLATION_CODES,
|
|
148
148
|
'lightTheCandle',
|
|
149
|
-
'light-candle-
|
|
150
|
-
'light-candle-
|
|
149
|
+
'light-candle-page_maintenance_submitError',
|
|
150
|
+
'light-candle-page_maintenance_submitSuccess',
|
|
151
151
|
'light-candle-page',
|
|
152
152
|
],
|
|
153
153
|
'person-candles-page': [
|
|
154
154
|
...COMMON_PAGE_TRANSLATION_CODES,
|
|
155
|
-
'
|
|
156
|
-
'
|
|
155
|
+
'auth_cannotBeChangedLaterWarning',
|
|
156
|
+
'auth_candleLitWarning',
|
|
157
157
|
'light-candle-page',
|
|
158
|
-
'person-candles-
|
|
158
|
+
'person-candles-page_addCandle_description',
|
|
159
159
|
...PERSON_IMAGE_TRANSLATION_CODES,
|
|
160
160
|
...CANDLES_LIST_TRANSLATION_CODES,
|
|
161
161
|
'person-candles-page',
|
|
@@ -165,70 +165,70 @@ export const PAGE_TRANSLATION_CODES_MAP = {
|
|
|
165
165
|
...COMMON_PAGE_TRANSLATION_CODES,
|
|
166
166
|
'person-candles-page',
|
|
167
167
|
'persons',
|
|
168
|
-
'
|
|
169
|
-
'
|
|
170
|
-
'
|
|
171
|
-
'
|
|
168
|
+
'person_birthDate',
|
|
169
|
+
'person_birthPlaceCountry',
|
|
170
|
+
'person_deathDate',
|
|
171
|
+
'person_description',
|
|
172
172
|
'proposable',
|
|
173
173
|
'burnedCandles',
|
|
174
174
|
'burningCandles',
|
|
175
|
-
'person-details-
|
|
175
|
+
'person-details-page_deletePerson_submitError',
|
|
176
176
|
'cancel',
|
|
177
177
|
'ok',
|
|
178
|
-
'person-details-
|
|
179
|
-
'person-details-
|
|
180
|
-
'person-details-
|
|
181
|
-
'person-details-
|
|
182
|
-
'person-details-
|
|
183
|
-
'person-details-
|
|
184
|
-
'person-details-
|
|
185
|
-
'person-details-
|
|
178
|
+
'person-details-page_deletePerson_submitSuccess',
|
|
179
|
+
'person-details-page_deletePerson_question',
|
|
180
|
+
'person-details-page_deletePerson',
|
|
181
|
+
'person-details-page_myPerson_submitError',
|
|
182
|
+
'person-details-page_myPerson_submitSuccess',
|
|
183
|
+
'person-details-page_myPerson_loginRequired',
|
|
184
|
+
'person-details-page_myPerson_question',
|
|
185
|
+
'person-details-page_myPerson',
|
|
186
186
|
'edit-person-page',
|
|
187
187
|
...PERSON_IMAGE_TRANSLATION_CODES,
|
|
188
188
|
'person-details-page',
|
|
189
189
|
'persons-page',
|
|
190
|
-
'
|
|
190
|
+
'auth_loginRequired',
|
|
191
191
|
],
|
|
192
192
|
'persons-page': [
|
|
193
193
|
...COMMON_PAGE_TRANSLATION_CODES,
|
|
194
|
-
'
|
|
195
|
-
'persons-
|
|
194
|
+
'auth_cannotBeChangedLaterWarning',
|
|
195
|
+
'persons-page_addPerson_description',
|
|
196
196
|
'login',
|
|
197
197
|
'add-person-page',
|
|
198
198
|
...PERSONS_LIST_TRANSLATION_CODES,
|
|
199
199
|
'caseSensitive',
|
|
200
200
|
'myPersons',
|
|
201
|
-
'persons-
|
|
201
|
+
'persons-page_personsList_hasImage',
|
|
202
202
|
'name',
|
|
203
|
-
'
|
|
203
|
+
'person_birthPlaceCountry',
|
|
204
204
|
'person',
|
|
205
205
|
'personsInCount',
|
|
206
206
|
'reset',
|
|
207
207
|
'sort',
|
|
208
208
|
'createdAt',
|
|
209
209
|
'name',
|
|
210
|
-
'persons-
|
|
210
|
+
'persons-page_personsList',
|
|
211
211
|
'persons',
|
|
212
212
|
'persons-map-page',
|
|
213
213
|
'persons-page',
|
|
214
214
|
'loading',
|
|
215
215
|
],
|
|
216
|
-
'persons-map-page': [...COMMON_PAGE_TRANSLATION_CODES, 'persons-map-
|
|
216
|
+
'persons-map-page': [...COMMON_PAGE_TRANSLATION_CODES, 'persons-map-page_map_description', 'persons-map-page', 'map'],
|
|
217
217
|
'terms-and-conditions-page': [
|
|
218
218
|
...COMMON_PAGE_TRANSLATION_CODES,
|
|
219
|
-
'terms-and-conditions-
|
|
220
|
-
'terms-and-conditions-
|
|
221
|
-
'terms-and-conditions-
|
|
222
|
-
'terms-and-conditions-
|
|
223
|
-
'terms-and-conditions-
|
|
224
|
-
'terms-and-conditions-
|
|
225
|
-
'terms-and-conditions-
|
|
226
|
-
'terms-and-conditions-
|
|
227
|
-
'terms-and-conditions-
|
|
228
|
-
'terms-and-conditions-
|
|
229
|
-
'terms-and-conditions-
|
|
230
|
-
'terms-and-conditions-
|
|
231
|
-
'terms-and-conditions-
|
|
219
|
+
'terms-and-conditions-page_intro',
|
|
220
|
+
'terms-and-conditions-page_conditionsOfUseTitle',
|
|
221
|
+
'terms-and-conditions-page_conditionsOfUseParagraph',
|
|
222
|
+
'terms-and-conditions-page_intellectualPropertyTitle',
|
|
223
|
+
'terms-and-conditions-page_intellectualPropertyParagraph',
|
|
224
|
+
'terms-and-conditions-page_userAccountsTitle',
|
|
225
|
+
'terms-and-conditions-page_userAccountsParagraph',
|
|
226
|
+
'terms-and-conditions-page_applicableLawTitle',
|
|
227
|
+
'terms-and-conditions-page_applicableLawParagraph',
|
|
228
|
+
'terms-and-conditions-page_disputesTitle',
|
|
229
|
+
'terms-and-conditions-page_disputesParagraph',
|
|
230
|
+
'terms-and-conditions-page_limitationAndLiabilityTitle',
|
|
231
|
+
'terms-and-conditions-page_limitationAndLiabilityParagraph',
|
|
232
232
|
'terms-and-conditions-page',
|
|
233
233
|
],
|
|
234
234
|
};
|
package/common/translation/translation-code/page/utils/filter-page-translation-codes/index.js
CHANGED
|
@@ -12,7 +12,7 @@ export const filterPageTranslationCodes = (variant, options) => PAGE_TRANSLATION
|
|
|
12
12
|
if (EXCLUDED_PAGE_TRANSLATION_CODES.cookieConsent.includes(code))
|
|
13
13
|
return false;
|
|
14
14
|
}
|
|
15
|
-
if (isPageMenu(variant) && code === `
|
|
15
|
+
if (isPageMenu(variant) && code === `pageMenu_${variant}`) {
|
|
16
16
|
return false;
|
|
17
17
|
}
|
|
18
18
|
return true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PERSON_MAINTENANCE_TRANSLATION_CODES: readonly ["
|
|
1
|
+
export declare const PERSON_MAINTENANCE_TRANSLATION_CODES: readonly ["auth_cannotBeChangedLaterWarning", "auth_loginRequired", "add-person-page", "modify", "reset", "count", "dropZone_acceptedFormats", "dropZone_drapActive", "dropZone_dropZone", "dropZone_sizeLimit", "invalidImage", "tooBigImage", "image", "noMoreImages", "form_error_date", "person_birthDate", "person_birthPlaceCountry", "person_deathDate", "person_description", "select", "form_error_maxLength", "proposable", "form_error_required", "name"];
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
export const PERSON_MAINTENANCE_TRANSLATION_CODES = [
|
|
2
|
-
'
|
|
3
|
-
'
|
|
2
|
+
'auth_cannotBeChangedLaterWarning',
|
|
3
|
+
'auth_loginRequired',
|
|
4
4
|
'add-person-page',
|
|
5
5
|
'modify',
|
|
6
6
|
'reset',
|
|
7
7
|
'count',
|
|
8
|
-
'
|
|
9
|
-
'
|
|
10
|
-
'
|
|
11
|
-
'
|
|
8
|
+
'dropZone_acceptedFormats',
|
|
9
|
+
'dropZone_drapActive',
|
|
10
|
+
'dropZone_dropZone',
|
|
11
|
+
'dropZone_sizeLimit',
|
|
12
12
|
'invalidImage',
|
|
13
13
|
'tooBigImage',
|
|
14
14
|
'image',
|
|
15
15
|
'noMoreImages',
|
|
16
|
-
'
|
|
17
|
-
'
|
|
18
|
-
'
|
|
19
|
-
'
|
|
20
|
-
'
|
|
16
|
+
'form_error_date',
|
|
17
|
+
'person_birthDate',
|
|
18
|
+
'person_birthPlaceCountry',
|
|
19
|
+
'person_deathDate',
|
|
20
|
+
'person_description',
|
|
21
21
|
'select',
|
|
22
|
-
'
|
|
22
|
+
'form_error_maxLength',
|
|
23
23
|
'proposable',
|
|
24
|
-
'
|
|
24
|
+
'form_error_required',
|
|
25
25
|
'name',
|
|
26
26
|
];
|
|
27
27
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PERSONS_LIST_TRANSLATION_CODES: readonly ["burnedCandles", "burningCandles", "imageCannotBeLoaded", "imageClickToSeeOriginal", "imageNotSet", "lightACandle", "personsInCount", "person", "reset", "sort", "name", "caseSensitive", "myPersons", "select", "persons-map-page", "
|
|
1
|
+
export declare const PERSONS_LIST_TRANSLATION_CODES: readonly ["burnedCandles", "burningCandles", "imageCannotBeLoaded", "imageClickToSeeOriginal", "imageNotSet", "lightACandle", "personsInCount", "person", "reset", "sort", "name", "caseSensitive", "myPersons", "select", "persons-map-page", "person_birthPlaceCountry", "persons", "persons-page_personsList_hasImage", "createdAt"];
|
|
@@ -10,9 +10,9 @@ export const PERSONS_LIST_TRANSLATION_CODES = [
|
|
|
10
10
|
'myPersons',
|
|
11
11
|
'select',
|
|
12
12
|
'persons-map-page',
|
|
13
|
-
'
|
|
13
|
+
'person_birthPlaceCountry',
|
|
14
14
|
'persons',
|
|
15
|
-
'persons-
|
|
15
|
+
'persons-page_personsList_hasImage',
|
|
16
16
|
'createdAt',
|
|
17
17
|
];
|
|
18
18
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|