diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-11-25 10:54:52 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-11-25 10:54:52 +0000 |
commit | 652d40895cc6b25c95f8cb84876e58f4b1871a1f (patch) | |
tree | fa6f284541cc32d02ed223f1652b1355d1a58ac8 /po/create_placeholder | |
parent | fca3adbb07c466f14c943d4057be7983b8b1da31 (diff) | |
download | urpmi-652d40895cc6b25c95f8cb84876e58f4b1871a1f.tar urpmi-652d40895cc6b25c95f8cb84876e58f4b1871a1f.tar.gz urpmi-652d40895cc6b25c95f8cb84876e58f4b1871a1f.tar.bz2 urpmi-652d40895cc6b25c95f8cb84876e58f4b1871a1f.tar.xz urpmi-652d40895cc6b25c95f8cb84876e58f4b1871a1f.zip |
Remove old C placeholder
Diffstat (limited to 'po/create_placeholder')
-rwxr-xr-x | po/create_placeholder | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/po/create_placeholder b/po/create_placeholder deleted file mode 100755 index a40287bb..00000000 --- a/po/create_placeholder +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -echo -e "\ -/* this is a placeholder so that xgettext can find the translatable - * strings. This file is automatically generated, look at - * ./create_placeholder - */ -char *foobar[] = { -/* This is a list of chars acceptable as a 'yes' answer to a Yes/No question; - you can put here the letters for 'yes' for your language, so people - can hit those keys in their keyboard to reply. - please keep the 'Yy' for compatibility reasons - */ - N_(\"Yy\"), -/* This is a list of chars acceptable as a 'no' answer to a Yes/No question; - you can put here the letters for 'no' for your language, so people - can hit those keys in their keyboard to reply. - please keep the 'Nn' for compatibility reasons - */ - N_(\"Nn\"), " > placeholder.h.$$ - -echo "};" >> placeholder.h.$$ - -# diff returns true if files are equal -if ! diff placeholder.h.$$ placeholder.h > /dev/null 2> /dev/null -then - cat placeholder.h.$$ > placeholder.h -fi -rm -f placeholder.h.$$ |