~midori/midori/win32theme

« back to all changes in this revision

Viewing changes to tests/potfiles.sh

  • Committer: Transifex
  • Author(s): Yarema aka Knedlyk
  • Date: 2012-09-22 13:44:56 UTC
  • Revision ID: git-v1:2354a7ed0f7e0dd6f8ecaf49e62a5513b76192a4
l10n: Updated Ukrainian (uk) translation to 100%

New status: 622 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/env sh
2
 
# Copyright 2012 Christian Dywan <christian@twotoasts.de>
3
 
#
4
 
# This script is free software; you can redistribute it and/or
5
 
# modify it under the terms of the GNU Lesser General Public
6
 
# License as published by the Free Software Foundation; either
7
 
# version 2.1 of the License, or (at your option) any later version.
8
 
echo Checking POTFILES.in for completeness
9
 
test -n "$SRCDIR" && cd $SRCDIR
10
 
test -z "$BLDDIR" && BLDDIR=_build
11
 
for i in $(find . -regextype posix-egrep \! -regex "./($BLDDIR|debian|tests)/.+" -a -regex './[^.]+.+[.](vala|c)'); do
12
 
    grep -q $(basename $i) po/POTFILES.in || FILES="$FILES$i\n"
13
 
done
14
 
test -n "$FILES" && echo "$FILES...FAILED"
15
 
test -z "$FILES" && echo "...OK"