* 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:
parent
d3cd682eaf
commit
67ae9b7acd
@ -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
|
||||||
|
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user