~midori/midori/win32theme

« back to all changes in this revision

Viewing changes to tests/desktop.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 2013 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 Validating .desktop files
9
 
test -z $(which desktop-file-validate) && echo ...SKIPPED: not installed && return 0
10
 
test -z "$SRCDIR" && SRCDIR=$PWD
11
 
test -z "$BLDDIR" && BLDDIR=_build
12
 
cd "$SRCDIR/$BLDDIR/default/data"
13
 
ERRORS=0
14
 
for i in $(ls | GREP_OPTIONS= grep .desktop); do
15
 
    for j in $(desktop-file-validate $i | grep -v 'unregistered value "Pantheon"' | tr ' ' '_'); do
16
 
        ERRORS=1
17
 
        echo $j | tr '_' ' '
18
 
    done
19
 
done
20
 
test "$ERRORS" = 1 && echo ...FAILED && exit 1
21
 
echo ...OK