* src/po/Makefile.am: convert .po files to unicode before

running through msgfmt
* src/revision.glade: make the open dialog box a bit bigger


svn: r2085
This commit is contained in:
Don Allingham 2003-09-03 04:19:25 +00:00
parent c525f2feec
commit b6788a7fb3
2 changed files with 6 additions and 3 deletions

View File

@ -10,7 +10,7 @@ install-data-local:
$(INSTALL) -d $(DESTDIR)$(prefix)/share/locale/$$lang/LC_MESSAGES; \ $(INSTALL) -d $(DESTDIR)$(prefix)/share/locale/$$lang/LC_MESSAGES; \
$(INSTALL_DATA) $$lang.mo $(DESTDIR)$(prefix)/share/locale/$$lang/LC_MESSAGES/$(PACKAGE).mo; \ $(INSTALL_DATA) $$lang.mo $(DESTDIR)$(prefix)/share/locale/$$lang/LC_MESSAGES/$(PACKAGE).mo; \
done done
uninstall-local: uninstall-local:
for lang in $(LANGUAGES); do \ for lang in $(LANGUAGES); do \
rm -f $(DESTDIR)$(prefix)/share/locale/$$lang/LC_MESSAGES/gramps.mo; \ rm -f $(DESTDIR)$(prefix)/share/locale/$$lang/LC_MESSAGES/gramps.mo; \
@ -20,4 +20,7 @@ uninstall-local:
SUFFIXES = .po .mo SUFFIXES = .po .mo
.po.mo: .po.mo:
$(MSGFMT) -v $< -o $@ @MSGCONV@ --to-code=UTF-8 $< -o temp.po
$(MSGFMT) -v temp.po -o $@
rm temp.po

View File

@ -5,7 +5,7 @@
<requires lib="gnome"/> <requires lib="gnome"/>
<widget class="GtkDialog" id="dbopen"> <widget class="GtkDialog" id="dbopen">
<property name="width_request">450</property> <property name="width_request">500</property>
<property name="visible">True</property> <property name="visible">True</property>
<property name="title" translatable="yes"></property> <property name="title" translatable="yes"></property>
<property name="type">GTK_WINDOW_TOPLEVEL</property> <property name="type">GTK_WINDOW_TOPLEVEL</property>