Changes to be committed:

new file:   Makefile
	new file:   VERSION
	new file:   po/it.po
This commit is contained in:
Filippo Bedendo Bordon 2011-06-18 15:12:38 +02:00
parent c18e00a8b7
commit 28dc8e8799
3 changed files with 95 additions and 0 deletions

64
Makefile Normal file
View File

@ -0,0 +1,64 @@
#Makefile per license-dialog
#E' il primo che scrivo, quindi lascio il resto alla vostra immaginazione ;D
PACKAGE=license-dialog
distdir = $(PACKAGE)-$(VERSION)
dist_archive = $(distdir).tar.bz2
include VERSION
#Directory
bindir = /usr/bin
datadir = /usr/share
localesdir = ${datadir}/locale
DESTDIR =
INSTALL = /usr/bin/install
INSTALL_PROGRAM = ${INSTALL} -m 755
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_DIR = ${INSTALL} -d -m 755
INSTALL_SCRIPT = ${INSTALL_PROGRAM}
pck_catalogs := $(wildcard po/*.po)
.SUFFIXES: .po .mo
.po.mo:; msgfmt $< -o $@
all: locales
locales: $(pck_catalogs:.po=.mo)
install-locales: locales
@for f in $(pck_catalogs); do\
lang=`echo $$f | sed 's,.*/\(.*\)\.po,\1,'`;\
echo "installing i18n file for language \`$$lang'...";\
dir="$(DESTDIR)$(localesdir)/$$lang/LC_MESSAGES";\
$(INSTALL_DIR) $$dir;\
$(INSTALL_DATA) $${f/.po/.mo} $$dir/license-dialog.mo;\
done
install-dirs:
@$(INSTALL_DIR) $(DESTDIR)$(bindir)
install: install-dirs install-locales
$(INSTALL_PROGRAM) src/license-dialog $(DESTDIR)$(bindir)/license-dialog
clean:
rm -f $(pck_catalogs:.po=.mo)
rm -f $(dist_archive)
dist: clean
#@git clean -f
#@git log > ChangeLog
@mkdir /tmp/$(distdir)
@cp -a * /tmp/$(distdir)/
@rm -f $(dist_archive);\
tar cf - -C /tmp $(distdir) | bzip2 -9 -c > $(dist_archive)
@rm -rf /tmp/$(distdir)
@echo "file \`$(dist_archive)' created"
dist-rpm: dist
@rpm_sourcedir=`rpm --eval=%{_sourcedir}`;\
mv -f $(PACKAGE)-$(VERSION).tar.bz2 $$rpm_sourcedir;\
echo "File $$rpm_sourcedir/$(PACKAGE)-$(VERSION).tar.bz2 created."

1
VERSION Normal file
View File

@ -0,0 +1 @@
VERSION=0.1

30
po/it.po Normal file
View File

@ -0,0 +1,30 @@
msgid ""
msgstr ""
"Language: it\n"
"Content-Type: text/plain; charset=UTF-8\n"
msgid "Error: Wrong path"
msgstr "Errore: Percorso del file errato"
msgid "Licenze"
msgstr "Licenza"
msgid "I agree"
msgstr "Accetto"
msgid "Click here if you want to accept the license"
msgstr "Clicca qui se vuoi accettare la licenza"
msgid "I do not agree"
msgstr "Rifiuto"
msgid "Click here if you do <b>not</b> want to accept the license"
msgstr "Clicca qui se <b>non</b> vuoi accettare la licenza"
msgid "Message"
msgstr "Messaggio"
msgid "Are you sure to refuse?"
msgstr "Sei sicuro di voler rifiutare?"