aboutsummaryrefslogtreecommitdiffstats
path: root/math
diff options
context:
space:
mode:
authorkwm <kwm@FreeBSD.org>2015-07-28 04:19:33 +0800
committerkwm <kwm@FreeBSD.org>2015-07-28 04:19:33 +0800
commitf3a030abc46a4b0256ee69dd4918b96f535a295d (patch)
tree0d276f72ec80621ae31f35239a1c27ae16c21bba /math
parentc0e75495d2db694b13f48fd2ce73094f2affcc17 (diff)
downloadfreebsd-ports-gnome-f3a030abc46a4b0256ee69dd4918b96f535a295d.tar.gz
freebsd-ports-gnome-f3a030abc46a4b0256ee69dd4918b96f535a295d.tar.zst
freebsd-ports-gnome-f3a030abc46a4b0256ee69dd4918b96f535a295d.zip
Update MATE DE to 1.10.0.
This MATE is still build agains GTK+2. Sort USES here and there. Replace mate-dialogs with zenity and mate-calc with galculator. This update fixes the following PR's: PR: 193942, 191885 Submitted by: Gustau Perez <gustau.perez@gmail.com> via Gnome devel repo Obtained from: gnome devel repo.
Diffstat (limited to 'math')
-rw-r--r--math/Makefile1
-rw-r--r--math/mate-calc/Makefile27
-rw-r--r--math/mate-calc/distinfo2
-rw-r--r--math/mate-calc/files/patch-src_mate-calc-cmd.c93
-rw-r--r--math/mate-calc/pkg-descr5
-rw-r--r--math/mate-calc/pkg-plist833
6 files changed, 0 insertions, 961 deletions
diff --git a/math/Makefile b/math/Makefile
index 12c4210e34e6..86c935719191 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -237,7 +237,6 @@
SUBDIR += ltl
SUBDIR += ltl2ba
SUBDIR += lybniz
- SUBDIR += mate-calc
SUBDIR += mathomatic
SUBDIR += matio
SUBDIR += matlab-installer
diff --git a/math/mate-calc/Makefile b/math/mate-calc/Makefile
deleted file mode 100644
index 5fc43ac50618..000000000000
--- a/math/mate-calc/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= mate-calc
-PORTVERSION= 1.8.0
-PORTREVISION= 1
-CATEGORIES= math mate
-MASTER_SITES= MATE
-DIST_SUBDIR= mate
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= MATE calculator tool based on the old calctool for OpenWindows
-
-BUILD_DEPENDS= itstool:${PORTSDIR}/textproc/itstool
-
-PORTSCOUT= limitw:1,even
-
-USES= gettext gmake pkgconfig tar:xz
-USE_GNOME= glib20 gtk20 intlhack libxml2
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --with-gtk=2.0
-CPPFLAGS+= -I${LOCALBASE}/include
-LIBS+= -L${LOCALBASE}/lib
-
-GLIB_SCHEMAS= org.mate.calc.gschema.xml
-
-.include <bsd.port.mk>
diff --git a/math/mate-calc/distinfo b/math/mate-calc/distinfo
deleted file mode 100644
index f326e0e42247..000000000000
--- a/math/mate-calc/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (mate/mate-calc-1.8.0.tar.xz) = 13d56287430cbb7d60a74666ba752a1a8ea9692125c6a02f97d0cc98d451d99a
-SIZE (mate/mate-calc-1.8.0.tar.xz) = 753972
diff --git a/math/mate-calc/files/patch-src_mate-calc-cmd.c b/math/mate-calc/files/patch-src_mate-calc-cmd.c
deleted file mode 100644
index 86806b5f0b01..000000000000
--- a/math/mate-calc/files/patch-src_mate-calc-cmd.c
+++ /dev/null
@@ -1,93 +0,0 @@
---- src/mate-calc-cmd.c.orig 2013-03-24 20:56:44.000000000 -0500
-+++ src/mate-calc-cmd.c 2013-03-24 20:58:28.000000000 -0500
-@@ -8,10 +8,12 @@
- * license.
- */
-
-+#include <errno.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <sys/types.h>
-+#include <sys/param.h>
- #include <time.h>
- #include <locale.h>
-
-@@ -22,6 +24,77 @@
-
- static MpSerializer *result_serializer;
-
-+#if __FreeBSD_version < 800067
-+static ssize_t
-+getline (char **lineptr, size_t *n, FILE *stream)
-+{
-+ char *line, *p;
-+ long size, copy;
-+
-+ if (lineptr == NULL || n == NULL) {
-+ errno = EINVAL;
-+ return (ssize_t) -1;
-+ }
-+
-+ if (ferror (stream))
-+ return (ssize_t) -1;
-+
-+ /* Make sure we have a line buffer to start with. */
-+ if (*lineptr == NULL || *n < 2) /* !seen and no buf yet need 2 chars. */ {
-+#ifndef MAX_CANON
-+#define MAX_CANON 256
-+#endif
-+ if (!*lineptr)
-+ line = (char *) malloc (MAX_CANON);
-+ else
-+ line = (char *) realloc (*lineptr, MAX_CANON);
-+ if (line == NULL)
-+ return (ssize_t) -1;
-+ *lineptr = line;
-+ *n = MAX_CANON;
-+ }
-+
-+ line = *lineptr;
-+ size = *n;
-+
-+ copy = size;
-+ p = line;
-+
-+ while (1) {
-+ long len;
-+
-+ while (--copy > 0) {
-+ int c = getc (stream);
-+
-+ if (c == EOF)
-+ goto lose;
-+ else if ((*p++ = c) == '\n')
-+ goto win;
-+ }
-+
-+ /* Need to enlarge the line buffer. */
-+ len = p - line;
-+ size *= 2;
-+ line = (char *) realloc (line, size);
-+ if (line == NULL)
-+ goto lose;
-+ *lineptr = line;
-+ *n = size;
-+ p = line + len;
-+ copy = size - len;
-+ }
-+
-+lose:
-+ if (p == *lineptr)
-+ return (ssize_t) -1;
-+
-+ /* Return a partial line since we got an error in the middle. */
-+win:
-+ *p = '\0';
-+ return p - *lineptr;
-+}
-+#endif
-+
- static void
- solve(const char *equation)
- {
diff --git a/math/mate-calc/pkg-descr b/math/mate-calc/pkg-descr
deleted file mode 100644
index df9fa7a42b73..000000000000
--- a/math/mate-calc/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-Mate-calc is a powerful graphical calulator with financial, logical and
-scientific modes. It uses a multiple precision package to do its arithmetic to
-give a high degree of accuracy.
-
-WWW: http://mate-desktop.org/
diff --git a/math/mate-calc/pkg-plist b/math/mate-calc/pkg-plist
deleted file mode 100644
index 26bdea006882..000000000000
--- a/math/mate-calc/pkg-plist
+++ /dev/null
@@ -1,833 +0,0 @@
-bin/mate-calc
-bin/mate-calc-cmd
-bin/mate-calculator
-man/man1/mate-calc.1.gz
-man/man1/mate-calc-cmd.1.gz
-share/applications/mate-calc.desktop
-share/help/C/mate-calc/absolute.page
-share/help/C/mate-calc/base.page
-share/help/C/mate-calc/boolean.page
-share/help/C/mate-calc/complex.page
-share/help/C/mate-calc/conv-base.page
-share/help/C/mate-calc/conv-character.page
-share/help/C/mate-calc/conv-currency.page
-share/help/C/mate-calc/conv-length.page
-share/help/C/mate-calc/conv-time.page
-share/help/C/mate-calc/conv-weight.page
-share/help/C/mate-calc/equation.page
-share/help/C/mate-calc/factorial.page
-share/help/C/mate-calc/factorize.page
-share/help/C/mate-calc/financial.page
-share/help/C/mate-calc/functions.page
-share/help/C/mate-calc/index.page
-share/help/C/mate-calc/keyboard.page
-share/help/C/mate-calc/legal.xml
-share/help/C/mate-calc/logarithm.page
-share/help/C/mate-calc/modulus.page
-share/help/C/mate-calc/mouse.page
-share/help/C/mate-calc/number-display.page
-share/help/C/mate-calc/percentage.page
-share/help/C/mate-calc/power.page
-share/help/C/mate-calc/scientific.page
-share/help/C/mate-calc/superscript.page
-share/help/C/mate-calc/trigonometry.page
-share/help/C/mate-calc/variables.page
-share/help/bg/mate-calc/absolute.page
-share/help/bg/mate-calc/base.page
-share/help/bg/mate-calc/boolean.page
-share/help/bg/mate-calc/complex.page
-share/help/bg/mate-calc/conv-base.page
-share/help/bg/mate-calc/conv-character.page
-share/help/bg/mate-calc/conv-currency.page
-share/help/bg/mate-calc/conv-length.page
-share/help/bg/mate-calc/conv-time.page
-share/help/bg/mate-calc/conv-weight.page
-share/help/bg/mate-calc/equation.page
-share/help/bg/mate-calc/factorial.page
-share/help/bg/mate-calc/factorize.page
-share/help/bg/mate-calc/financial.page
-share/help/bg/mate-calc/functions.page
-share/help/bg/mate-calc/index.page
-share/help/bg/mate-calc/keyboard.page
-share/help/bg/mate-calc/legal.xml
-share/help/bg/mate-calc/logarithm.page
-share/help/bg/mate-calc/modulus.page
-share/help/bg/mate-calc/mouse.page
-share/help/bg/mate-calc/number-display.page
-share/help/bg/mate-calc/percentage.page
-share/help/bg/mate-calc/power.page
-share/help/bg/mate-calc/scientific.page
-share/help/bg/mate-calc/superscript.page
-share/help/bg/mate-calc/trigonometry.page
-share/help/bg/mate-calc/variables.page
-share/help/ca/mate-calc/absolute.page
-share/help/ca/mate-calc/base.page
-share/help/ca/mate-calc/boolean.page
-share/help/ca/mate-calc/complex.page
-share/help/ca/mate-calc/conv-base.page
-share/help/ca/mate-calc/conv-character.page
-share/help/ca/mate-calc/conv-currency.page
-share/help/ca/mate-calc/conv-length.page
-share/help/ca/mate-calc/conv-time.page
-share/help/ca/mate-calc/conv-weight.page
-share/help/ca/mate-calc/equation.page
-share/help/ca/mate-calc/factorial.page
-share/help/ca/mate-calc/factorize.page
-share/help/ca/mate-calc/financial.page
-share/help/ca/mate-calc/functions.page
-share/help/ca/mate-calc/index.page
-share/help/ca/mate-calc/keyboard.page
-share/help/ca/mate-calc/legal.xml
-share/help/ca/mate-calc/logarithm.page
-share/help/ca/mate-calc/modulus.page
-share/help/ca/mate-calc/mouse.page
-share/help/ca/mate-calc/number-display.page
-share/help/ca/mate-calc/percentage.page
-share/help/ca/mate-calc/power.page
-share/help/ca/mate-calc/scientific.page
-share/help/ca/mate-calc/superscript.page
-share/help/ca/mate-calc/trigonometry.page
-share/help/ca/mate-calc/variables.page
-share/help/cs/mate-calc/absolute.page
-share/help/cs/mate-calc/base.page
-share/help/cs/mate-calc/boolean.page
-share/help/cs/mate-calc/complex.page
-share/help/cs/mate-calc/conv-base.page
-share/help/cs/mate-calc/conv-character.page
-share/help/cs/mate-calc/conv-currency.page
-share/help/cs/mate-calc/conv-length.page
-share/help/cs/mate-calc/conv-time.page
-share/help/cs/mate-calc/conv-weight.page
-share/help/cs/mate-calc/equation.page
-share/help/cs/mate-calc/factorial.page
-share/help/cs/mate-calc/factorize.page
-share/help/cs/mate-calc/financial.page
-share/help/cs/mate-calc/functions.page
-share/help/cs/mate-calc/index.page
-share/help/cs/mate-calc/keyboard.page
-share/help/cs/mate-calc/legal.xml
-share/help/cs/mate-calc/logarithm.page
-share/help/cs/mate-calc/modulus.page
-share/help/cs/mate-calc/mouse.page
-share/help/cs/mate-calc/number-display.page
-share/help/cs/mate-calc/percentage.page
-share/help/cs/mate-calc/power.page
-share/help/cs/mate-calc/scientific.page
-share/help/cs/mate-calc/superscript.page
-share/help/cs/mate-calc/trigonometry.page
-share/help/cs/mate-calc/variables.page
-share/help/de/mate-calc/absolute.page
-share/help/de/mate-calc/base.page
-share/help/de/mate-calc/boolean.page
-share/help/de/mate-calc/complex.page
-share/help/de/mate-calc/conv-base.page
-share/help/de/mate-calc/conv-character.page
-share/help/de/mate-calc/conv-currency.page
-share/help/de/mate-calc/conv-length.page
-share/help/de/mate-calc/conv-time.page
-share/help/de/mate-calc/conv-weight.page
-share/help/de/mate-calc/equation.page
-share/help/de/mate-calc/factorial.page
-share/help/de/mate-calc/factorize.page
-share/help/de/mate-calc/financial.page
-share/help/de/mate-calc/functions.page
-share/help/de/mate-calc/index.page
-share/help/de/mate-calc/keyboard.page
-share/help/de/mate-calc/legal.xml
-share/help/de/mate-calc/logarithm.page
-share/help/de/mate-calc/modulus.page
-share/help/de/mate-calc/mouse.page
-share/help/de/mate-calc/number-display.page
-share/help/de/mate-calc/percentage.page
-share/help/de/mate-calc/power.page
-share/help/de/mate-calc/scientific.page
-share/help/de/mate-calc/superscript.page
-share/help/de/mate-calc/trigonometry.page
-share/help/de/mate-calc/variables.page
-share/help/el/mate-calc/absolute.page
-share/help/el/mate-calc/base.page
-share/help/el/mate-calc/boolean.page
-share/help/el/mate-calc/complex.page
-share/help/el/mate-calc/conv-base.page
-share/help/el/mate-calc/conv-character.page
-share/help/el/mate-calc/conv-currency.page
-share/help/el/mate-calc/conv-length.page
-share/help/el/mate-calc/conv-time.page
-share/help/el/mate-calc/conv-weight.page
-share/help/el/mate-calc/equation.page
-share/help/el/mate-calc/factorial.page
-share/help/el/mate-calc/factorize.page
-share/help/el/mate-calc/financial.page
-share/help/el/mate-calc/functions.page
-share/help/el/mate-calc/index.page
-share/help/el/mate-calc/keyboard.page
-share/help/el/mate-calc/legal.xml
-share/help/el/mate-calc/logarithm.page
-share/help/el/mate-calc/modulus.page
-share/help/el/mate-calc/mouse.page
-share/help/el/mate-calc/number-display.page
-share/help/el/mate-calc/percentage.page
-share/help/el/mate-calc/power.page
-share/help/el/mate-calc/scientific.page
-share/help/el/mate-calc/superscript.page
-share/help/el/mate-calc/trigonometry.page
-share/help/el/mate-calc/variables.page
-share/help/es/mate-calc/absolute.page
-share/help/es/mate-calc/base.page
-share/help/es/mate-calc/boolean.page
-share/help/es/mate-calc/complex.page
-share/help/es/mate-calc/conv-base.page
-share/help/es/mate-calc/conv-character.page
-share/help/es/mate-calc/conv-currency.page
-share/help/es/mate-calc/conv-length.page
-share/help/es/mate-calc/conv-time.page
-share/help/es/mate-calc/conv-weight.page
-share/help/es/mate-calc/equation.page
-share/help/es/mate-calc/factorial.page
-share/help/es/mate-calc/factorize.page
-share/help/es/mate-calc/financial.page
-share/help/es/mate-calc/functions.page
-share/help/es/mate-calc/index.page
-share/help/es/mate-calc/keyboard.page
-share/help/es/mate-calc/legal.xml
-share/help/es/mate-calc/logarithm.page
-share/help/es/mate-calc/modulus.page
-share/help/es/mate-calc/mouse.page
-share/help/es/mate-calc/number-display.page
-share/help/es/mate-calc/percentage.page
-share/help/es/mate-calc/power.page
-share/help/es/mate-calc/scientific.page
-share/help/es/mate-calc/superscript.page
-share/help/es/mate-calc/trigonometry.page
-share/help/es/mate-calc/variables.page
-share/help/eu/mate-calc/absolute.page
-share/help/eu/mate-calc/base.page
-share/help/eu/mate-calc/boolean.page
-share/help/eu/mate-calc/complex.page
-share/help/eu/mate-calc/conv-base.page
-share/help/eu/mate-calc/conv-character.page
-share/help/eu/mate-calc/conv-currency.page
-share/help/eu/mate-calc/conv-length.page
-share/help/eu/mate-calc/conv-time.page
-share/help/eu/mate-calc/conv-weight.page
-share/help/eu/mate-calc/equation.page
-share/help/eu/mate-calc/factorial.page
-share/help/eu/mate-calc/factorize.page
-share/help/eu/mate-calc/financial.page
-share/help/eu/mate-calc/functions.page
-share/help/eu/mate-calc/index.page
-share/help/eu/mate-calc/keyboard.page
-share/help/eu/mate-calc/legal.xml
-share/help/eu/mate-calc/logarithm.page
-share/help/eu/mate-calc/modulus.page
-share/help/eu/mate-calc/mouse.page
-share/help/eu/mate-calc/number-display.page
-share/help/eu/mate-calc/percentage.page
-share/help/eu/mate-calc/power.page
-share/help/eu/mate-calc/scientific.page
-share/help/eu/mate-calc/superscript.page
-share/help/eu/mate-calc/trigonometry.page
-share/help/eu/mate-calc/variables.page
-share/help/fi/mate-calc/absolute.page
-share/help/fi/mate-calc/base.page
-share/help/fi/mate-calc/boolean.page
-share/help/fi/mate-calc/complex.page
-share/help/fi/mate-calc/conv-base.page
-share/help/fi/mate-calc/conv-character.page
-share/help/fi/mate-calc/conv-currency.page
-share/help/fi/mate-calc/conv-length.page
-share/help/fi/mate-calc/conv-time.page
-share/help/fi/mate-calc/conv-weight.page
-share/help/fi/mate-calc/equation.page
-share/help/fi/mate-calc/factorial.page
-share/help/fi/mate-calc/factorize.page
-share/help/fi/mate-calc/financial.page
-share/help/fi/mate-calc/functions.page
-share/help/fi/mate-calc/index.page
-share/help/fi/mate-calc/keyboard.page
-share/help/fi/mate-calc/legal.xml
-share/help/fi/mate-calc/logarithm.page
-share/help/fi/mate-calc/modulus.page
-share/help/fi/mate-calc/mouse.page
-share/help/fi/mate-calc/number-display.page
-share/help/fi/mate-calc/percentage.page
-share/help/fi/mate-calc/power.page
-share/help/fi/mate-calc/scientific.page
-share/help/fi/mate-calc/superscript.page
-share/help/fi/mate-calc/trigonometry.page
-share/help/fi/mate-calc/variables.page
-share/help/fr/mate-calc/absolute.page
-share/help/fr/mate-calc/base.page
-share/help/fr/mate-calc/boolean.page
-share/help/fr/mate-calc/complex.page
-share/help/fr/mate-calc/conv-base.page
-share/help/fr/mate-calc/conv-character.page
-share/help/fr/mate-calc/conv-currency.page
-share/help/fr/mate-calc/conv-length.page
-share/help/fr/mate-calc/conv-time.page
-share/help/fr/mate-calc/conv-weight.page
-share/help/fr/mate-calc/equation.page
-share/help/fr/mate-calc/factorial.page
-share/help/fr/mate-calc/factorize.page
-share/help/fr/mate-calc/financial.page
-share/help/fr/mate-calc/functions.page
-share/help/fr/mate-calc/index.page
-share/help/fr/mate-calc/keyboard.page
-share/help/fr/mate-calc/legal.xml
-share/help/fr/mate-calc/logarithm.page
-share/help/fr/mate-calc/modulus.page
-share/help/fr/mate-calc/mouse.page
-share/help/fr/mate-calc/number-display.page
-share/help/fr/mate-calc/percentage.page
-share/help/fr/mate-calc/power.page
-share/help/fr/mate-calc/scientific.page
-share/help/fr/mate-calc/superscript.page
-share/help/fr/mate-calc/trigonometry.page
-share/help/fr/mate-calc/variables.page
-share/help/gl/mate-calc/absolute.page
-share/help/gl/mate-calc/base.page
-share/help/gl/mate-calc/boolean.page
-share/help/gl/mate-calc/complex.page
-share/help/gl/mate-calc/conv-base.page
-share/help/gl/mate-calc/conv-character.page
-share/help/gl/mate-calc/conv-currency.page
-share/help/gl/mate-calc/conv-length.page
-share/help/gl/mate-calc/conv-time.page
-share/help/gl/mate-calc/conv-weight.page
-share/help/gl/mate-calc/equation.page
-share/help/gl/mate-calc/factorial.page
-share/help/gl/mate-calc/factorize.page
-share/help/gl/mate-calc/financial.page
-share/help/gl/mate-calc/functions.page
-share/help/gl/mate-calc/index.page
-share/help/gl/mate-calc/keyboard.page
-share/help/gl/mate-calc/legal.xml
-share/help/gl/mate-calc/logarithm.page
-share/help/gl/mate-calc/modulus.page
-share/help/gl/mate-calc/mouse.page
-share/help/gl/mate-calc/number-display.page
-share/help/gl/mate-calc/percentage.page
-share/help/gl/mate-calc/power.page
-share/help/gl/mate-calc/scientific.page
-share/help/gl/mate-calc/superscript.page
-share/help/gl/mate-calc/trigonometry.page
-share/help/gl/mate-calc/variables.page
-share/help/hu/mate-calc/absolute.page
-share/help/hu/mate-calc/base.page
-share/help/hu/mate-calc/boolean.page
-share/help/hu/mate-calc/complex.page
-share/help/hu/mate-calc/conv-base.page
-share/help/hu/mate-calc/conv-character.page
-share/help/hu/mate-calc/conv-currency.page
-share/help/hu/mate-calc/conv-length.page
-share/help/hu/mate-calc/conv-time.page
-share/help/hu/mate-calc/conv-weight.page
-share/help/hu/mate-calc/equation.page
-share/help/hu/mate-calc/factorial.page
-share/help/hu/mate-calc/factorize.page
-share/help/hu/mate-calc/financial.page
-share/help/hu/mate-calc/functions.page
-share/help/hu/mate-calc/index.page
-share/help/hu/mate-calc/keyboard.page
-share/help/hu/mate-calc/legal.xml
-share/help/hu/mate-calc/logarithm.page
-share/help/hu/mate-calc/modulus.page
-share/help/hu/mate-calc/mouse.page
-share/help/hu/mate-calc/number-display.page
-share/help/hu/mate-calc/percentage.page
-share/help/hu/mate-calc/power.page
-share/help/hu/mate-calc/scientific.page
-share/help/hu/mate-calc/superscript.page
-share/help/hu/mate-calc/trigonometry.page
-share/help/hu/mate-calc/variables.page
-share/help/it/mate-calc/absolute.page
-share/help/it/mate-calc/base.page
-share/help/it/mate-calc/boolean.page
-share/help/it/mate-calc/complex.page
-share/help/it/mate-calc/conv-base.page
-share/help/it/mate-calc/conv-character.page
-share/help/it/mate-calc/conv-currency.page
-share/help/it/mate-calc/conv-length.page
-share/help/it/mate-calc/conv-time.page
-share/help/it/mate-calc/conv-weight.page
-share/help/it/mate-calc/equation.page
-share/help/it/mate-calc/factorial.page
-share/help/it/mate-calc/factorize.page
-share/help/it/mate-calc/financial.page
-share/help/it/mate-calc/functions.page
-share/help/it/mate-calc/index.page
-share/help/it/mate-calc/keyboard.page
-share/help/it/mate-calc/legal.xml
-share/help/it/mate-calc/logarithm.page
-share/help/it/mate-calc/modulus.page
-share/help/it/mate-calc/mouse.page
-share/help/it/mate-calc/number-display.page
-share/help/it/mate-calc/percentage.page
-share/help/it/mate-calc/power.page
-share/help/it/mate-calc/scientific.page
-share/help/it/mate-calc/superscript.page
-share/help/it/mate-calc/trigonometry.page
-share/help/it/mate-calc/variables.page
-share/help/ja/mate-calc/absolute.page
-share/help/ja/mate-calc/base.page
-share/help/ja/mate-calc/boolean.page
-share/help/ja/mate-calc/complex.page
-share/help/ja/mate-calc/conv-base.page
-share/help/ja/mate-calc/conv-character.page
-share/help/ja/mate-calc/conv-currency.page
-share/help/ja/mate-calc/conv-length.page
-share/help/ja/mate-calc/conv-time.page
-share/help/ja/mate-calc/conv-weight.page
-share/help/ja/mate-calc/equation.page
-share/help/ja/mate-calc/factorial.page
-share/help/ja/mate-calc/factorize.page
-share/help/ja/mate-calc/financial.page
-share/help/ja/mate-calc/functions.page
-share/help/ja/mate-calc/index.page
-share/help/ja/mate-calc/keyboard.page
-share/help/ja/mate-calc/legal.xml
-share/help/ja/mate-calc/logarithm.page
-share/help/ja/mate-calc/modulus.page
-share/help/ja/mate-calc/mouse.page
-share/help/ja/mate-calc/number-display.page
-share/help/ja/mate-calc/percentage.page
-share/help/ja/mate-calc/power.page
-share/help/ja/mate-calc/scientific.page
-share/help/ja/mate-calc/superscript.page
-share/help/ja/mate-calc/trigonometry.page
-share/help/ja/mate-calc/variables.page
-share/help/ko/mate-calc/absolute.page
-share/help/ko/mate-calc/base.page
-share/help/ko/mate-calc/boolean.page
-share/help/ko/mate-calc/complex.page
-share/help/ko/mate-calc/conv-base.page
-share/help/ko/mate-calc/conv-character.page
-share/help/ko/mate-calc/conv-currency.page
-share/help/ko/mate-calc/conv-length.page
-share/help/ko/mate-calc/conv-time.page
-share/help/ko/mate-calc/conv-weight.page
-share/help/ko/mate-calc/equation.page
-share/help/ko/mate-calc/factorial.page
-share/help/ko/mate-calc/factorize.page
-share/help/ko/mate-calc/financial.page
-share/help/ko/mate-calc/functions.page
-share/help/ko/mate-calc/index.page
-share/help/ko/mate-calc/keyboard.page
-share/help/ko/mate-calc/legal.xml
-share/help/ko/mate-calc/logarithm.page
-share/help/ko/mate-calc/modulus.page
-share/help/ko/mate-calc/mouse.page
-share/help/ko/mate-calc/number-display.page
-share/help/ko/mate-calc/percentage.page
-share/help/ko/mate-calc/power.page
-share/help/ko/mate-calc/scientific.page
-share/help/ko/mate-calc/superscript.page
-share/help/ko/mate-calc/trigonometry.page
-share/help/ko/mate-calc/variables.page
-share/help/lv/mate-calc/absolute.page
-share/help/lv/mate-calc/base.page
-share/help/lv/mate-calc/boolean.page
-share/help/lv/mate-calc/complex.page
-share/help/lv/mate-calc/conv-base.page
-share/help/lv/mate-calc/conv-character.page
-share/help/lv/mate-calc/conv-currency.page
-share/help/lv/mate-calc/conv-length.page
-share/help/lv/mate-calc/conv-time.page
-share/help/lv/mate-calc/conv-weight.page
-share/help/lv/mate-calc/equation.page
-share/help/lv/mate-calc/factorial.page
-share/help/lv/mate-calc/factorize.page
-share/help/lv/mate-calc/financial.page
-share/help/lv/mate-calc/functions.page
-share/help/lv/mate-calc/index.page
-share/help/lv/mate-calc/keyboard.page
-share/help/lv/mate-calc/legal.xml
-share/help/lv/mate-calc/logarithm.page
-share/help/lv/mate-calc/modulus.page
-share/help/lv/mate-calc/mouse.page
-share/help/lv/mate-calc/number-display.page
-share/help/lv/mate-calc/percentage.page
-share/help/lv/mate-calc/power.page
-share/help/lv/mate-calc/scientific.page
-share/help/lv/mate-calc/superscript.page
-share/help/lv/mate-calc/trigonometry.page
-share/help/lv/mate-calc/variables.page
-share/help/oc/mate-calc/absolute.page
-share/help/oc/mate-calc/base.page
-share/help/oc/mate-calc/boolean.page
-share/help/oc/mate-calc/complex.page
-share/help/oc/mate-calc/conv-base.page
-share/help/oc/mate-calc/conv-character.page
-share/help/oc/mate-calc/conv-currency.page
-share/help/oc/mate-calc/conv-length.page
-share/help/oc/mate-calc/conv-time.page
-share/help/oc/mate-calc/conv-weight.page
-share/help/oc/mate-calc/equation.page
-share/help/oc/mate-calc/factorial.page
-share/help/oc/mate-calc/factorize.page
-share/help/oc/mate-calc/financial.page
-share/help/oc/mate-calc/functions.page
-share/help/oc/mate-calc/index.page
-share/help/oc/mate-calc/keyboard.page
-share/help/oc/mate-calc/legal.xml
-share/help/oc/mate-calc/logarithm.page
-share/help/oc/mate-calc/modulus.page
-share/help/oc/mate-calc/mouse.page
-share/help/oc/mate-calc/number-display.page
-share/help/oc/mate-calc/percentage.page
-share/help/oc/mate-calc/power.page
-share/help/oc/mate-calc/scientific.page
-share/help/oc/mate-calc/superscript.page
-share/help/oc/mate-calc/trigonometry.page
-share/help/oc/mate-calc/variables.page
-share/help/pt_BR/mate-calc/absolute.page
-share/help/pt_BR/mate-calc/base.page
-share/help/pt_BR/mate-calc/boolean.page
-share/help/pt_BR/mate-calc/complex.page
-share/help/pt_BR/mate-calc/conv-base.page
-share/help/pt_BR/mate-calc/conv-character.page
-share/help/pt_BR/mate-calc/conv-currency.page
-share/help/pt_BR/mate-calc/conv-length.page
-share/help/pt_BR/mate-calc/conv-time.page
-share/help/pt_BR/mate-calc/conv-weight.page
-share/help/pt_BR/mate-calc/equation.page
-share/help/pt_BR/mate-calc/factorial.page
-share/help/pt_BR/mate-calc/factorize.page
-share/help/pt_BR/mate-calc/financial.page
-share/help/pt_BR/mate-calc/functions.page
-share/help/pt_BR/mate-calc/index.page
-share/help/pt_BR/mate-calc/keyboard.page
-share/help/pt_BR/mate-calc/legal.xml
-share/help/pt_BR/mate-calc/logarithm.page
-share/help/pt_BR/mate-calc/modulus.page
-share/help/pt_BR/mate-calc/mouse.page
-share/help/pt_BR/mate-calc/number-display.page
-share/help/pt_BR/mate-calc/percentage.page
-share/help/pt_BR/mate-calc/power.page
-share/help/pt_BR/mate-calc/scientific.page
-share/help/pt_BR/mate-calc/superscript.page
-share/help/pt_BR/mate-calc/trigonometry.page
-share/help/pt_BR/mate-calc/variables.page
-share/help/ro/mate-calc/absolute.page
-share/help/ro/mate-calc/base.page
-share/help/ro/mate-calc/boolean.page
-share/help/ro/mate-calc/complex.page
-share/help/ro/mate-calc/conv-base.page
-share/help/ro/mate-calc/conv-character.page
-share/help/ro/mate-calc/conv-currency.page
-share/help/ro/mate-calc/conv-length.page
-share/help/ro/mate-calc/conv-time.page
-share/help/ro/mate-calc/conv-weight.page
-share/help/ro/mate-calc/equation.page
-share/help/ro/mate-calc/factorial.page
-share/help/ro/mate-calc/factorize.page
-share/help/ro/mate-calc/financial.page
-share/help/ro/mate-calc/functions.page
-share/help/ro/mate-calc/index.page
-share/help/ro/mate-calc/keyboard.page
-share/help/ro/mate-calc/legal.xml
-share/help/ro/mate-calc/logarithm.page
-share/help/ro/mate-calc/modulus.page
-share/help/ro/mate-calc/mouse.page
-share/help/ro/mate-calc/number-display.page
-share/help/ro/mate-calc/percentage.page
-share/help/ro/mate-calc/power.page
-share/help/ro/mate-calc/scientific.page
-share/help/ro/mate-calc/superscript.page
-share/help/ro/mate-calc/trigonometry.page
-share/help/ro/mate-calc/variables.page
-share/help/ru/mate-calc/absolute.page
-share/help/ru/mate-calc/base.page
-share/help/ru/mate-calc/boolean.page
-share/help/ru/mate-calc/complex.page
-share/help/ru/mate-calc/conv-base.page
-share/help/ru/mate-calc/conv-character.page
-share/help/ru/mate-calc/conv-currency.page
-share/help/ru/mate-calc/conv-length.page
-share/help/ru/mate-calc/conv-time.page
-share/help/ru/mate-calc/conv-weight.page
-share/help/ru/mate-calc/equation.page
-share/help/ru/mate-calc/factorial.page
-share/help/ru/mate-calc/factorize.page
-share/help/ru/mate-calc/financial.page
-share/help/ru/mate-calc/functions.page
-share/help/ru/mate-calc/index.page
-share/help/ru/mate-calc/keyboard.page
-share/help/ru/mate-calc/legal.xml
-share/help/ru/mate-calc/logarithm.page
-share/help/ru/mate-calc/modulus.page
-share/help/ru/mate-calc/mouse.page
-share/help/ru/mate-calc/number-display.page
-share/help/ru/mate-calc/percentage.page
-share/help/ru/mate-calc/power.page
-share/help/ru/mate-calc/scientific.page
-share/help/ru/mate-calc/superscript.page
-share/help/ru/mate-calc/trigonometry.page
-share/help/ru/mate-calc/variables.page
-share/help/sl/mate-calc/absolute.page
-share/help/sl/mate-calc/base.page
-share/help/sl/mate-calc/boolean.page
-share/help/sl/mate-calc/complex.page
-share/help/sl/mate-calc/conv-base.page
-share/help/sl/mate-calc/conv-character.page
-share/help/sl/mate-calc/conv-currency.page
-share/help/sl/mate-calc/conv-length.page
-share/help/sl/mate-calc/conv-time.page
-share/help/sl/mate-calc/conv-weight.page
-share/help/sl/mate-calc/equation.page
-share/help/sl/mate-calc/factorial.page
-share/help/sl/mate-calc/factorize.page
-share/help/sl/mate-calc/financial.page
-share/help/sl/mate-calc/functions.page
-share/help/sl/mate-calc/index.page
-share/help/sl/mate-calc/keyboard.page
-share/help/sl/mate-calc/legal.xml
-share/help/sl/mate-calc/logarithm.page
-share/help/sl/mate-calc/modulus.page
-share/help/sl/mate-calc/mouse.page
-share/help/sl/mate-calc/number-display.page
-share/help/sl/mate-calc/percentage.page
-share/help/sl/mate-calc/power.page
-share/help/sl/mate-calc/scientific.page
-share/help/sl/mate-calc/superscript.page
-share/help/sl/mate-calc/trigonometry.page
-share/help/sl/mate-calc/variables.page
-share/help/sv/mate-calc/absolute.page
-share/help/sv/mate-calc/base.page
-share/help/sv/mate-calc/boolean.page
-share/help/sv/mate-calc/complex.page
-share/help/sv/mate-calc/conv-base.page
-share/help/sv/mate-calc/conv-character.page
-share/help/sv/mate-calc/conv-currency.page
-share/help/sv/mate-calc/conv-length.page
-share/help/sv/mate-calc/conv-time.page
-share/help/sv/mate-calc/conv-weight.page
-share/help/sv/mate-calc/equation.page
-share/help/sv/mate-calc/factorial.page
-share/help/sv/mate-calc/factorize.page
-share/help/sv/mate-calc/financial.page
-share/help/sv/mate-calc/functions.page
-share/help/sv/mate-calc/index.page
-share/help/sv/mate-calc/keyboard.page
-share/help/sv/mate-calc/legal.xml
-share/help/sv/mate-calc/logarithm.page
-share/help/sv/mate-calc/modulus.page
-share/help/sv/mate-calc/mouse.page
-share/help/sv/mate-calc/number-display.page
-share/help/sv/mate-calc/percentage.page
-share/help/sv/mate-calc/power.page
-share/help/sv/mate-calc/scientific.page
-share/help/sv/mate-calc/superscript.page
-share/help/sv/mate-calc/trigonometry.page
-share/help/sv/mate-calc/variables.page
-share/help/te/mate-calc/absolute.page
-share/help/te/mate-calc/base.page
-share/help/te/mate-calc/boolean.page
-share/help/te/mate-calc/complex.page
-share/help/te/mate-calc/conv-base.page
-share/help/te/mate-calc/conv-character.page
-share/help/te/mate-calc/conv-currency.page
-share/help/te/mate-calc/conv-length.page
-share/help/te/mate-calc/conv-time.page
-share/help/te/mate-calc/conv-weight.page
-share/help/te/mate-calc/equation.page
-share/help/te/mate-calc/factorial.page
-share/help/te/mate-calc/factorize.page
-share/help/te/mate-calc/financial.page
-share/help/te/mate-calc/functions.page
-share/help/te/mate-calc/index.page
-share/help/te/mate-calc/keyboard.page
-share/help/te/mate-calc/legal.xml
-share/help/te/mate-calc/logarithm.page
-share/help/te/mate-calc/modulus.page
-share/help/te/mate-calc/mouse.page
-share/help/te/mate-calc/number-display.page
-share/help/te/mate-calc/percentage.page
-share/help/te/mate-calc/power.page
-share/help/te/mate-calc/scientific.page
-share/help/te/mate-calc/superscript.page
-share/help/te/mate-calc/trigonometry.page
-share/help/te/mate-calc/variables.page
-share/help/zh_CN/mate-calc/absolute.page
-share/help/zh_CN/mate-calc/base.page
-share/help/zh_CN/mate-calc/boolean.page
-share/help/zh_CN/mate-calc/complex.page
-share/help/zh_CN/mate-calc/conv-base.page
-share/help/zh_CN/mate-calc/conv-character.page
-share/help/zh_CN/mate-calc/conv-currency.page
-share/help/zh_CN/mate-calc/conv-length.page
-share/help/zh_CN/mate-calc/conv-time.page
-share/help/zh_CN/mate-calc/conv-weight.page
-share/help/zh_CN/mate-calc/equation.page
-share/help/zh_CN/mate-calc/factorial.page
-share/help/zh_CN/mate-calc/factorize.page
-share/help/zh_CN/mate-calc/financial.page
-share/help/zh_CN/mate-calc/functions.page
-share/help/zh_CN/mate-calc/index.page
-share/help/zh_CN/mate-calc/keyboard.page
-share/help/zh_CN/mate-calc/legal.xml
-share/help/zh_CN/mate-calc/logarithm.page
-share/help/zh_CN/mate-calc/modulus.page
-share/help/zh_CN/mate-calc/mouse.page
-share/help/zh_CN/mate-calc/number-display.page
-share/help/zh_CN/mate-calc/percentage.page
-share/help/zh_CN/mate-calc/power.page
-share/help/zh_CN/mate-calc/scientific.page
-share/help/zh_CN/mate-calc/superscript.page
-share/help/zh_CN/mate-calc/trigonometry.page
-share/help/zh_CN/mate-calc/variables.page
-share/help/zh_HK/mate-calc/absolute.page
-share/help/zh_HK/mate-calc/base.page
-share/help/zh_HK/mate-calc/boolean.page
-share/help/zh_HK/mate-calc/complex.page
-share/help/zh_HK/mate-calc/conv-base.page
-share/help/zh_HK/mate-calc/conv-character.page
-share/help/zh_HK/mate-calc/conv-currency.page
-share/help/zh_HK/mate-calc/conv-length.page
-share/help/zh_HK/mate-calc/conv-time.page
-share/help/zh_HK/mate-calc/conv-weight.page
-share/help/zh_HK/mate-calc/equation.page
-share/help/zh_HK/mate-calc/factorial.page
-share/help/zh_HK/mate-calc/factorize.page
-share/help/zh_HK/mate-calc/financial.page
-share/help/zh_HK/mate-calc/functions.page
-share/help/zh_HK/mate-calc/index.page
-share/help/zh_HK/mate-calc/keyboard.page
-share/help/zh_HK/mate-calc/legal.xml
-share/help/zh_HK/mate-calc/logarithm.page
-share/help/zh_HK/mate-calc/modulus.page
-share/help/zh_HK/mate-calc/mouse.page
-share/help/zh_HK/mate-calc/number-display.page
-share/help/zh_HK/mate-calc/percentage.page
-share/help/zh_HK/mate-calc/power.page
-share/help/zh_HK/mate-calc/scientific.page
-share/help/zh_HK/mate-calc/superscript.page
-share/help/zh_HK/mate-calc/trigonometry.page
-share/help/zh_HK/mate-calc/variables.page
-share/help/zh_TW/mate-calc/absolute.page
-share/help/zh_TW/mate-calc/base.page
-share/help/zh_TW/mate-calc/boolean.page
-share/help/zh_TW/mate-calc/complex.page
-share/help/zh_TW/mate-calc/conv-base.page
-share/help/zh_TW/mate-calc/conv-character.page
-share/help/zh_TW/mate-calc/conv-currency.page
-share/help/zh_TW/mate-calc/conv-length.page
-share/help/zh_TW/mate-calc/conv-time.page
-share/help/zh_TW/mate-calc/conv-weight.page
-share/help/zh_TW/mate-calc/equation.page
-share/help/zh_TW/mate-calc/factorial.page
-share/help/zh_TW/mate-calc/factorize.page
-share/help/zh_TW/mate-calc/financial.page
-share/help/zh_TW/mate-calc/functions.page
-share/help/zh_TW/mate-calc/index.page
-share/help/zh_TW/mate-calc/keyboard.page
-share/help/zh_TW/mate-calc/legal.xml
-share/help/zh_TW/mate-calc/logarithm.page
-share/help/zh_TW/mate-calc/modulus.page
-share/help/zh_TW/mate-calc/mouse.page
-share/help/zh_TW/mate-calc/number-display.page
-share/help/zh_TW/mate-calc/percentage.page
-share/help/zh_TW/mate-calc/power.page
-share/help/zh_TW/mate-calc/scientific.page
-share/help/zh_TW/mate-calc/superscript.page
-share/help/zh_TW/mate-calc/trigonometry.page
-share/help/zh_TW/mate-calc/variables.page
-share/locale/af/LC_MESSAGES/mate-calc.mo
-share/locale/am/LC_MESSAGES/mate-calc.mo
-share/locale/ar/LC_MESSAGES/mate-calc.mo
-share/locale/as/LC_MESSAGES/mate-calc.mo
-share/locale/ast/LC_MESSAGES/mate-calc.mo
-share/locale/az/LC_MESSAGES/mate-calc.mo
-share/locale/be/LC_MESSAGES/mate-calc.mo
-share/locale/be@latin/LC_MESSAGES/mate-calc.mo
-share/locale/bg/LC_MESSAGES/mate-calc.mo
-share/locale/bn/LC_MESSAGES/mate-calc.mo
-share/locale/bn_IN/LC_MESSAGES/mate-calc.mo
-share/locale/bs/LC_MESSAGES/mate-calc.mo
-share/locale/ca/LC_MESSAGES/mate-calc.mo
-share/locale/ca@valencia/LC_MESSAGES/mate-calc.mo
-share/locale/cmn/LC_MESSAGES/mate-calc.mo
-share/locale/cs/LC_MESSAGES/mate-calc.mo
-share/locale/cy/LC_MESSAGES/mate-calc.mo
-share/locale/da/LC_MESSAGES/mate-calc.mo
-share/locale/de/LC_MESSAGES/mate-calc.mo
-share/locale/dz/LC_MESSAGES/mate-calc.mo
-share/locale/el/LC_MESSAGES/mate-calc.mo
-share/locale/en@shaw/LC_MESSAGES/mate-calc.mo
-share/locale/en_AU/LC_MESSAGES/mate-calc.mo
-share/locale/en_CA/LC_MESSAGES/mate-calc.mo
-share/locale/en_GB/LC_MESSAGES/mate-calc.mo
-share/locale/en_US/LC_MESSAGES/mate-calc.mo
-share/locale/eo/LC_MESSAGES/mate-calc.mo
-share/locale/es/LC_MESSAGES/mate-calc.mo
-share/locale/es_AR/LC_MESSAGES/mate-calc.mo
-share/locale/et/LC_MESSAGES/mate-calc.mo
-share/locale/eu/LC_MESSAGES/mate-calc.mo
-share/locale/fa/LC_MESSAGES/mate-calc.mo
-share/locale/fi/LC_MESSAGES/mate-calc.mo
-share/locale/fr/LC_MESSAGES/mate-calc.mo
-share/locale/ga/LC_MESSAGES/mate-calc.mo
-share/locale/gl/LC_MESSAGES/mate-calc.mo
-share/locale/gu/LC_MESSAGES/mate-calc.mo
-share/locale/he/LC_MESSAGES/mate-calc.mo
-share/locale/hi/LC_MESSAGES/mate-calc.mo
-share/locale/hr/LC_MESSAGES/mate-calc.mo
-share/locale/hu/LC_MESSAGES/mate-calc.mo
-share/locale/hy/LC_MESSAGES/mate-calc.mo
-share/locale/id/LC_MESSAGES/mate-calc.mo
-share/locale/it/LC_MESSAGES/mate-calc.mo
-share/locale/ja/LC_MESSAGES/mate-calc.mo
-share/locale/ka/LC_MESSAGES/mate-calc.mo
-share/locale/kk/LC_MESSAGES/mate-calc.mo
-share/locale/km/LC_MESSAGES/mate-calc.mo
-share/locale/kn/LC_MESSAGES/mate-calc.mo
-share/locale/ko/LC_MESSAGES/mate-calc.mo
-share/locale/ku/LC_MESSAGES/mate-calc.mo
-share/locale/ky/LC_MESSAGES/mate-calc.mo
-share/locale/lt/LC_MESSAGES/mate-calc.mo
-share/locale/lv/LC_MESSAGES/mate-calc.mo
-share/locale/mai/LC_MESSAGES/mate-calc.mo
-share/locale/mg/LC_MESSAGES/mate-calc.mo
-share/locale/mk/LC_MESSAGES/mate-calc.mo
-share/locale/ml/LC_MESSAGES/mate-calc.mo
-share/locale/mn/LC_MESSAGES/mate-calc.mo
-share/locale/mr/LC_MESSAGES/mate-calc.mo
-share/locale/ms/LC_MESSAGES/mate-calc.mo
-share/locale/my/LC_MESSAGES/mate-calc.mo
-share/locale/nb/LC_MESSAGES/mate-calc.mo
-share/locale/ne/LC_MESSAGES/mate-calc.mo
-share/locale/nl/LC_MESSAGES/mate-calc.mo
-share/locale/nn/LC_MESSAGES/mate-calc.mo
-share/locale/oc/LC_MESSAGES/mate-calc.mo
-share/locale/or/LC_MESSAGES/mate-calc.mo
-share/locale/pa/LC_MESSAGES/mate-calc.mo
-share/locale/pl/LC_MESSAGES/mate-calc.mo
-share/locale/pt/LC_MESSAGES/mate-calc.mo
-share/locale/pt_BR/LC_MESSAGES/mate-calc.mo
-share/locale/ro/LC_MESSAGES/mate-calc.mo
-share/locale/ru/LC_MESSAGES/mate-calc.mo
-share/locale/rw/LC_MESSAGES/mate-calc.mo
-share/locale/si/LC_MESSAGES/mate-calc.mo
-share/locale/sk/LC_MESSAGES/mate-calc.mo
-share/locale/sl/LC_MESSAGES/mate-calc.mo
-share/locale/sq/LC_MESSAGES/mate-calc.mo
-share/locale/sr/LC_MESSAGES/mate-calc.mo
-share/locale/sr@latin/LC_MESSAGES/mate-calc.mo
-share/locale/sv/LC_MESSAGES/mate-calc.mo
-share/locale/ta/LC_MESSAGES/mate-calc.mo
-share/locale/te/LC_MESSAGES/mate-calc.mo
-share/locale/th/LC_MESSAGES/mate-calc.mo
-share/locale/tk/LC_MESSAGES/mate-calc.mo
-share/locale/tr/LC_MESSAGES/mate-calc.mo
-share/locale/ug/LC_MESSAGES/mate-calc.mo
-share/locale/uk/LC_MESSAGES/mate-calc.mo
-share/locale/vi/LC_MESSAGES/mate-calc.mo
-share/locale/xh/LC_MESSAGES/mate-calc.mo
-share/locale/zh_CN/LC_MESSAGES/mate-calc.mo
-share/locale/zh_HK/LC_MESSAGES/mate-calc.mo
-share/locale/zh_TW/LC_MESSAGES/mate-calc.mo
-%%DATADIR%%/buttons-advanced.ui
-%%DATADIR%%/buttons-basic.ui
-%%DATADIR%%/buttons-financial.ui
-%%DATADIR%%/buttons-programming.ui
-%%DATADIR%%/preferences.ui