Skip to content

Commit ae2d2b4

Browse files
author
Dave MacFarlane
committed
[i18n/meta] Update Makefile to only compile changed language files
This updates the makefile so that it will only run the msgfmt or i18next-conv commands if the source file has changed. This should speed up compile time during development.
1 parent 4e0d0e5 commit ae2d2b4

File tree

1 file changed

+73
-93
lines changed

1 file changed

+73
-93
lines changed

Makefile

Lines changed: 73 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,81 @@
11
.PHONY: clean dev all check checkstatic unittests jslatest testdata locales
22

3+
POFILES=locale/ja/LC_MESSAGES/loris.po \
4+
locale/hi/LC_MESSAGES/loris.po \
5+
locale/es/LC_MESSAGES/loris.po \
6+
locale/en/LC_MESSAGES/loris.po \
7+
modules/media/locale/ja/LC_MESSAGES/media.po \
8+
modules/datadict/locale/ja/LC_MESSAGES/datadict.po \
9+
modules/datadict/locale/hi/LC_MESSAGES/datadict.po \
10+
modules/mri_violations/locale/ja/LC_MESSAGES/mri_violations.po \
11+
modules/statistics/locale/ja/LC_MESSAGES/statistics.po \
12+
modules/server_processes_manager/locale/ja/LC_MESSAGES/server_processes_manager.po \
13+
modules/module_manager/locale/ja/LC_MESSAGES/module_manager.po \
14+
modules/configuration/locale/ja/LC_MESSAGES/configuration.po \
15+
modules/oidc/locale/ja/LC_MESSAGES/oidc.po \
16+
modules/instrument_list/locale/ja/LC_MESSAGES/instrument_list.po \
17+
modules/instrument_list/locale/es/LC_MESSAGES/instrument_list.po \
18+
modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.po \
19+
modules/dicom_archive/locale/ja/LC_MESSAGES/dicom_archive.po \
20+
modules/new_profile/locale/ja/LC_MESSAGES/new_profile.po \
21+
modules/new_profile/locale/hi/LC_MESSAGES/new_profile.po \
22+
modules/new_profile/locale/es/LC_MESSAGES/new_profile.po \
23+
modules/dqt/locale/ja/LC_MESSAGES/dqt.po \
24+
modules/bvl_feedback/locale/ja/LC_MESSAGES/bvl_feedback.po \
25+
modules/genomic_browser/locale/ja/LC_MESSAGES/genomic_browser.po \
26+
modules/instruments/locale/ja/LC_MESSAGES/instruments.po \
27+
modules/instruments/locale/es/LC_MESSAGES/instruments.po \
28+
modules/dictionary/locale/ja/LC_MESSAGES/dictionary.po \
29+
modules/dictionary/locale/hi/LC_MESSAGES/dictionary.po \
30+
modules/instrument_manager/locale/ja/LC_MESSAGES/instrument_manager.po \
31+
modules/candidate_profile/locale/ja/LC_MESSAGES/candidate_profile.po \
32+
modules/behavioural_qc/locale/ja/LC_MESSAGES/behavioural_qc.po \
33+
modules/user_accounts/locale/ja/LC_MESSAGES/user_accounts.po \
34+
modules/schedule_module/locale/ja/LC_MESSAGES/schedule_module.po \
35+
modules/imaging_uploader/locale/ja/LC_MESSAGES/imaging_uploader.po \
36+
modules/next_stage/locale/ja/LC_MESSAGES/next_stage.po \
37+
modules/next_stage/locale/es/LC_MESSAGES/next_stage.po \
38+
modules/examiner/locale/ja/LC_MESSAGES/examiner.po \
39+
modules/login/locale/ja/LC_MESSAGES/login.po \
40+
modules/instrument_builder/locale/ja/LC_MESSAGES/instrument_builder.po \
41+
modules/document_repository/locale/ja/LC_MESSAGES/document_repository.po \
42+
modules/conflict_resolver/locale/ja/LC_MESSAGES/conflict_resolver.po \
43+
modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.po \
44+
modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.po \
45+
modules/create_timepoint/locale/ja/LC_MESSAGES/create_timepoint.po \
46+
modules/create_timepoint/locale/es/LC_MESSAGES/create_timepoint.po \
47+
modules/brainbrowser/locale/ja/LC_MESSAGES/brainbrowser.po \
48+
modules/dataquery/locale/ja/LC_MESSAGES/dataquery.po \
49+
modules/issue_tracker/locale/ja/LC_MESSAGES/issue_tracker.po \
50+
modules/timepoint_list/locale/ja/LC_MESSAGES/timepoint_list.po \
51+
modules/timepoint_list/locale/es/LC_MESSAGES/timepoint_list.po \
52+
modules/data_release/locale/ja/LC_MESSAGES/data_release.po \
53+
modules/data_release/locale/hi/LC_MESSAGES/data_release.po \
54+
modules/electrophysiology_uploader/locale/ja/LC_MESSAGES/electrophysiology_uploader.po \
55+
modules/acknowledgements/locale/ja/LC_MESSAGES/acknowledgements.po \
56+
modules/survey_accounts/locale/ja/LC_MESSAGES/survey_accounts.po \
57+
modules/battery_manager/locale/ja/LC_MESSAGES/battery_manager.po \
58+
modules/imaging_qc/locale/ja/LC_MESSAGES/imaging_qc.po \
59+
modules/electrophysiology_browser/locale/ja/LC_MESSAGES/electrophysiology_browser.po \
60+
modules/api_docs/locale/ja/LC_MESSAGES/api_docs.po \
61+
modules/publication/locale/ja/LC_MESSAGES/publication.po \
62+
modules/dashboard/locale/ja/LC_MESSAGES/dashboard.po \
63+
modules/candidate_parameters/locale/ja/LC_MESSAGES/candidate_parameters.po \
64+
modules/imaging_browser/locale/ja/LC_MESSAGES/imaging_browser.po \
65+
modules/help_editor/locale/ja/LC_MESSAGES/help_editor.po
66+
67+
MOFILES=$(patsubst %.po,%.mo,$(POFILES))
68+
I18NJSONFILES=$(patsubst %.po,%.json,$(POFILES))
69+
370
all: node_modules locales VERSION vendor
471
npm run build
572

