Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fprintd
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
18
Issues
18
List
Boards
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
libfprint
fprintd
Commits
688ba646
Commit
688ba646
authored
Sep 08, 2010
by
Bastien Nocera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add check for missing translations
So that we ship all the translations, and don't miss updating LINGUAS.
parent
7ece7446
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
Makefile.am
Makefile.am
+9
-0
No files found.
Makefile.am
View file @
688ba646
...
...
@@ -2,3 +2,12 @@ AUTOMAKE_OPTIONS = dist-bzip2
SUBDIRS
=
src data tests pam doc po
EXTRA_DIST
=
TODO intltool-extract.in intltool-merge.in intltool-update.in
check
:
check-translations
check-translations
:
@
for
i
in
$(top_srcdir)
/po/
*
.po
;
do
\
if
!
grep
-q
`
basename
$$
i |
sed
's,.po,,'
`
$(top_srcdir)
/po/LINGUAS
;
then
\
echo
'***'
`
basename
$$
i |
sed
's,.po,,'
`
missing from po/LINGUAS
'***'
;
\
exit
1
;
\
fi
;
\
done
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment