Changeset bbc33d2b80aa24cd86e0041f299b0d15d821a24c
- 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:
-
Legend:
- Unmodified
- Added
- Removed
-
|
rb9f0eda
|
rbbc33d2
|
|
| | 1 | 2009-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 | |
| 1 | 8 | 2009-06-05 Philipp Kern <phil@0x539.de> |
| 2 | 9 | |
-
|
r59ac73a
|
rbbc33d2
|
|
| | 1 | 2009-08-29 Armin Burgmeier <armin@arbur.net> |
| | 2 | |
| | 3 | * POTFILES.in: Updated. |
| | 4 | |
| 1 | 5 | 2009-04-24 Armin Burgmeier <armin@arbur.net> |
| 2 | 6 | |
-
|
r59ac73a
|
rbbc33d2
|
|
| 9 | 9 | code/core/docwindow.cpp |
| 10 | 10 | code/core/header.cpp |
| | 11 | code/core/header.cpp.orig |
| 11 | 12 | code/core/iconmanager.cpp |
| 12 | 13 | code/core/statusbar.cpp |
| … |
… |
|
| 22 | 23 | code/operations/operation-new.cpp |
| 23 | 24 | code/operations/operation-open.cpp |
| | 25 | code/operations/operation-open-multiple.cpp |
| 24 | 26 | code/operations/operation-save.cpp |
| 25 | 27 | code/util/file.cpp |
| … |
… |
|
| 27 | 29 | code/util/i18n.hpp |
| 28 | 30 | code/window.cpp |
| 29 | | contrib/gobby-0.5.desktop.in |
| | 31 | gobby-0.5.desktop.in |
-
|
rb3204c2
|
rbbc33d2
|
|
| 1 | 1 | #!/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 |
| | 2 | grep --binary-files=without-match "_(" code -R | \ |
| | 3 | sed -e 's/:.*//' | uniq | sort > po/POTFILES.in |
| | 4 | echo gobby-0.5.desktop.in >> po/POTFILES.in |