673
%.mo: %.po
774
msgfmt -o $@ $<
875

76+
%.json: %.po
77+
npx i18next-conv -l UNUSED -t $@ -s $< --compatibilityJSON v4
78+
979
# If anything changes, re-generate the VERSION file
1080
VERSION: .
1181
tools/gen-version.sh
@@ -62,109 +132,21 @@ check: checkstatic unittests
62132
testdata:
63133
php tools/raisinbread_refresh.php
64134

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/ja/LC_MESSAGES/loris.mo locale/ja/LC_MESSAGES/loris.po
69-
npx i18next-conv -l ja -s locale/ja/LC_MESSAGES/loris.po -t locale/ja/LC_MESSAGES/loris.json --compatibilityJSON v4
70-
msgfmt -o locale/hi/LC_MESSAGES/loris.mo locale/hi/LC_MESSAGES/loris.po
71-
npx i18next-conv -l hi -s locale/hi/LC_MESSAGES/loris.po -t locale/hi/LC_MESSAGES/loris.json --compatibilityJSON v4
72-
msgfmt -o locale/es/LC_MESSAGES/loris.mo locale/es/LC_MESSAGES/loris.po
73-
npx i18next-conv -l es -s locale/es/LC_MESSAGES/loris.po -t locale/es/LC_MESSAGES/loris.json --compatibilityJSON v4
74-
msgfmt -o modules/new_profile/locale/ja/LC_MESSAGES/new_profile.mo modules/new_profile/locale/ja/LC_MESSAGES/new_profile.po
75-
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
76-
msgfmt -o modules/new_profile/locale/hi/LC_MESSAGES/new_profile.mo modules/new_profile/locale/hi/LC_MESSAGES/new_profile.po
77-
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
78-
msgfmt -o modules/new_profile/locale/es/LC_MESSAGES/new_profile.mo modules/new_profile/locale/es/LC_MESSAGES/new_profile.po
79-
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
80-
msgfmt -o modules/new_profile/locale/hi/LC_MESSAGES/new_profile.mo modules/new_profile/locale/hi/LC_MESSAGES/new_profile.po
81-
msgfmt -o modules/acknowledgements/locale/ja/LC_MESSAGES/acknowledgements.mo modules/acknowledgements/locale/ja/LC_MESSAGES/acknowledgements.po
82-
msgfmt -o modules/api_docs/locale/ja/LC_MESSAGES/api_docs.mo modules/api_docs/locale/ja/LC_MESSAGES/api_docs.po
83-
msgfmt -o modules/battery_manager/locale/ja/LC_MESSAGES/battery_manager.mo modules/battery_manager/locale/ja/LC_MESSAGES/battery_manager.po
84-
msgfmt -o modules/behavioural_qc/locale/ja/LC_MESSAGES/behavioural_qc.mo modules/behavioural_qc/locale/ja/LC_MESSAGES/behavioural_qc.po
85-
msgfmt -o modules/brainbrowser/locale/ja/LC_MESSAGES/brainbrowser.mo modules/brainbrowser/locale/ja/LC_MESSAGES/brainbrowser.po
86-
msgfmt -o modules/bvl_feedback/locale/ja/LC_MESSAGES/bvl_feedback.mo modules/bvl_feedback/locale/ja/LC_MESSAGES/bvl_feedback.po
87-
msgfmt -o modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.mo modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.po
88-
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
89-
msgfmt -o modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.mo modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.po
90-
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
91-
msgfmt -o modules/candidate_parameters/locale/ja/LC_MESSAGES/candidate_parameters.mo modules/candidate_parameters/locale/ja/LC_MESSAGES/candidate_parameters.po
92-
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
93-
msgfmt -o modules/candidate_profile/locale/ja/LC_MESSAGES/candidate_profile.mo modules/candidate_profile/locale/ja/LC_MESSAGES/candidate_profile.po
94-
msgfmt -o modules/configuration/locale/ja/LC_MESSAGES/configuration.mo modules/configuration/locale/ja/LC_MESSAGES/configuration.po
95-
msgfmt -o modules/configuration/locale/ja/LC_MESSAGES/configuration.mo modules/configuration/locale/ja/LC_MESSAGES/configuration.po
96-
msgfmt -o modules/conflict_resolver/locale/ja/LC_MESSAGES/conflict_resolver.mo modules/conflict_resolver/locale/ja/LC_MESSAGES/conflict_resolver.po
97-
msgfmt -o modules/create_timepoint/locale/ja/LC_MESSAGES/create_timepoint.mo modules/create_timepoint/locale/ja/LC_MESSAGES/create_timepoint.po
98-
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
99-
msgfmt -o modules/create_timepoint/locale/es/LC_MESSAGES/create_timepoint.mo modules/create_timepoint/locale/es/LC_MESSAGES/create_timepoint.po
100-
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
101-
msgfmt -o modules/dashboard/locale/ja/LC_MESSAGES/dashboard.mo modules/dashboard/locale/ja/LC_MESSAGES/dashboard.po
102-
msgfmt -o modules/datadict/locale/ja/LC_MESSAGES/datadict.mo modules/datadict/locale/ja/LC_MESSAGES/datadict.po
103-
msgfmt -o modules/datadict/locale/hi/LC_MESSAGES/datadict.mo modules/datadict/locale/hi/LC_MESSAGES/datadict.po
104-
npx i18next-conv -l hi -s modules/datadict/locale/hi/LC_MESSAGES/datadict.po -t modules/datadict/locale/hi/LC_MESSAGES/datadict.json
105-
npx i18next-conv -l ja -s modules/datadict/locale/ja/LC_MESSAGES/datadict.po -t modules/datadict/locale/ja/LC_MESSAGES/datadict.json
106-
msgfmt -o modules/dataquery/locale/ja/LC_MESSAGES/dataquery.mo modules/dataquery/locale/ja/LC_MESSAGES/dataquery.po
107-
msgfmt -o modules/data_release/locale/ja/LC_MESSAGES/data_release.mo modules/data_release/locale/ja/LC_MESSAGES/data_release.po
108-
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
109-
msgfmt -o modules/data_release/locale/hi/LC_MESSAGES/data_release.mo modules/data_release/locale/hi/LC_MESSAGES/data_release.po
110-
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
111-
msgfmt -o modules/dicom_archive/locale/ja/LC_MESSAGES/dicom_archive.mo modules/dicom_archive/locale/ja/LC_MESSAGES/dicom_archive.po
112-
msgfmt -o modules/dictionary/locale/ja/LC_MESSAGES/dictionary.mo modules/dictionary/locale/ja/LC_MESSAGES/dictionary.po
113-
npx i18next-conv -l ja -s modules/dictionary/locale/ja/LC_MESSAGES/dictionary.po -t modules/dictionary/locale/ja/LC_MESSAGES/dictionary.json
114-
msgfmt -o modules/dictionary/locale/hi/LC_MESSAGES/dictionary.mo modules/dictionary/locale/hi/LC_MESSAGES/dictionary.po
115-
npx i18next-conv -l hi -s modules/dictionary/locale/hi/LC_MESSAGES/dictionary.po -t modules/dictionary/locale/hi/LC_MESSAGES/dictionary.json
116-
msgfmt -o modules/document_repository/locale/ja/LC_MESSAGES/document_repository.mo modules/document_repository/locale/ja/LC_MESSAGES/document_repository.po
117-
msgfmt -o modules/dqt/locale/ja/LC_MESSAGES/dqt.mo modules/dqt/locale/ja/LC_MESSAGES/dqt.po
118-
msgfmt -o modules/electrophysiology_browser/locale/ja/LC_MESSAGES/electrophysiology_browser.mo modules/electrophysiology_browser/locale/ja/LC_MESSAGES/electrophysiology_browser.po
119-
msgfmt -o modules/electrophysiology_uploader/locale/ja/LC_MESSAGES/electrophysiology_uploader.mo modules/electrophysiology_uploader/locale/ja/LC_MESSAGES/electrophysiology_uploader.po
120-
msgfmt -o modules/examiner/locale/ja/LC_MESSAGES/examiner.mo modules/examiner/locale/ja/LC_MESSAGES/examiner.po
121-
msgfmt -o modules/genomic_browser/locale/ja/LC_MESSAGES/genomic_browser.mo modules/genomic_browser/locale/ja/LC_MESSAGES/genomic_browser.po
122-
msgfmt -o modules/help_editor/locale/ja/LC_MESSAGES/help_editor.mo modules/help_editor/locale/ja/LC_MESSAGES/help_editor.po
123-
msgfmt -o modules/imaging_browser/locale/ja/LC_MESSAGES/imaging_browser.mo modules/imaging_browser/locale/ja/LC_MESSAGES/imaging_browser.po
124-
msgfmt -o modules/imaging_qc/locale/ja/LC_MESSAGES/imaging_qc.mo modules/imaging_qc/locale/ja/LC_MESSAGES/imaging_qc.po
125-
msgfmt -o modules/imaging_uploader/locale/ja/LC_MESSAGES/imaging_uploader.mo modules/imaging_uploader/locale/ja/LC_MESSAGES/imaging_uploader.po
126-
msgfmt -o modules/instrument_builder/locale/ja/LC_MESSAGES/instrument_builder.mo modules/instrument_builder/locale/ja/LC_MESSAGES/instrument_builder.po
127-
msgfmt -o modules/instrument_list/locale/ja/LC_MESSAGES/instrument_list.mo modules/instrument_list/locale/ja/LC_MESSAGES/instrument_list.po
128-
msgfmt -o modules/instrument_list/locale/es/LC_MESSAGES/instrument_list.mo modules/instrument_list/locale/es/LC_MESSAGES/instrument_list.po
129-
msgfmt -o modules/instrument_manager/locale/ja/LC_MESSAGES/instrument_manager.mo modules/instrument_manager/locale/ja/LC_MESSAGES/instrument_manager.po
130-
msgfmt -o modules/instruments/locale/ja/LC_MESSAGES/instruments.mo modules/instruments/locale/ja/LC_MESSAGES/instruments.po
131-
msgfmt -o modules/instruments/locale/es/LC_MESSAGES/instruments.mo modules/instruments/locale/es/LC_MESSAGES/instruments.po
132-
msgfmt -o modules/issue_tracker/locale/ja/LC_MESSAGES/issue_tracker.mo modules/issue_tracker/locale/ja/LC_MESSAGES/issue_tracker.po
133-
msgfmt -o modules/login/locale/ja/LC_MESSAGES/login.mo modules/login/locale/ja/LC_MESSAGES/login.po
134-
msgfmt -o modules/media/locale/ja/LC_MESSAGES/media.mo modules/media/locale/ja/LC_MESSAGES/media.po
135-
msgfmt -o modules/module_manager/locale/ja/LC_MESSAGES/module_manager.mo modules/module_manager/locale/ja/LC_MESSAGES/module_manager.po
136-
msgfmt -o modules/mri_violations/locale/ja/LC_MESSAGES/mri_violations.mo modules/mri_violations/locale/ja/LC_MESSAGES/mri_violations.po
137-
msgfmt -o modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.mo modules/my_preferences/locale/hi/LC_MESSAGES/my_preferences.po
138-
msgfmt -o modules/next_stage/locale/ja/LC_MESSAGES/next_stage.mo modules/next_stage/locale/ja/LC_MESSAGES/next_stage.po
139-
msgfmt -o modules/next_stage/locale/es/LC_MESSAGES/next_stage.mo modules/next_stage/locale/es/LC_MESSAGES/next_stage.po
140-
msgfmt -o modules/oidc/locale/ja/LC_MESSAGES/oidc.mo modules/oidc/locale/ja/LC_MESSAGES/oidc.po
141-
msgfmt -o modules/publication/locale/ja/LC_MESSAGES/publication.mo modules/publication/locale/ja/LC_MESSAGES/publication.po
142-
msgfmt -o modules/schedule_module/locale/ja/LC_MESSAGES/schedule_module.mo modules/schedule_module/locale/ja/LC_MESSAGES/schedule_module.po
143-
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
144-
msgfmt -o modules/statistics/locale/ja/LC_MESSAGES/statistics.mo modules/statistics/locale/ja/LC_MESSAGES/statistics.po
145-
npx i18next-conv -l ja -s modules/statistics/locale/ja/LC_MESSAGES/statistics.po -t modules/statistics/locale/ja/LC_MESSAGES/statistics.json
146-
msgfmt -o modules/survey_accounts/locale/ja/LC_MESSAGES/survey_accounts.mo modules/survey_accounts/locale/ja/LC_MESSAGES/survey_accounts.po
147-
msgfmt -o modules/timepoint_list/locale/ja/LC_MESSAGES/timepoint_list.mo modules/timepoint_list/locale/ja/LC_MESSAGES/timepoint_list.po
148-
msgfmt -o modules/timepoint_list/locale/es/LC_MESSAGES/timepoint_list.mo modules/timepoint_list/locale/es/LC_MESSAGES/timepoint_list.po
149-
msgfmt -o modules/user_accounts/locale/ja/LC_MESSAGES/user_accounts.mo modules/user_accounts/locale/ja/LC_MESSAGES/user_accounts.po
150-
135+
locales: $(MOFILES) $(I18NJSONFILES)
151136

