Changeset bbc33d2b80aa24cd86e0041f299b0d15d821a24c

Show
Ignore:
Timestamp:
29/08/09 23:51:56 (4 years ago)
Author:
Armin Burgmeier <armin@…>
Parents:
b9f0eda66558c4d1215da5ff56da6466557ea331
Children:
dcd778951e9155d5bdddc09f3d63e7e50f47acf8
git-committer:
Armin Burgmeier <armin@arbur.net> / 2009-08-29T17:51:56Z-0400
Message:

Fix the update-potfiles script

2009-08-29 Armin Burgmeier <armin@…>

  • update-potfiles: Fixed path of the desktop file, and use --binary-file=without-matches instead of a checking for the string 'matches', so that it also works in non-english environments (Nicolás Alvarez).
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    rb9f0eda rbbc33d2  
     12009-08-29  Armin Burgmeier  <armin@arbur.net> 
     2 
     3        * update-potfiles: Fixed path of the desktop file, and use 
     4        --binary-file=without-matches instead of a checking for the string 
     5        'matches', so that it also works in non-english environments (Nicolás 
     6        Alvarez). 
     7 
    182009-06-05  Philipp Kern  <phil@0x539.de> 
    29 
  • po/ChangeLog

    r59ac73a rbbc33d2  
     12009-08-29  Armin Burgmeier  <armin@arbur.net> 
     2 
     3        * POTFILES.in: Updated. 
     4 
    152009-04-24  Armin Burgmeier  <armin@arbur.net> 
    26 
  • po/POTFILES.in

    r59ac73a rbbc33d2  
    99code/core/docwindow.cpp 
    1010code/core/header.cpp 
     11code/core/header.cpp.orig 
    1112code/core/iconmanager.cpp 
    1213code/core/statusbar.cpp 
     
    2223code/operations/operation-new.cpp 
    2324code/operations/operation-open.cpp 
     25code/operations/operation-open-multiple.cpp 
    2426code/operations/operation-save.cpp 
    2527code/util/file.cpp 
     
    2729code/util/i18n.hpp 
    2830code/window.cpp 
    29 contrib/gobby-0.5.desktop.in 
     31gobby-0.5.desktop.in 
  • update-potfiles

    rb3204c2 rbbc33d2  
    11#!/bin/sh 
    2 grep "_(" code -R | \ 
    3         sed -e 's/:.*//' | grep -v matches | uniq | sort > po/POTFILES.in 
    4 echo contrib/gobby-0.5.desktop.in >> po/POTFILES.in 
     2grep --binary-files=without-match "_(" code -R | \ 
     3        sed -e 's/:.*//' | uniq | sort > po/POTFILES.in 
     4echo gobby-0.5.desktop.in >> po/POTFILES.in