11.PHONY : clean dev all check checkstatic unittests jslatest testdata locales
22
3+ POFILES =locale/fr/LC_MESSAGES/loris.po \
4+ locale/ja/LC_MESSAGES/loris.po \
5+ locale/hi/LC_MESSAGES/loris.po \
6+ locale/es/LC_MESSAGES/loris.po \
7+ locale/en/LC_MESSAGES/loris.po \
8+ modules/media/locale/ja/LC_MESSAGES/media.po \
9+ modules/datadict/locale/ja/LC_MESSAGES/datadict.po \
10+ modules/datadict/locale/hi/LC_MESSAGES/datadict.po \
11+ modules/mri_violations/locale/ja/LC_MESSAGES/mri_violations.po \
12+ modules/statistics/locale/ja/LC_MESSAGES/statistics.po \
13+ modules/server_processes_manager/locale/ja/LC_MESSAGES/server_processes_manager.po \
14+ modules/module_manager/locale/ja/LC_MESSAGES/module_manager.po \
15+ modules/configuration/locale/ja/LC_MESSAGES/configuration.po \
16+ modules/oidc/locale/ja/LC_MESSAGES/oidc.po \
17+ modules/instrument_list/locale/ja/LC_MESSAGES/instrument_list.po \
18+ modules/instrument_list/locale/es/LC_MESSAGES/instrument_list.po \
19+ modules/my_preferences/locale/ja/LC_MESSAGES/my_preferences.po \
20+ modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.po \
21+ modules/dicom_archive/locale/ja/LC_MESSAGES/dicom_archive.po \
22+ modules/new_profile/locale/ja/LC_MESSAGES/new_profile.po \
23+ modules/new_profile/locale/hi/LC_MESSAGES/new_profile.po \
24+ modules/new_profile/locale/es/LC_MESSAGES/new_profile.po \
25+ modules/dqt/locale/ja/LC_MESSAGES/dqt.po \
26+ modules/bvl_feedback/locale/ja/LC_MESSAGES/bvl_feedback.po \
27+ modules/genomic_browser/locale/ja/LC_MESSAGES/genomic_browser.po \
28+ modules/instruments/locale/ja/LC_MESSAGES/instruments.po \
29+ modules/instruments/locale/es/LC_MESSAGES/instruments.po \
30+ modules/dictionary/locale/ja/LC_MESSAGES/dictionary.po \
31+ modules/dictionary/locale/hi/LC_MESSAGES/dictionary.po \
32+ modules/instrument_manager/locale/ja/LC_MESSAGES/instrument_manager.po \
33+ modules/candidate_profile/locale/ja/LC_MESSAGES/candidate_profile.po \
34+ modules/behavioural_qc/locale/ja/LC_MESSAGES/behavioural_qc.po \
35+ modules/user_accounts/locale/ja/LC_MESSAGES/user_accounts.po \
36+ modules/schedule_module/locale/ja/LC_MESSAGES/schedule_module.po \
37+ modules/imaging_uploader/locale/ja/LC_MESSAGES/imaging_uploader.po \
38+ modules/next_stage/locale/ja/LC_MESSAGES/next_stage.po \
39+ modules/next_stage/locale/es/LC_MESSAGES/next_stage.po \
40+ modules/examiner/locale/ja/LC_MESSAGES/examiner.po \
41+ modules/login/locale/ja/LC_MESSAGES/login.po \
42+ modules/instrument_builder/locale/ja/LC_MESSAGES/instrument_builder.po \
43+ modules/document_repository/locale/ja/LC_MESSAGES/document_repository.po \
44+ modules/conflict_resolver/locale/ja/LC_MESSAGES/conflict_resolver.po \
45+ modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.po \
46+ modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.po \
47+ modules/create_timepoint/locale/ja/LC_MESSAGES/create_timepoint.po \
48+ modules/create_timepoint/locale/es/LC_MESSAGES/create_timepoint.po \
49+ modules/brainbrowser/locale/ja/LC_MESSAGES/brainbrowser.po \
50+ modules/dataquery/locale/ja/LC_MESSAGES/dataquery.po \
51+ modules/issue_tracker/locale/ja/LC_MESSAGES/issue_tracker.po \
52+ modules/timepoint_list/locale/ja/LC_MESSAGES/timepoint_list.po \
53+ modules/timepoint_list/locale/es/LC_MESSAGES/timepoint_list.po \
54+ modules/data_release/locale/ja/LC_MESSAGES/data_release.po \
55+ modules/data_release/locale/hi/LC_MESSAGES/data_release.po \
56+ modules/electrophysiology_uploader/locale/ja/LC_MESSAGES/electrophysiology_uploader.po \
57+ modules/acknowledgements/locale/ja/LC_MESSAGES/acknowledgements.po \
58+ modules/survey_accounts/locale/ja/LC_MESSAGES/survey_accounts.po \
59+ modules/battery_manager/locale/ja/LC_MESSAGES/battery_manager.po \
60+ modules/imaging_qc/locale/ja/LC_MESSAGES/imaging_qc.po \
61+ modules/electrophysiology_browser/locale/ja/LC_MESSAGES/electrophysiology_browser.po \
62+ modules/api_docs/locale/ja/LC_MESSAGES/api_docs.po \
63+ modules/publication/locale/ja/LC_MESSAGES/publication.po \
64+ modules/dashboard/locale/ja/LC_MESSAGES/dashboard.po \
65+ modules/candidate_parameters/locale/ja/LC_MESSAGES/candidate_parameters.po \
66+ modules/imaging_browser/locale/ja/LC_MESSAGES/imaging_browser.po \
67+ modules/help_editor/locale/ja/LC_MESSAGES/help_editor.po
68+
69+ MOFILES =$(patsubst % .po,% .mo,$(POFILES ) )
70+ I18NJSONFILES =$(patsubst % .po,% .json,$(POFILES ) )
71+
372all : node_modules locales VERSION vendor
473 npm run build
574
675% .mo : % .po
776 msgfmt -o $@ $<
877
78+ % .json : % .po
79+ npx i18next-conv -l UNUSED -t $@ -s $< --compatibilityJSON v4
80+
981# If anything changes, re-generate the VERSION file
1082VERSION : .
1183 tools/gen-version.sh
@@ -62,115 +134,21 @@ check: checkstatic unittests
62134testdata :
63135 php tools/raisinbread_refresh.php
64136
65- locales :
66- msgfmt -o locale/en/LC_MESSAGES/loris.mo locale/en/LC_MESSAGES/loris.po
67- npx i18next-conv -l en -s locale/en/LC_MESSAGES/loris.po -t locale/en/LC_MESSAGES/loris.json --compatibilityJSON v4
68- msgfmt -o locale/fr/LC_MESSAGES/loris.mo locale/fr/LC_MESSAGES/loris.po
69- npx i18next-conv -l fr -s locale/fr/LC_MESSAGES/loris.po -t locale/fr/LC_MESSAGES/loris.json --compatibilityJSON v4
70- msgfmt -o locale/ja/LC_MESSAGES/loris.mo locale/ja/LC_MESSAGES/loris.po
71- npx i18next-conv -l ja -s locale/ja/LC_MESSAGES/loris.po -t locale/ja/LC_MESSAGES/loris.json --compatibilityJSON v4
72- msgfmt -o locale/hi/LC_MESSAGES/loris.mo locale/hi/LC_MESSAGES/loris.po
73- npx i18next-conv -l hi -s locale/hi/LC_MESSAGES/loris.po -t locale/hi/LC_MESSAGES/loris.json --compatibilityJSON v4
74- msgfmt -o locale/es/LC_MESSAGES/loris.mo locale/es/LC_MESSAGES/loris.po
75- npx i18next-conv -l es -s locale/es/LC_MESSAGES/loris.po -t locale/es/LC_MESSAGES/loris.json --compatibilityJSON v4
76- msgfmt -o modules/new_profile/locale/ja/LC_MESSAGES/new_profile.mo modules/new_profile/locale/ja/LC_MESSAGES/new_profile.po
77- npx i18next-conv -l ja -s modules/new_profile/locale/ja/LC_MESSAGES/new_profile.po -t modules/new_profile/locale/ja/LC_MESSAGES/new_profile.json
78- msgfmt -o modules/new_profile/locale/hi/LC_MESSAGES/new_profile.mo modules/new_profile/locale/hi/LC_MESSAGES/new_profile.po
79- npx i18next-conv -l hi -s modules/new_profile/locale/hi/LC_MESSAGES/new_profile.po -t modules/new_profile/locale/hi/LC_MESSAGES/new_profile.json
80- msgfmt -o modules/new_profile/locale/es/LC_MESSAGES/new_profile.mo modules/new_profile/locale/es/LC_MESSAGES/new_profile.po
81- npx i18next-conv -l es -s modules/new_profile/locale/es/LC_MESSAGES/new_profile.po -t modules/new_profile/locale/es/LC_MESSAGES/new_profile.json --compatibilityJSON v4
82- msgfmt -o modules/new_profile/locale/hi/LC_MESSAGES/new_profile.mo modules/new_profile/locale/hi/LC_MESSAGES/new_profile.po
83- msgfmt -o modules/acknowledgements/locale/ja/LC_MESSAGES/acknowledgements.mo modules/acknowledgements/locale/ja/LC_MESSAGES/acknowledgements.po
84- msgfmt -o modules/api_docs/locale/ja/LC_MESSAGES/api_docs.mo modules/api_docs/locale/ja/LC_MESSAGES/api_docs.po
85- msgfmt -o modules/battery_manager/locale/ja/LC_MESSAGES/battery_manager.mo modules/battery_manager/locale/ja/LC_MESSAGES/battery_manager.po
86- msgfmt -o modules/behavioural_qc/locale/ja/LC_MESSAGES/behavioural_qc.mo modules/behavioural_qc/locale/ja/LC_MESSAGES/behavioural_qc.po
87- msgfmt -o modules/brainbrowser/locale/ja/LC_MESSAGES/brainbrowser.mo modules/brainbrowser/locale/ja/LC_MESSAGES/brainbrowser.po
88- msgfmt -o modules/bvl_feedback/locale/ja/LC_MESSAGES/bvl_feedback.mo modules/bvl_feedback/locale/ja/LC_MESSAGES/bvl_feedback.po
89- msgfmt -o modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.mo modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.po
90- npx i18next-conv -l ja -s modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.po -t modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.json
91- msgfmt -o modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.mo modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.po
92- npx i18next-conv -l hi -s modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.po -t modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.json
93- msgfmt -o modules/candidate_parameters/locale/ja/LC_MESSAGES/candidate_parameters.mo modules/candidate_parameters/locale/ja/LC_MESSAGES/candidate_parameters.po
94- npx i18next-conv -l ja -s modules/candidate_parameters/locale/ja/LC_MESSAGES/candidate_parameters.po -t modules/candidate_parameters/locale/ja/LC_MESSAGES/candidate_parameters.json
95- msgfmt -o modules/candidate_profile/locale/ja/LC_MESSAGES/candidate_profile.mo modules/candidate_profile/locale/ja/LC_MESSAGES/candidate_profile.po
96- msgfmt -o modules/configuration/locale/ja/LC_MESSAGES/configuration.mo modules/configuration/locale/ja/LC_MESSAGES/configuration.po
97- msgfmt -o modules/configuration/locale/ja/LC_MESSAGES/configuration.mo modules/configuration/locale/ja/LC_MESSAGES/configuration.po
98- msgfmt -o modules/conflict_resolver/locale/ja/LC_MESSAGES/conflict_resolver.mo modules/conflict_resolver/locale/ja/LC_MESSAGES/conflict_resolver.po
99- msgfmt -o modules/create_timepoint/locale/ja/LC_MESSAGES/create_timepoint.mo modules/create_timepoint/locale/ja/LC_MESSAGES/create_timepoint.po
100- npx i18next-conv -l ja -s modules/create_timepoint/locale/ja/LC_MESSAGES/create_timepoint.po -t modules/create_timepoint/locale/ja/LC_MESSAGES/create_timepoint.json
101- msgfmt -o modules/create_timepoint/locale/es/LC_MESSAGES/create_timepoint.mo modules/create_timepoint/locale/es/LC_MESSAGES/create_timepoint.po
102- npx i18next-conv -l es -s modules/create_timepoint/locale/es/LC_MESSAGES/create_timepoint.po -t modules/create_timepoint/locale/es/LC_MESSAGES/create_timepoint.json
103- msgfmt -o modules/dashboard/locale/ja/LC_MESSAGES/dashboard.mo modules/dashboard/locale/ja/LC_MESSAGES/dashboard.po
104- msgfmt -o modules/datadict/locale/ja/LC_MESSAGES/datadict.mo modules/datadict/locale/ja/LC_MESSAGES/datadict.po
105- msgfmt -o modules/datadict/locale/hi/LC_MESSAGES/datadict.mo modules/datadict/locale/hi/LC_MESSAGES/datadict.po
106- npx i18next-conv -l hi -s modules/datadict/locale/hi/LC_MESSAGES/datadict.po -t modules/datadict/locale/hi/LC_MESSAGES/datadict.json
107- npx i18next-conv -l ja -s modules/datadict/locale/ja/LC_MESSAGES/datadict.po -t modules/datadict/locale/ja/LC_MESSAGES/datadict.json
108- msgfmt -o modules/dataquery/locale/ja/LC_MESSAGES/dataquery.mo modules/dataquery/locale/ja/LC_MESSAGES/dataquery.po
109- msgfmt -o modules/data_release/locale/ja/LC_MESSAGES/data_release.mo modules/data_release/locale/ja/LC_MESSAGES/data_release.po
110- npx i18next-conv -l ja -s modules/data_release/locale/ja/LC_MESSAGES/data_release.po -t modules/data_release/locale/ja/LC_MESSAGES/data_release.json
111- msgfmt -o modules/data_release/locale/hi/LC_MESSAGES/data_release.mo modules/data_release/locale/hi/LC_MESSAGES/data_release.po
112- npx i18next-conv -l hi -s modules/data_release/locale/hi/LC_MESSAGES/data_release.po -t modules/data_release/locale/hi/LC_MESSAGES/data_release.json
113- msgfmt -o modules/dicom_archive/locale/ja/LC_MESSAGES/dicom_archive.mo modules/dicom_archive/locale/ja/LC_MESSAGES/dicom_archive.po
114- msgfmt -o modules/dictionary/locale/ja/LC_MESSAGES/dictionary.mo modules/dictionary/locale/ja/LC_MESSAGES/dictionary.po
115- npx i18next-conv -l ja -s modules/dictionary/locale/ja/LC_MESSAGES/dictionary.po -t modules/dictionary/locale/ja/LC_MESSAGES/dictionary.json
116- msgfmt -o modules/dictionary/locale/hi/LC_MESSAGES/dictionary.mo modules/dictionary/locale/hi/LC_MESSAGES/dictionary.po
117- npx i18next-conv -l hi -s modules/dictionary/locale/hi/LC_MESSAGES/dictionary.po -t modules/dictionary/locale/hi/LC_MESSAGES/dictionary.json
118- msgfmt -o modules/document_repository/locale/ja/LC_MESSAGES/document_repository.mo modules/document_repository/locale/ja/LC_MESSAGES/document_repository.po
119- msgfmt -o modules/dqt/locale/ja/LC_MESSAGES/dqt.mo modules/dqt/locale/ja/LC_MESSAGES/dqt.po
120- msgfmt -o modules/electrophysiology_browser/locale/ja/LC_MESSAGES/electrophysiology_browser.mo modules/electrophysiology_browser/locale/ja/LC_MESSAGES/electrophysiology_browser.po
121- msgfmt -o modules/electrophysiology_uploader/locale/ja/LC_MESSAGES/electrophysiology_uploader.mo modules/electrophysiology_uploader/locale/ja/LC_MESSAGES/electrophysiology_uploader.po
122- msgfmt -o modules/examiner/locale/ja/LC_MESSAGES/examiner.mo modules/examiner/locale/ja/LC_MESSAGES/examiner.po
123- msgfmt -o modules/genomic_browser/locale/ja/LC_MESSAGES/genomic_browser.mo modules/genomic_browser/locale/ja/LC_MESSAGES/genomic_browser.po
124- msgfmt -o modules/help_editor/locale/ja/LC_MESSAGES/help_editor.mo modules/help_editor/locale/ja/LC_MESSAGES/help_editor.po
125- msgfmt -o modules/imaging_browser/locale/ja/LC_MESSAGES/imaging_browser.mo modules/imaging_browser/locale/ja/LC_MESSAGES/imaging_browser.po
126- npx i18next-conv -l ja -s modules/imaging_browser/locale/ja/LC_MESSAGES/imaging_browser.po -t modules/imaging_browser/locale/ja/LC_MESSAGES/imaging_browser.json --compatibilityJSON v4
127- msgfmt -o modules/imaging_qc/locale/ja/LC_MESSAGES/imaging_qc.mo modules/imaging_qc/locale/ja/LC_MESSAGES/imaging_qc.po
128- msgfmt -o modules/imaging_uploader/locale/ja/LC_MESSAGES/imaging_uploader.mo modules/imaging_uploader/locale/ja/LC_MESSAGES/imaging_uploader.po
129- msgfmt -o modules/instrument_builder/locale/ja/LC_MESSAGES/instrument_builder.mo modules/instrument_builder/locale/ja/LC_MESSAGES/instrument_builder.po
130- msgfmt -o modules/instrument_list/locale/ja/LC_MESSAGES/instrument_list.mo modules/instrument_list/locale/ja/LC_MESSAGES/instrument_list.po
131- msgfmt -o modules/instrument_list/locale/es/LC_MESSAGES/instrument_list.mo modules/instrument_list/locale/es/LC_MESSAGES/instrument_list.po
132- msgfmt -o modules/instrument_manager/locale/ja/LC_MESSAGES/instrument_manager.mo modules/instrument_manager/locale/ja/LC_MESSAGES/instrument_manager.po
133- msgfmt -o modules/instruments/locale/ja/LC_MESSAGES/instruments.mo modules/instruments/locale/ja/LC_MESSAGES/instruments.po
134- msgfmt -o modules/instruments/locale/es/LC_MESSAGES/instruments.mo modules/instruments/locale/es/LC_MESSAGES/instruments.po
135- msgfmt -o modules/issue_tracker/locale/ja/LC_MESSAGES/issue_tracker.mo modules/issue_tracker/locale/ja/LC_MESSAGES/issue_tracker.po
136- msgfmt -o modules/login/locale/ja/LC_MESSAGES/login.mo modules/login/locale/ja/LC_MESSAGES/login.po
137- msgfmt -o modules/media/locale/ja/LC_MESSAGES/media.mo modules/media/locale/ja/LC_MESSAGES/media.po
138- msgfmt -o modules/module_manager/locale/ja/LC_MESSAGES/module_manager.mo modules/module_manager/locale/ja/LC_MESSAGES/module_manager.po
139- msgfmt -o modules/mri_violations/locale/ja/LC_MESSAGES/mri_violations.mo modules/mri_violations/locale/ja/LC_MESSAGES/mri_violations.po
140- msgfmt -o modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.mo modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.po
141- npx i18next-conv -l ja -s modules/my_preferences/locale/ja/LC_MESSAGES/my_preferences.po -t modules/my_preferences/locale/ja/LC_MESSAGES/my_preferences.json --compatibilityJSON v4
142- npx i18next-conv -l hi -s modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.po -t modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.json --compatibilityJSON v4
143- msgfmt -o modules/my_preferences/locale/ja/LC_MESSAGES/my_preferences.mo modules/my_preferences/locale/ja/LC_MESSAGES/my_preferences.po
144- msgfmt -o modules/next_stage/locale/ja/LC_MESSAGES/next_stage.mo modules/next_stage/locale/ja/LC_MESSAGES/next_stage.po
145- msgfmt -o modules/next_stage/locale/es/LC_MESSAGES/next_stage.mo modules/next_stage/locale/es/LC_MESSAGES/next_stage.po
146- msgfmt -o modules/oidc/locale/ja/LC_MESSAGES/oidc.mo modules/oidc/locale/ja/LC_MESSAGES/oidc.po
147- msgfmt -o modules/publication/locale/ja/LC_MESSAGES/publication.mo modules/publication/locale/ja/LC_MESSAGES/publication.po
148- msgfmt -o modules/schedule_module/locale/ja/LC_MESSAGES/schedule_module.mo modules/schedule_module/locale/ja/LC_MESSAGES/schedule_module.po
149- msgfmt -o modules/server_processes_manager/locale/ja/LC_MESSAGES/server_processes_manager.mo modules/server_processes_manager/locale/ja/LC_MESSAGES/server_processes_manager.po
150- msgfmt -o modules/statistics/locale/ja/LC_MESSAGES/statistics.mo modules/statistics/locale/ja/LC_MESSAGES/statistics.po
151- npx i18next-conv -l ja -s modules/statistics/locale/ja/LC_MESSAGES/statistics.po -t modules/statistics/locale/ja/LC_MESSAGES/statistics.json
152- msgfmt -o modules/survey_accounts/locale/ja/LC_MESSAGES/survey_accounts.mo modules/survey_accounts/locale/ja/LC_MESSAGES/survey_accounts.po
153- msgfmt -o modules/timepoint_list/locale/ja/LC_MESSAGES/timepoint_list.mo modules/timepoint_list/locale/ja/LC_MESSAGES/timepoint_list.po
154- msgfmt -o modules/timepoint_list/locale/es/LC_MESSAGES/timepoint_list.mo modules/timepoint_list/locale/es/LC_MESSAGES/timepoint_list.po
155- msgfmt -o modules/user_accounts/locale/ja/LC_MESSAGES/user_accounts.mo modules/user_accounts/locale/ja/LC_MESSAGES/user_accounts.po
156-
137+ locales : $(MOFILES ) $(I18NJSONFILES )
157138
158139acknowledgements : modules/acknowledgements/locale/ja/LC_MESSAGES/acknowledgements.mo
159140 target=acknowledgements npm run compile
160141
161142create_timepoint :
162143 target=data_release npm run compile
163144
164- data_release : modules/data_release/locale/hi/LC_MESSAGES/data_release.mo modules/data_release/locale/ja/LC_MESSAGES/data_release.mo
165- npx i18next-conv -l hi -s modules/data_release/locale/hi/LC_MESSAGES/data_release.po -t modules/data_release/locale/hi/LC_MESSAGES/data_release.json
166- npx i18next-conv -l ja -s modules/data_release/locale/ja/LC_MESSAGES/data_release.po -t modules/data_release/locale/ja/LC_MESSAGES/data_release.json
145+ data_release : modules/data_release/locale/hi/LC_MESSAGES/data_release.mo modules/data_release/locale/ja/LC_MESSAGES/data_release.mo modules/data_release/locale/hi/LC_MESSAGES/data_release.json modules/data_release/locale/ja/LC_MESSAGES/data_release.json
167146 target=data_release npm run compile
168147
169148instrument_manager : modules/instrument_manager/locale/ja/LC_MESSAGES/instrument_manager.mo
170149 target=instrument_manager npm run compile
171150
172151dataquery : modules/dataquery/locale/ja/LC_MESSAGES/dataquery.mo
173- msgfmt -o modules/dataquery/locale/ja/LC_MESSAGES/dataquery.mo modules/dataquery/locale/ja/LC_MESSAGES/dataquery.po
174152 target=dataquery npm run compile
175153
176154login : modules/login/locale/ja/LC_MESSAGES/login.mo
@@ -185,9 +163,7 @@ mri_violations: modules/mri_violations/locale/ja/LC_MESSAGES/mri_violations.mo
185163issue_tracker : modules/issue_tracker/locale/ja/LC_MESSAGES/issue_tracker.mo
186164 target=issue_tracker npm run compile
187165
188- candidate_list : modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.mo modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.mo
189- npx i18next-conv -l ja -s modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.po -t modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.json
190- npx i18next-conv -l hi -s modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.po -t modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.json
166+ candidate_list : modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.mo modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.mo modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.json modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.json
191167 target=candidate_list npm run compile
192168
193169candidate_parameters : modules/candidate_parameters/locale/ja/LC_MESSAGES/candidate_parameters.mo
@@ -205,7 +181,5 @@ server_processes_manager: modules/server_processes_manager/locale/ja/LC_MESSAGES
205181conflict_resolver :
206182 target=conflict_resolver npm run compile
207183
208- my_preferences : modules/my_preferences/locale/ja/LC_MESSAGES/my_preferences.mo modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.mo
209- npx i18next-conv -l ja -s modules/my_preferences/locale/ja/LC_MESSAGES/my_preferences.po -t modules/my_preferences/locale/ja/LC_MESSAGES/my_preferences.json --compatibilityJSON v4
210- npx i18next-conv -l hi -s modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.po -t modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.json --compatibilityJSON v4
184+ my_preferences : modules/my_preferences/locale/ja/LC_MESSAGES/my_preferences.mo modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.mo modules/my_preferences/locale/ja/LC_MESSAGES/my_preferences.json modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.json
211185 target=my_preferences npm run compile
0 commit comments