152137
acknowledgements: modules/acknowledgements/locale/ja/LC_MESSAGES/acknowledgements.mo
153138
target=acknowledgements npm run compile
154139

155140
create_timepoint:
156141
target=data_release npm run compile
157142

158-
data_release: modules/data_release/locale/hi/LC_MESSAGES/data_release.mo modules/data_release/locale/ja/LC_MESSAGES/data_release.mo
159-
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
160-
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
143+
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
161144
target=data_release npm run compile
162145

163146
instrument_manager: modules/instrument_manager/locale/ja/LC_MESSAGES/instrument_manager.mo
164147
target=instrument_manager npm run compile
165148

166149
dataquery: modules/dataquery/locale/ja/LC_MESSAGES/dataquery.mo
167-
msgfmt -o modules/dataquery/locale/ja/LC_MESSAGES/dataquery.mo modules/dataquery/locale/ja/LC_MESSAGES/dataquery.po
168150
target=dataquery npm run compile
169151

170152
login: modules/login/locale/ja/LC_MESSAGES/login.mo
@@ -179,9 +161,7 @@ mri_violations: modules/mri_violations/locale/ja/LC_MESSAGES/mri_violations.mo
179161
issue_tracker: modules/issue_tracker/locale/ja/LC_MESSAGES/issue_tracker.mo
180162
target=issue_tracker npm run compile
181163

182-
candidate_list: modules/candidate_list/locale/ja/LC_MESSAGES/candidate_list.mo modules/candidate_list/locale/hi/LC_MESSAGES/candidate_list.mo
183-
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
184-
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
164+
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
185165
target=candidate_list npm run compile
186166

187167
candidate_parameters: modules/candidate_parameters/locale/ja/LC_MESSAGES/candidate_parameters.mo

0 commit comments

Comments
 (0)