├── .travis.yml ├── Makefile ├── README-en.md ├── README-ru.md ├── README.md ├── app_interface.kv ├── data ├── locales │ ├── en │ │ └── LC_MESSAGES │ │ │ └── langapp.mo │ └── ru │ │ └── LC_MESSAGES │ │ └── langapp.mo └── logo │ ├── logo3-min.png │ ├── logo512min.png │ └── presplash512okmin.png ├── iconv.exe ├── libcharset-1.dll ├── libgcc_s_sjlj-1.dll ├── libgettextlib-0-21.dll ├── libgettextpo-0.dll ├── libgettextsrc-0-21.dll ├── libiconv-2.dll ├── libintl-8.dll ├── libstdc++-6.dll ├── libtextstyle-0.dll ├── libwinpthread-1.dll ├── main.py ├── messages.pot ├── msgattrib.exe ├── msgcat.exe ├── msgcmp.exe ├── msgcomm.exe ├── msgconv.exe ├── msgen.exe ├── msgexec.exe ├── msgfilter.exe ├── msgfmt.exe ├── msggrep.exe ├── msginit.exe ├── msgmerge.exe ├── msgunfmt.exe ├── msguniq.exe ├── po ├── en.po └── ru.po ├── recode-sr-latin.exe ├── requirements.txt ├── update_lang.cmd └── xgettext.exe /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/Makefile -------------------------------------------------------------------------------- /README-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/README-en.md -------------------------------------------------------------------------------- /README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/README-ru.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/README.md -------------------------------------------------------------------------------- /app_interface.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/app_interface.kv -------------------------------------------------------------------------------- /data/locales/en/LC_MESSAGES/langapp.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/data/locales/en/LC_MESSAGES/langapp.mo -------------------------------------------------------------------------------- /data/locales/ru/LC_MESSAGES/langapp.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/data/locales/ru/LC_MESSAGES/langapp.mo -------------------------------------------------------------------------------- /data/logo/logo3-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/data/logo/logo3-min.png -------------------------------------------------------------------------------- /data/logo/logo512min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/data/logo/logo512min.png -------------------------------------------------------------------------------- /data/logo/presplash512okmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/data/logo/presplash512okmin.png -------------------------------------------------------------------------------- /iconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/iconv.exe -------------------------------------------------------------------------------- /libcharset-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/libcharset-1.dll -------------------------------------------------------------------------------- /libgcc_s_sjlj-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/libgcc_s_sjlj-1.dll -------------------------------------------------------------------------------- /libgettextlib-0-21.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/libgettextlib-0-21.dll -------------------------------------------------------------------------------- /libgettextpo-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/libgettextpo-0.dll -------------------------------------------------------------------------------- /libgettextsrc-0-21.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/libgettextsrc-0-21.dll -------------------------------------------------------------------------------- /libiconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/libiconv-2.dll -------------------------------------------------------------------------------- /libintl-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/libintl-8.dll -------------------------------------------------------------------------------- /libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/libstdc++-6.dll -------------------------------------------------------------------------------- /libtextstyle-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/libtextstyle-0.dll -------------------------------------------------------------------------------- /libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/libwinpthread-1.dll -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/main.py -------------------------------------------------------------------------------- /messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/messages.pot -------------------------------------------------------------------------------- /msgattrib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msgattrib.exe -------------------------------------------------------------------------------- /msgcat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msgcat.exe -------------------------------------------------------------------------------- /msgcmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msgcmp.exe -------------------------------------------------------------------------------- /msgcomm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msgcomm.exe -------------------------------------------------------------------------------- /msgconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msgconv.exe -------------------------------------------------------------------------------- /msgen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msgen.exe -------------------------------------------------------------------------------- /msgexec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msgexec.exe -------------------------------------------------------------------------------- /msgfilter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msgfilter.exe -------------------------------------------------------------------------------- /msgfmt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msgfmt.exe -------------------------------------------------------------------------------- /msggrep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msggrep.exe -------------------------------------------------------------------------------- /msginit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msginit.exe -------------------------------------------------------------------------------- /msgmerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msgmerge.exe -------------------------------------------------------------------------------- /msgunfmt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msgunfmt.exe -------------------------------------------------------------------------------- /msguniq.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/msguniq.exe -------------------------------------------------------------------------------- /po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/po/en.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/po/ru.po -------------------------------------------------------------------------------- /recode-sr-latin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/recode-sr-latin.exe -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/requirements.txt -------------------------------------------------------------------------------- /update_lang.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/update_lang.cmd -------------------------------------------------------------------------------- /xgettext.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/MortgageCalculator/HEAD/xgettext.exe --------------------------------------------------------------------------------