SVN revision: 15042
This commit is contained in:
Carsten Haitzler 2005-05-31 22:59:31 +00:00
parent c9861130f0
commit d9ee0636e0
5 changed files with 1230 additions and 4 deletions

1
TODO
View File

@ -55,6 +55,7 @@ Also look at all the .c files - they have their own localized TODO lists
These are in no particular order:
* add actions to flip desktops on a given zone and/or container only
* don't show borders before window
* double check edje and evas image caches are working
* breaking out config via ipc / e_remote is too much work. this needs to get

View File

@ -94,7 +94,7 @@ else
AC_DEFINE_UNQUOTED(LOCALE_DIR, "${datadir}/locale", "Locale directory")
fi
ALL_LINGUAS="bg de es fi fr ja pl pt ru zh_CN hu sl it"
ALL_LINGUAS="bg de es fi fr ja pl pt ru zh_CN hu sl it cs"
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION(0.12.1)

View File

@ -16,7 +16,8 @@ pl.mo \
zh_CN.mo \
hu.mo \
sl.mo \
it.mo
it.mo \
cs.mo
LANGS = \
fr \
@ -31,7 +32,8 @@ pl \
zh_CN \
hu \
sl \
it
it \
cs
EXTRA_DIST = \
enlightenment.pot \
@ -47,7 +49,8 @@ pl.po \
zh_CN.po \
hu.po \
sl.po \
it.po
it.po \
cs.po
ja.mo:
$(MSGFMT) -f -o $@ $(top_srcdir)/po/ja.po
@ -75,6 +78,8 @@ sl.mo:
$(MSGFMT) -f -o $@ $(top_srcdir)/po/sl.po
it.mo:
$(MSGFMT) -f -o $@ $(top_srcdir)/po/it.po
cs.mo:
$(MSGFMT) -f -o $@ $(top_srcdir)/po/cs.po
install-poDATA:
uninstall-poDATA:

1219
po/cs.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -56,6 +56,7 @@ e_intl_init(void)
ADD_LANG("hu_HU.UTF-8");
ADD_LANG("sl_SI.UTF-8");
ADD_LANG("it_IT.UTF-8");
ADD_LANG("cs_CS.UTF-8");
/* FIXME: NULL == use LANG. make this read a config value if it exists */
e_intl_language_set(getenv("LANG"));