summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitmodules6
-rw-r--r--CMakeL10n.txt3
-rw-r--r--CMakeLists.txt16
-rw-r--r--ConfigureChecks.cmake1
m---------admin0
m---------cmake0
-rw-r--r--config.h6
-rwxr-xr-xconfigure164
-rw-r--r--doc/CMakeLists.txt12
-rw-r--r--doc/en/CMakeLists.txt12
-rw-r--r--doc/en/SConscript12
-rw-r--r--doc/man/abakus.1143
-rw-r--r--po/CMakeLists.txt17
-rw-r--r--src/CMakeL10n.txt7
-rw-r--r--src/CMakeLists.txt11
-rw-r--r--src/abakus.desktop28
-rw-r--r--src/dragsupport.h2
-rw-r--r--src/editor.cpp2
-rw-r--r--src/editor.h2
-rw-r--r--src/evaluator.cpp2
-rw-r--r--src/evaluator.h2
-rw-r--r--src/hmath.cpp2
-rw-r--r--src/hmath.h2
-rw-r--r--src/mainwindow.cpp2
-rw-r--r--src/node.cpp2
-rw-r--r--src/node.h2
-rw-r--r--src/number.c2
-rw-r--r--src/number.h2
-rw-r--r--src/numerictypes.cpp2
-rw-r--r--src/numerictypes.h2
-rw-r--r--src/result.h2
-rw-r--r--src/rpnmuncher.cpp2
-rw-r--r--src/sharedptr.h2
-rw-r--r--src/valuemanager.cpp2
-rw-r--r--src/valuemanager.h2
-rw-r--r--translations/desktop_files/abakus.desktop/abakus.desktop.pot32
-rw-r--r--translations/desktop_files/abakus.desktop/bg.po32
-rw-r--r--translations/desktop_files/abakus.desktop/br.po32
-rw-r--r--translations/desktop_files/abakus.desktop/cs.po34
-rw-r--r--translations/desktop_files/abakus.desktop/cy.po32
-rw-r--r--translations/desktop_files/abakus.desktop/da.po32
-rw-r--r--translations/desktop_files/abakus.desktop/de.po34
-rw-r--r--translations/desktop_files/abakus.desktop/el.po33
-rw-r--r--translations/desktop_files/abakus.desktop/es.po33
-rw-r--r--translations/desktop_files/abakus.desktop/et.po32
-rw-r--r--translations/desktop_files/abakus.desktop/fr.po33
-rw-r--r--translations/desktop_files/abakus.desktop/ga.po32
-rw-r--r--translations/desktop_files/abakus.desktop/gl.po32
-rw-r--r--translations/desktop_files/abakus.desktop/it.po33
-rw-r--r--translations/desktop_files/abakus.desktop/ka.po32
-rw-r--r--translations/desktop_files/abakus.desktop/lt.po32
-rw-r--r--translations/desktop_files/abakus.desktop/nl.po32
-rw-r--r--translations/desktop_files/abakus.desktop/pt.po33
-rw-r--r--translations/desktop_files/abakus.desktop/ru.po34
-rw-r--r--translations/desktop_files/abakus.desktop/rw.po32
-rw-r--r--translations/desktop_files/abakus.desktop/sk.po33
-rw-r--r--translations/desktop_files/abakus.desktop/sr.po32
-rw-r--r--translations/desktop_files/abakus.desktop/sr@Latn.po32
-rw-r--r--translations/desktop_files/abakus.desktop/sv.po32
-rw-r--r--translations/desktop_files/abakus.desktop/tr.po33
-rw-r--r--translations/messages/abakus.pot (renamed from po/abakus.pot)8
-rw-r--r--translations/messages/cs.po237
-rw-r--r--translations/messages/de.po239
-rw-r--r--translations/messages/es.po (renamed from po/cs/abakus.po)38
-rw-r--r--translations/messages/it.po (renamed from po/it/abakus.po)23
-rw-r--r--translations/messages/nl.po240
-rw-r--r--translations/messages/pt.po235
-rw-r--r--translations/messages/sk.po238
-rw-r--r--translations/messages/tr.po235
69 files changed, 2444 insertions, 338 deletions
diff --git a/.gitmodules b/.gitmodules
deleted file mode 100644
index 4fce771..0000000
--- a/.gitmodules
+++ /dev/null
@@ -1,6 +0,0 @@
-[submodule "admin"]
- path = admin
- url = http://system@scm.trinitydesktop.org/scm/git/tde-common-admin
-[submodule "cmake"]
- path = cmake
- url = http://system@scm.trinitydesktop.org/scm/git/tde-common-cmake
diff --git a/CMakeL10n.txt b/CMakeL10n.txt
index a525b71..a91bd2a 100644
--- a/CMakeL10n.txt
+++ b/CMakeL10n.txt
@@ -9,12 +9,11 @@
#
#################################################
-cmake_minimum_required( VERSION 2.8 )
+cmake_minimum_required( VERSION 3.1 )
##### include our cmake modules #################
-set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
include( TDEL10n )
diff --git a/CMakeLists.txt b/CMakeLists.txt
index de0ef01..3421098 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -9,7 +9,7 @@
#
#################################################
-cmake_minimum_required( VERSION 2.8 )
+cmake_minimum_required( VERSION 3.1 )
##### general package setup #####################
@@ -31,10 +31,14 @@ include( FindPkgConfig )
##### include our cmake modules #################
-set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
include( TDEMacros )
+##### set version number ########################
+
+tde_set_project_version( )
+
+
##### setup install paths #######################
include( TDESetupPaths )
@@ -68,8 +72,12 @@ set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined"
add_subdirectory( icons )
add_subdirectory( src )
-tde_conditional_add_subdirectory( BUILD_DOC doc )
-tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po )
+
+
+##### other data ################################
+
+tde_conditional_add_project_docs( BUILD_DOC )
+tde_conditional_add_project_translations( BUILD_TRANSLATIONS )
##### write configure files #####################
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 10552ff..97fb72b 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -43,5 +43,6 @@ check_type_size( "long" SIZEOF_LONG BUILTIN_TYPES_ONLY )
check_include_file( stdint.h HAVE_STDINT_H )
check_include_file( systems.h HAVE_SYSTEMS_H )
check_include_file( linux/inotify.h HAVE_INOTIFY )
+check_include_file( mpfr.h HAVE_MPFR )
check_function_exists( statvfs HAVE_STATVFS )
diff --git a/admin b/admin
deleted file mode 160000
-Subproject f9148018b2f8a11fd830712c1b508046cc34ff2
diff --git a/cmake b/cmake
deleted file mode 160000
-Subproject 47eede594abc7947a83cfb777b5e3c8c0b443d5
diff --git a/config.h b/config.h
deleted file mode 100644
index b469afd..0000000
--- a/config.h
+++ /dev/null
@@ -1,6 +0,0 @@
-/* config.h -- Automatically generated by abakus.py
- * Any changes you make to this file will be overwritten!
- */
-
-/* HAVE_MPFR -- Defined if the MPFR library is being used. */
-/* #undef HAVE_MPFR */
diff --git a/configure b/configure
deleted file mode 100755
index 9a62bdd..0000000
--- a/configure
+++ /dev/null
@@ -1,164 +0,0 @@
-#!/usr/bin/env python
-# Configure script for abakus. I think it's better than the sample that came
-# with bksys. Feel free to do with it what you want.
-# By Michael Pyne <michael.pyne@kdemail.net>
-
-import sys
-import re
-
-BOLD="\033[1m"
-RED="\033[91m"
-GREEN="\033[92m"
-YELLOW="\033[93m"
-CYAN="\033[96m"
-NORMAL="\033[0m"
-
-PROGRAM_NAME='abakus'
-
-# First let's see if they asked for help.
-if '--help' in sys.argv:
- print '''This is a configure script to prepare %s for building.
-
-You can pass the command line argument debug=1 to enable debugging for the
-application, which can be useful if you have problems.
-
-Otherwise, just run ./configure, and if you don't already have scons, a mini
-version will be installed suitable for building %s.
-'''.replace('%s', PROGRAM_NAME)
- sys.exit(0)
-
-# Check that we have the minimum version of Python needs to run SCons.
-if sys.hexversion < 0x02030000:
- # Use regexp for compatibility with ancient Python
- version = re.split(' ', sys.version)[0]
-
- print RED + 'Sorry, your version of Python is too old.' + NORMAL
- print PROGRAM_NAME + ' requires Python 2.3 or greater to build.'
- print "\nYou have Python " + version
- sys.exit(1)
-
-import os
-
-# Check if scons is installed. We can use cool Python features now that we
-# know we aren't using an ancient version of Python.
-result = os.system('scons -v > /dev/null 2>&1')
-scons = 'scons'
-
-if os.WEXITSTATUS(result) == 0:
- print GREEN + "scons already installed." + NORMAL
-else:
- # If we didn't find scons, don't whine to the user about it, just fix it.
- print YELLOW + 'scons not installed, installing local copy.' + NORMAL
-
- # Split this into two steps since some tars don't use j to mean bzip2
- # compressed.
- result = os.system('bzcat bksys/scons-mini.tar.bz2 | tar x')
-
- if os.WEXITSTATUS(result) != 0:
- print RED + 'Unable to extract scons' + NORMAL
- sys.exit(2)
-
- scons = '%s/scons' % os.getcwd()
-
-# Now we now where scons is. Let's create a Makefile (after we configure) so
-# that all the user has to do is type 'make'. Allow the user to pass command
-# line arguments, which will be passed to the configure process.
-if len(sys.argv) < 2:
- options = ''
-else:
- options = " ".join(sys.argv[1:])
- # reduce is pretty cool
-# options = reduce(lambda x, y: x + '\n' + y, sys.argv[1:])
-
-result = os.system(scons + ' configure ' + options)
-if os.WEXITSTATUS(result) != 0:
- print RED + 'Unable to configure scons' + NORMAL
- sys.exit(3)
-
-# Recursive generates a makefile for a directory. If topDir is True, the
-# Makefile is slightly different.
-def generate_makefile(dir, topDir = False):
-
- file = name + "/Makefile"
-
- # Write out Makefile.
- try:
- makefile = open(file, 'w')
- except IOError:
- print RED + "Unable to open " + file + NORMAL
- sys.exit(4)
-
- text = '''
-## Makefile automatically generated by configure
-
-SCONS=$scons
-
-# $scons : compile
-# $scons -c : clean
-# $scons install : install
-# $scons -c install : uninstall and clean
-
-# Default target: use scons to build the program
-all:
- @$(SCONS) -Q
-
-# Debugging possibilies:
-# $scons --debug=explain, $scons --debug=tree
-
-# To optimize the runtime:
-# $scons --max-drift=1 --implicit-deps-unchanged
-debug:
- @$(SCONS) -Q --debug=tree
-
-clean:
- @$(SCONS) -c
-
-install:
- @$(SCONS) install
-
-uninstall:
- @$(SCONS) uninstall
-
-# This target creates a tarball of the project (in theory)
-dist:
- @$(SCONS) dist
-'''
-
- if topDir:
- text = text.replace('$scons', scons)
- else:
- text = text.replace('$scons', scons + ' -u')
-
- try:
- print "Generating " + GREEN + file + NORMAL
- makefile.write(text)
- makefile.close()
- except IOError:
- print RED + "Unable to write to the Makefile!" + NORMAL
- sys.exit(5)
-
-# Recursively generate Makefiles for convienience.
-for name, dirs, files in os.walk('.'):
- # Don't try to build hidden directories.
- remove = filter(lambda x: x[0] == '.', dirs)
- for i in remove:
- dirs.remove(i)
-
- if 'SConstruct' in files:
- # We're in the very top directory.
- generate_makefile(name, topDir = True)
-
- for dir in ['cache', 'bksys']:
- if dir in dirs:
- dirs.remove(dir)
- elif 'SConscript' in files:
- generate_makefile(name)
-
-# The Makefile has been written, we're pretty much done.
-message = '''
-The Makefile(s) have been generated. Type:
- `make' to build %s, and
- `make install' to install %s.
-'''.replace('%s', PROGRAM_NAME)
-
-print GREEN + message + NORMAL
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
deleted file mode 100644
index a8b8de4..0000000
--- a/doc/CMakeLists.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-#################################################
-#
-# (C) 2010-2011 Serghei Amelian
-# serghei (DOT) amelian (AT) gmail.com
-#
-# Improvements and feedback are welcome
-#
-# This file is released under GPL >= 2
-#
-#################################################
-
-tde_auto_add_subdirectories()
diff --git a/doc/en/CMakeLists.txt b/doc/en/CMakeLists.txt
deleted file mode 100644
index 68a3d33..0000000
--- a/doc/en/CMakeLists.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-#################################################
-#
-# (C) 2011 Timothy Pearson
-# kb9vqf (AT) pearsoncomputing.net
-#
-# Improvements and feedback are welcome
-#
-# This file is released under GPL >= 2
-#
-#################################################
-
-tde_create_handbook( LANG en DESTINATION abakus )
diff --git a/doc/en/SConscript b/doc/en/SConscript
deleted file mode 100644
index ef81fcd..0000000
--- a/doc/en/SConscript
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/python
-
-Import('env')
-
-import glob
-
-sources = glob.glob("*.png")
-
-destination = 'abakus'
-for lang in ['en']:
- for pic in sources:
- env.KDEinstall('KDEDOC', "%s/%s" % (lang, destination), pic)
diff --git a/doc/man/abakus.1 b/doc/man/abakus.1
new file mode 100644
index 0000000..1411bee
--- /dev/null
+++ b/doc/man/abakus.1
@@ -0,0 +1,143 @@
+.\" This file was generated by kdemangen.pl
+.TH ABAKUS 1 "Oct 2005" "Trinity Desktop Environment" "A simple keyboard-driven calculator"
+.SH NAME
+abakus
+\- A simple keyboard-driven calculator
+.SH SYNOPSIS
+abakus [Qt\-options] [TDE\-options]
+.SH DESCRIPTION
+A simple keyboard-driven calculator
+.SH OPTIONS
+.SS Generic options:
+.TP
+.B \-\-help
+Show help about options
+.TP
+.B \-\-help\-qt
+Show Qt specific options
+.TP
+.B \-\-help\-tde
+Show TDE specific options
+.TP
+.B \-\-help\-all
+Show all options
+.TP
+.B \-\-author
+Show author information
+.TP
+.B \-v, \-\-version
+Show version information
+.TP
+.B \-\-license
+Show license information
+.TP
+.B \-\-
+End of options
+.SS
+.SS TDE options:
+.TP
+.B \-\-caption <caption>
+Use 'caption' as name in the titlebar
+.TP
+.B \-\-icon <icon>
+Use 'icon' as the application icon
+.TP
+.B \-\-miniicon <icon>
+Use 'icon' as the icon in the titlebar
+.TP
+.B \-\-config <filename>
+Use alternative configuration file
+.TP
+.B \-\-dcopserver <server>
+Use the DCOP Server specified by 'server'
+.TP
+.B \-\-nocrashhandler
+Disable crash handler, to get core dumps
+.TP
+.B \-\-waitforwm
+Waits for a WM_NET compatible windowmanager
+.TP
+.B \-\-style <style>
+sets the application GUI style
+.TP
+.B \-\-geometry <geometry>
+sets the client geometry of the main widget - see man X for the argument format
+.SS Qt options:
+.TP
+.B \-\-display <displayname>
+Use the X-server display 'displayname'
+.TP
+.B \-\-session <sessionId>
+Restore the application for the given 'sessionId'
+.TP
+.B \-\-cmap
+Causes the application to install a private color
+map on an 8-bit display
+.TP
+.B \-\-ncols <count>
+Limits the number of colors allocated in the color
+cube on an 8-bit display, if the application is
+using the QApplication::ManyColor color
+specification
+.TP
+.B \-\-nograb
+tells Qt to never grab the mouse or the keyboard
+.TP
+.B \-\-dograb
+running under a debugger can cause an implicit
+-nograb, use -dograb to override
+.TP
+.B \-\-sync
+switches to synchronous mode for debugging
+.TP
+.B \-\-fn, \-\-font <fontname>
+defines the application font
+.TP
+.B \-\-bg, \-\-background <color>
+sets the default background color and an
+application palette (light and dark shades are
+calculated)
+.TP
+.B \-\-fg, \-\-foreground <color>
+sets the default foreground color
+.TP
+.B \-\-btn, \-\-button <color>
+sets the default button color
+.TP
+.B \-\-name <name>
+sets the application name
+.TP
+.B \-\-title <title>
+sets the application title (caption)
+.TP
+.B \-\-visual TrueColor
+forces the application to use a TrueColor visual on
+an 8-bit display
+.TP
+.B \-\-inputstyle <inputstyle>
+sets XIM (X Input Method) input style. Possible
+values are onthespot, overthespot, offthespot and
+root
+.TP
+.B \-\-im <XIM server>
+set XIM server
+.TP
+.B \-\-noxim
+disable XIM
+.TP
+.B \-\-reverse
+mirrors the whole layout of widgets
+.SS
+
+.SH SEE ALSO
+Full user documentation is available through the TDE Help Center. You can also enter the URL
+.BR help:/abakus/
+directly into konqueror or you can run
+.BR "`khelpcenter help:/abakus/'"
+from the command-line.
+.br
+.SH AUTHORS
+.nf
+Michael Pyne <michael.pyne@kdemail.net>
+.br
+
diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt
deleted file mode 100644
index 23c62d8..0000000
--- a/po/CMakeLists.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-#################################################
-#
-# (C) 2011 Timothy Pearson
-# kb9vqf (AT) pearsoncomputing.net
-#
-# Improvements and feedback are welcome
-#
-# This file is released under GPL >= 2
-#
-#################################################
-
-file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} abakus.po )
-
-foreach( _po ${po_files} )
- get_filename_component( _lang ${_po} PATH )
- tde_create_translation( FILES ${_po} LANG ${_lang} )
-endforeach( )
diff --git a/src/CMakeL10n.txt b/src/CMakeL10n.txt
index 771410e..9f473ec 100644
--- a/src/CMakeL10n.txt
+++ b/src/CMakeL10n.txt
@@ -1,3 +1,8 @@
##### create translation templates ##############
-tde_l10n_create_template( "abakus" )
+tde_l10n_create_template( "messages/abakus" )
+
+tde_l10n_create_template(
+ CATALOG "desktop_files/abakus.desktop/"
+ SOURCES abakus.desktop
+)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index a7365d2..a29fed0 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -23,22 +23,25 @@ link_directories(
include( ${CMAKE_SOURCE_DIR}/BisonMacros.cmake )
+
##### other data ################################
-install( FILES abakus.desktop DESTINATION ${APPS_INSTALL_DIR}/Utilities )
+tde_create_translated_desktop( abakus.desktop )
+
install( FILES abakusui.rc DESTINATION ${DATA_INSTALL_DIR}/abakus )
+
##### abakus (executable) #######################
GENERATE_BISON_FLEX_SOURCES(${CMAKE_SOURCE_DIR}/src/parser.yy "" ${CMAKE_SOURCE_DIR}/src/lexer.ll "")
if( HAVE_MPFR )
set( MPFR_SOURCES "" )
- set( MPFR_LIBRARIES "mpfr gmp" )
-else( HAVE_MPFR )
+ set( MPFR_LIBRARIES mpfr gmp )
+else( )
set( MPFR_SOURCES hmath.cpp number.c )
set( MPFR_LIBRARIES "" )
-endif( HAVE_MPFR )
+endif( )
tde_add_executable( abakus AUTOMOC
SOURCES abakus.cpp abakuslistview.cpp
diff --git a/src/abakus.desktop b/src/abakus.desktop
index 769e072..db90275 100644
--- a/src/abakus.desktop
+++ b/src/abakus.desktop
@@ -4,35 +4,9 @@ Type=Application
X-TDE-StartupNotify=true
Exec=abakus -caption "%c" %i %m
Icon=abakus
-Comment=
-Comment[xx]=xxxx
+Comment=A simple keyboard-driven calculator
Terminal=0
Name=Abakus
-Name[tr]=Abaküs
-Name[xx]=xxAbakusxx
GenericName=Calculator
-GenericName[bg]=Калкулатор
-GenericName[br]=Jederez
-GenericName[cs]=Kalkulátor
-GenericName[cy]=Cyfrifiannell
-GenericName[da]=Lommeregner
-GenericName[el]=Υπολογιστής Τσέπης
-GenericName[es]=Calculadora
-GenericName[et]=Kalkulaator
-GenericName[fr]=Calculateur
-GenericName[ga]=Áireamhán
-GenericName[gl]=Calculadora
-GenericName[it]=Calcolatrice
-GenericName[ka]=კალკულატორი
-GenericName[lt]=Skaičiuotuvas
-GenericName[nl]=Rekenmachine
-GenericName[pt]=Calculadora
-GenericName[rw]=Mubazi
-GenericName[sk]=Kalkulačka
-GenericName[sr]=Рачунаљка
-GenericName[sr@Latn]=Računaljka
-GenericName[sv]=Miniräknare
-GenericName[tr]=Hesap Makinesi
-GenericName[xx]=xxCalculatorxx
Categories=Qt;TDE;Utility;X-TDE-Utilities-Desktop;
X-DocPath=abakus/index.html
diff --git a/src/dragsupport.h b/src/dragsupport.h
index ff0d7a6..4a7fcf2 100644
--- a/src/dragsupport.h
+++ b/src/dragsupport.h
@@ -29,5 +29,3 @@ namespace DragSupport {
}
#endif
-
-// vim: set et ts=8 sw=4:
diff --git a/src/editor.cpp b/src/editor.cpp
index b926e10..3de8394 100644
--- a/src/editor.cpp
+++ b/src/editor.cpp
@@ -893,5 +893,3 @@ void EditorCompletion::moveCompletionPopup()
}
#include "editor.moc"
-
-// vim: set et sw=2 ts=8:
diff --git a/src/editor.h b/src/editor.h
index acef6fe..94bcfcf 100644
--- a/src/editor.h
+++ b/src/editor.h
@@ -129,5 +129,3 @@ class EditorCompletion : public TQObject
};
#endif // ABAKUS_EDITOR_H
-
-// vim: set et ts=8 sw=4:
diff --git a/src/evaluator.cpp b/src/evaluator.cpp
index 92e64d4..e43d959 100644
--- a/src/evaluator.cpp
+++ b/src/evaluator.cpp
@@ -257,5 +257,3 @@ TQString Evaluator::autoFix( const TQString& expr )
return result;
}
-
-// vim: set et ts=8 sw=4:
diff --git a/src/evaluator.h b/src/evaluator.h
index 2377f27..1a60e40 100644
--- a/src/evaluator.h
+++ b/src/evaluator.h
@@ -127,5 +127,3 @@ private:
#endif // EVALUATOR
-
-// vim: set et ts=8 sw=4:
diff --git a/src/hmath.cpp b/src/hmath.cpp
index 893d7b3..26181a2 100644
--- a/src/hmath.cpp
+++ b/src/hmath.cpp
@@ -1793,5 +1793,3 @@ int test_hmath()
};
#endif
-
-// vim: set et sw=2 ts=8:
diff --git a/src/hmath.h b/src/hmath.h
index a143f29..19a3f81 100644
--- a/src/hmath.h
+++ b/src/hmath.h
@@ -355,5 +355,3 @@ public:
std::ostream& operator<<( std::ostream& s, HNumber );
#endif // HMATH_H
-
-// vim: set et sw=2 ts=8:
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index b4609e3..bff9239 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -821,5 +821,3 @@ void MainWindow::selectCorrectPrecisionAction()
}
#include "mainwindow.moc"
-
-// vim: set et ts=8 sw=4:
diff --git a/src/node.cpp b/src/node.cpp
index 99b544d..07d2f3e 100644
--- a/src/node.cpp
+++ b/src/node.cpp
@@ -415,5 +415,3 @@ TQString NumericValue::infixString() const
{
return value().toString();
}
-
-// vim: set et ts=8 sw=4:
diff --git a/src/node.h b/src/node.h
index f5820e6..8ce7975 100644
--- a/src/node.h
+++ b/src/node.h
@@ -215,5 +215,3 @@ class NumericValue : public Node
};
#endif
-
-// vim: set et sw=4 ts=8:
diff --git a/src/number.c b/src/number.c
index 72370fb..33601bb 100644
--- a/src/number.c
+++ b/src/number.c
@@ -1805,5 +1805,3 @@ pv (name, num, len)
for (i=0; i<len; i++) printf ("%c",BCD_CHAR(num[i]));
printf ("\n");
}
-
-// vim: set et sw=2 ts=8:
diff --git a/src/number.h b/src/number.h
index c7d07ac..cd60b03 100644
--- a/src/number.h
+++ b/src/number.h
@@ -165,5 +165,3 @@ _PROTOTYPE(void bc_out_num, (bc_num num, int o_base, void (* out_char)(int),
#endif
#endif
-
-// vim: set et sw=2 ts=8:
diff --git a/src/numerictypes.cpp b/src/numerictypes.cpp
index d1fe591..d7bfe82 100644
--- a/src/numerictypes.cpp
+++ b/src/numerictypes.cpp
@@ -201,5 +201,3 @@ const Abakus::number_t::value_type Abakus::number_t::PI = HMath::pi();
const Abakus::number_t::value_type Abakus::number_t::E = HMath::exp(1);
#endif /* HAVE_MPFR */
-
-// vim: set et ts=8 sw=4:
diff --git a/src/numerictypes.h b/src/numerictypes.h
index 7277aea..f0721f9 100644
--- a/src/numerictypes.h
+++ b/src/numerictypes.h
@@ -689,5 +689,3 @@ private:
}; // namespace Abakus
#endif /* ABAKUS_NUMERICTYPES_H */
-
-// vim: set et ts=8 sw=4:
diff --git a/src/result.h b/src/result.h
index 49936f5..600338a 100644
--- a/src/result.h
+++ b/src/result.h
@@ -73,5 +73,3 @@ private:
};
#endif /* ABAKUS_RESULT_H */
-
-// vim: set et ts=8 sw=4:
diff --git a/src/rpnmuncher.cpp b/src/rpnmuncher.cpp
index 309a819..a541e33 100644
--- a/src/rpnmuncher.cpp
+++ b/src/rpnmuncher.cpp
@@ -263,5 +263,3 @@ static int tokenize (const TQString &token)
return Unknown;
}
-
-// vim: set et sw=4 ts=8:
diff --git a/src/sharedptr.h b/src/sharedptr.h
index 1c63ca3..91d80da 100644
--- a/src/sharedptr.h
+++ b/src/sharedptr.h
@@ -118,5 +118,3 @@ private:
};
#endif /* ABAKUS_SHARED_PTR_H */
-
-// vim: set et ts=8 sw=4:
diff --git a/src/valuemanager.cpp b/src/valuemanager.cpp
index 4880fdf..bc55203 100644
--- a/src/valuemanager.cpp
+++ b/src/valuemanager.cpp
@@ -101,5 +101,3 @@ TQString ValueManager::description(const TQString &valueName)
}
#include "valuemanager.moc"
-
-// vim: set et ts=8 sw=4 encoding=utf-8:
diff --git a/src/valuemanager.h b/src/valuemanager.h
index b637e14..354506e 100644
--- a/src/valuemanager.h
+++ b/src/valuemanager.h
@@ -66,5 +66,3 @@ class ValueManager : public TQObject
};
#endif
-
-// vim: set et sw=4 ts=8:
diff --git a/translations/desktop_files/abakus.desktop/abakus.desktop.pot b/translations/desktop_files/abakus.desktop/abakus.desktop.pot
new file mode 100644
index 0000000..7c8290e
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/abakus.desktop.pot
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr ""
diff --git a/translations/desktop_files/abakus.desktop/bg.po b/translations/desktop_files/abakus.desktop/bg.po
new file mode 100644
index 0000000..8dfcdef
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/bg.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: bg\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Калкулатор"
diff --git a/translations/desktop_files/abakus.desktop/br.po b/translations/desktop_files/abakus.desktop/br.po
new file mode 100644
index 0000000..e7b0526
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/br.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: br\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Jederez"
diff --git a/translations/desktop_files/abakus.desktop/cs.po b/translations/desktop_files/abakus.desktop/cs.po
new file mode 100644
index 0000000..33b8c93
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/cs.po
@@ -0,0 +1,34 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: 2020-03-24 13:46+0000\n"
+"Last-Translator: Slávek Banko <slavek.banko@axis.cz>\n"
+"Language-Team: Czech <https://mirror.git.trinitydesktop.org/weblate/projects/"
+"applications/abakus-abakusdesktop/cs/>\n"
+"Language: cs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"X-Generator: Weblate 3.11.3\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr "Jednoduchá kalkulačka ovládaná klávesnicí"
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr "Abakus"
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Kalkulátor"
diff --git a/translations/desktop_files/abakus.desktop/cy.po b/translations/desktop_files/abakus.desktop/cy.po
new file mode 100644
index 0000000..601cedb
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/cy.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: cy\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Cyfrifiannell"
diff --git a/translations/desktop_files/abakus.desktop/da.po b/translations/desktop_files/abakus.desktop/da.po
new file mode 100644
index 0000000..2fb9a2b
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/da.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: da\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Lommeregner"
diff --git a/translations/desktop_files/abakus.desktop/de.po b/translations/desktop_files/abakus.desktop/de.po
new file mode 100644
index 0000000..0182613
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/de.po
@@ -0,0 +1,34 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: 2020-03-24 13:46+0000\n"
+"Last-Translator: Chris <xchrisx@uber.space>\n"
+"Language-Team: German <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus-abakusdesktop/de/>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 3.11.3\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr "Ein einfacher, tastaturgesteuerter Taschenrechner"
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr "Abakus"
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Taschenrechner"
diff --git a/translations/desktop_files/abakus.desktop/el.po b/translations/desktop_files/abakus.desktop/el.po
new file mode 100644
index 0000000..fd624eb
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/el.po
@@ -0,0 +1,33 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# blu.256 <mavridisf@gmail.com>, 2020.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: 2020-12-30 17:15+0000\n"
+"Last-Translator: blu.256 <mavridisf@gmail.com>\n"
+"Language-Team: Greek <https://mirror.git.trinitydesktop.org/weblate/projects/"
+"applications/abakus-abakusdesktop/el/>\n"
+"Language: el\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.4\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr "Μια απλή αριθμομηχανή με χειρισμό πληκτρολογίου"
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr "Abakus"
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Υπολογιστής Τσέπης"
diff --git a/translations/desktop_files/abakus.desktop/es.po b/translations/desktop_files/abakus.desktop/es.po
new file mode 100644
index 0000000..3e37f65
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/es.po
@@ -0,0 +1,33 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# SALOMON ALEJANDRO L <asalomon@agro.uba.ar>, 2021.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: 2021-10-31 18:05+0000\n"
+"Last-Translator: SALOMON ALEJANDRO L <asalomon@agro.uba.ar>\n"
+"Language-Team: Spanish <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus-abakusdesktop/es/>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.8.1\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr "Una simple calculadora comandada por teclado"
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr "Ábaco"
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Calculadora"
diff --git a/translations/desktop_files/abakus.desktop/et.po b/translations/desktop_files/abakus.desktop/et.po
new file mode 100644
index 0000000..cff33ed
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/et.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: et\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Kalkulaator"
diff --git a/translations/desktop_files/abakus.desktop/fr.po b/translations/desktop_files/abakus.desktop/fr.po
new file mode 100644
index 0000000..dd31817
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/fr.po
@@ -0,0 +1,33 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# Stanislas Leduc <stanislas.leduc@balinor.net>, 2020.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: 2020-06-20 16:30+0000\n"
+"Last-Translator: Stanislas Leduc <stanislas.leduc@balinor.net>\n"
+"Language-Team: French <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus-abakusdesktop/fr/>\n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 4.1\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr "Une simple calculatrice pilotée par clavier"
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr "Abakus"
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Calculateur"
diff --git a/translations/desktop_files/abakus.desktop/ga.po b/translations/desktop_files/abakus.desktop/ga.po
new file mode 100644
index 0000000..7d37686
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/ga.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: ga\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Áireamhán"
diff --git a/translations/desktop_files/abakus.desktop/gl.po b/translations/desktop_files/abakus.desktop/gl.po
new file mode 100644
index 0000000..82e4257
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/gl.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: gl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Calculadora"
diff --git a/translations/desktop_files/abakus.desktop/it.po b/translations/desktop_files/abakus.desktop/it.po
new file mode 100644
index 0000000..d2fe2a9
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/it.po
@@ -0,0 +1,33 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# Michele Calgaro <michele.calgaro@yahoo.it>, 2020.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: 2020-05-23 09:48+0000\n"
+"Last-Translator: Michele Calgaro <michele.calgaro@yahoo.it>\n"
+"Language-Team: Italian <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus-abakusdesktop/it/>\n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.0.4\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr "Una semplice calcolatrice controllata da tastiera"
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr "Abakus"
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Calcolatrice"
diff --git a/translations/desktop_files/abakus.desktop/ka.po b/translations/desktop_files/abakus.desktop/ka.po
new file mode 100644
index 0000000..89b928d
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/ka.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: ka\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "კალკულატორი"
diff --git a/translations/desktop_files/abakus.desktop/lt.po b/translations/desktop_files/abakus.desktop/lt.po
new file mode 100644
index 0000000..3f9f3df
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/lt.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: lt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Skaičiuotuvas"
diff --git a/translations/desktop_files/abakus.desktop/nl.po b/translations/desktop_files/abakus.desktop/nl.po
new file mode 100644
index 0000000..d865d63
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/nl.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: nl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Rekenmachine"
diff --git a/translations/desktop_files/abakus.desktop/pt.po b/translations/desktop_files/abakus.desktop/pt.po
new file mode 100644
index 0000000..7a0bf60
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/pt.po
@@ -0,0 +1,33 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# Hugo Carvalho <hugokarvalho@hotmail.com>, 2021.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: 2021-02-07 22:01+0000\n"
+"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
+"Language-Team: Portuguese <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus-abakusdesktop/pt/>\n"
+"Language: pt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 4.4.2\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr "Uma simples calculadora guiada por teclado"
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr "Abakus"
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Calculadora"
diff --git a/translations/desktop_files/abakus.desktop/ru.po b/translations/desktop_files/abakus.desktop/ru.po
new file mode 100644
index 0000000..87e4b60
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/ru.po
@@ -0,0 +1,34 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# Andrey (Андрей) <sosic.heh@ya.ru>, 2021.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: 2021-09-04 17:14+0000\n"
+"Last-Translator: Andrey (Андрей) <sosic.heh@ya.ru>\n"
+"Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus-abakusdesktop/ru/>\n"
+"Language: ru\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Generator: Weblate 4.8\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr "Простой калькулятор"
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr "Abakus"
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Калькулятор"
diff --git a/translations/desktop_files/abakus.desktop/rw.po b/translations/desktop_files/abakus.desktop/rw.po
new file mode 100644
index 0000000..8147f15
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/rw.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: rw\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Mubazi"
diff --git a/translations/desktop_files/abakus.desktop/sk.po b/translations/desktop_files/abakus.desktop/sk.po
new file mode 100644
index 0000000..9663152
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/sk.po
@@ -0,0 +1,33 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# Marek Mlynar <marek.inq.mlynar@gmail.com>, 2020.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: 2020-05-27 20:46+0000\n"
+"Last-Translator: Marek Mlynar <marek.inq.mlynar@gmail.com>\n"
+"Language-Team: Slovak <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus-abakusdesktop/sk/>\n"
+"Language: sk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"X-Generator: Weblate 4.0.4\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr "Jednoduchá kalkulačka ovládaná klávesnicou"
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr "Abakus"
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Kalkulačka"
diff --git a/translations/desktop_files/abakus.desktop/sr.po b/translations/desktop_files/abakus.desktop/sr.po
new file mode 100644
index 0000000..f24b360
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/sr.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: sr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Рачунаљка"
diff --git a/translations/desktop_files/abakus.desktop/sr@Latn.po b/translations/desktop_files/abakus.desktop/sr@Latn.po
new file mode 100644
index 0000000..8ce5747
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/sr@Latn.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: sr@Latn\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Računaljka"
diff --git a/translations/desktop_files/abakus.desktop/sv.po b/translations/desktop_files/abakus.desktop/sv.po
new file mode 100644
index 0000000..3c5e014
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/sv.po
@@ -0,0 +1,32 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: sv\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr ""
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr ""
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Miniräknare"
diff --git a/translations/desktop_files/abakus.desktop/tr.po b/translations/desktop_files/abakus.desktop/tr.po
new file mode 100644
index 0000000..e6e7882
--- /dev/null
+++ b/translations/desktop_files/abakus.desktop/tr.po
@@ -0,0 +1,33 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# Mehmet Dokuz <madanadam@gmail.com>, 2022.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-03-18 04:00+0100\n"
+"PO-Revision-Date: 2022-03-02 12:11+0000\n"
+"Last-Translator: Mehmet Dokuz <madanadam@gmail.com>\n"
+"Language-Team: Turkish <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus-abakusdesktop/tr/>\n"
+"Language: tr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11\n"
+
+#. Comment
+#: abakus.desktop:7
+msgid "A simple keyboard-driven calculator"
+msgstr "Klavye-temelli basit bir hesap makinesi"
+
+#. Name
+#: abakus.desktop:9
+msgid "Abakus"
+msgstr "Abaküs"
+
+#. GenericName
+#: abakus.desktop:10
+msgid "Calculator"
+msgstr "Hesap Makinesi"
diff --git a/po/abakus.pot b/translations/messages/abakus.pot
index 75635ba..fc42c54 100644
--- a/po/abakus.pot
+++ b/translations/messages/abakus.pot
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-01-13 19:05+0100\n"
+"POT-Creation-Date: 2020-05-11 13:13+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,13 +13,15 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: _translatorinfo:1
+#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
+#, ignore-inconsistent
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr ""
-#: _translatorinfo:2
+#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
+#, ignore-inconsistent
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
diff --git a/translations/messages/cs.po b/translations/messages/cs.po
new file mode 100644
index 0000000..11acf83
--- /dev/null
+++ b/translations/messages/cs.po
@@ -0,0 +1,237 @@
+# SOME DESCRIPTIVE TITLE.
+# Slávek Banko <slavek.banko@axis.cz>, 2021.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2020-05-09 01:25+0200\n"
+"PO-Revision-Date: 2021-09-03 08:53+0000\n"
+"Last-Translator: Slávek Banko <slavek.banko@axis.cz>\n"
+"Language-Team: Czech <https://mirror.git.trinitydesktop.org/weblate/projects/"
+"applications/abakus/cs/>\n"
+"Language: cs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"X-Generator: Weblate 4.8\n"
+
+#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
+msgid ""
+"_: NAME OF TRANSLATORS\n"
+"Your names"
+msgstr "Slávek Banko"
+
+#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
+msgid ""
+"_: EMAIL OF TRANSLATORS\n"
+"Your emails"
+msgstr "slavek.banko@axis.cz"
+
+#: abakus.cpp:36
+msgid "abakus"
+msgstr "abakus"
+
+#: abakus.cpp:37
+msgid "A simple keyboard-driven calculator"
+msgstr "Jednoduchá kalkulačka ovládaná klávesnicí"
+
+#: abakus.cpp:42
+msgid "Developer"
+msgstr "Vývojář"
+
+#: abakus.cpp:46
+msgid ""
+"High precision math routines, and inspiration for the new design came from "
+"his C++ implementation (SpeedCrunch)"
+msgstr ""
+"Vysoce přesné matematické postupy a inspirace pro nový návrh vycházející "
+"z jeho implementace v C++ (SpeedCrunch)"
+
+#: abakus.cpp:50
+msgid "Came up with the initial idea, along with a Python implementation."
+msgstr "Přišel s počáteční myšlenkou, spolu s implementací v Pythonu."
+
+#: abakus.cpp:54
+msgid ""
+"Inspiration/code for the initial design came from his Ruby implementation."
+msgstr "Inspirace/kód pro počáteční návrh přišel z jeho implementace v Ruby."
+
+#: abakuslistview.cpp:158
+msgid "Remove selected variable"
+msgstr "Odstranit vybranou proměnnou"
+
+#: abakuslistview.cpp:173
+#, c-format
+msgid ""
+"_n: Remove all variables (1 variable)\n"
+"Remove all variables (%n variables)"
+msgstr ""
+"Odstranit všechny proměnné (1 proměnná)\n"
+"Odstranit všechny proměnné (%n proměnné)\n"
+"Odstranit všechny proměnné (%n proměnných)"
+
+#: abakuslistview.cpp:200
+msgid "Remove selected function"
+msgstr "Odstranit vybranou funkci"
+
+#: abakuslistview.cpp:206
+#, c-format
+msgid ""
+"_n: Remove all functions (1 function)\n"
+"Remove all functions (%n functions)"
+msgstr ""
+"Odstranit všechny funkce (1 funkce)\n"
+"Odstranit všechny funkce (%n funkce)\n"
+"Odstranit všechny funkce (%n funkcí)"
+
+#: mainwindow.cpp:69
+msgid "History: "
+msgstr "Historie: "
+
+#: mainwindow.cpp:81 mainwindow.cpp:509
+msgid "&Degrees"
+msgstr "&Stupně"
+
+#: mainwindow.cpp:87 mainwindow.cpp:513
+msgid "&Radians"
+msgstr "&Radiány"
+
+#: mainwindow.cpp:116
+msgid "&Evaluate"
+msgstr "Vy&hodnotit"
+
+#: mainwindow.cpp:225
+#, c-format
+msgid "Error: %1"
+msgstr "Chyba: %1"
+
+#: mainwindow.cpp:517
+msgid "Show &History List"
+msgstr "Zobrazit výpis &historie"
+
+#: mainwindow.cpp:520
+msgid "Show &Variables"
+msgstr "Zobrazit &proměnné"
+
+#: mainwindow.cpp:523
+msgid "Show &Functions"
+msgstr "Zobrazit &funkce"
+
+#: mainwindow.cpp:526
+msgid "Activate &Compact Mode"
+msgstr "Zapnout &kompaktní režim"
+
+#: mainwindow.cpp:529
+msgid "Use R&PN Mode"
+msgstr "Použít režim R&PN"
+
+#: mainwindow.cpp:533
+msgid "&Automatic Precision"
+msgstr "&Automatická přesnost"
+
+#: mainwindow.cpp:537
+msgid "&3 Decimal Digits"
+msgstr "&3 desetinná místa"
+
+#: mainwindow.cpp:541
+msgid "&8 Decimal Digits"
+msgstr "&8 desetinných míst"
+
+#: mainwindow.cpp:545
+msgid "&15 Decimal Digits"
+msgstr "&15 desetinných míst"
+
+#: mainwindow.cpp:549
+msgid "&50 Decimal Digits"
+msgstr "&50 desetinných míst"
+
+#: mainwindow.cpp:553
+msgid "C&ustom Precision..."
+msgstr "&Vlastní přesnost…"
+
+#: mainwindow.cpp:557 resultlistview.cpp:118
+msgid "Clear &History"
+msgstr "Vyčistit &historii"
+
+#: mainwindow.cpp:559
+msgid "Select Editor"
+msgstr "Vybrat editor"
+
+#: mainwindow.cpp:717
+msgid "Marker %1 isn't set"
+msgstr "Značka %1 není nastavena"
+
+#: mainwindow.cpp:760
+msgid "Select number of decimal digits to display"
+msgstr "Vybrat počet zobrazovaných desetinných míst"
+
+#: mainwindow.cpp:761
+msgid "Decimal precision:"
+msgstr "Desetinná přesnost:"
+
+#: resultlistview.cpp:43
+msgid "Expression"
+msgstr "Výraz"
+
+#: resultlistview.cpp:44
+msgid "Result"
+msgstr "Výsledek"
+
+#: resultlistview.cpp:45
+msgid "Shortcut"
+msgstr "Odkaz"
+
+#: resultlistview.cpp:120
+msgid "Copy Result to Clipboard"
+msgstr "Zkopírovat výsledek do schránky"
+
+#: rpnmuncher.cpp:104
+msgid "Can't pop from an empty stack."
+msgstr "Nelze vyzvednout z prázdného zásobníku."
+
+#: rpnmuncher.cpp:118
+#, c-format
+msgid "Insufficient operands for function %1"
+msgstr "Nedostatečný počet operandů pro funkci %1"
+
+#: rpnmuncher.cpp:135
+msgid "The set and remove commands can only be used in normal mode."
+msgstr "Příkazy nastavit a odstranit lze použít pouze v normálním režimu."
+
+#: rpnmuncher.cpp:142
+msgid "Insufficient operands for exponentiation operator."
+msgstr "Nedostatečný počet operandů pro operátor umocnění."
+
+#: rpnmuncher.cpp:153
+#, c-format
+msgid "Unknown token %1"
+msgstr "Neznámý token %1"
+
+#: rpnmuncher.cpp:168
+msgid "Insufficient operands for addition operator."
+msgstr "Nedostatečný počet operandů pro operátor sčítání."
+
+#: rpnmuncher.cpp:180
+msgid "Insufficient operands for subtraction operator."
+msgstr "Nedostatečný počet operandů pro operátor odečítání."
+
+#: rpnmuncher.cpp:192
+msgid "Insufficient operands for multiplication operator."
+msgstr "Nedostatečný počet operandů pro operátor násobení."
+
+#: rpnmuncher.cpp:204
+msgid "Insufficient operands for division operator."
+msgstr "Nedostatečný počet operandů pro operátor dělení."
+
+#: valuemanager.cpp:96
+msgid "Natural exponential base - 2.7182818"
+msgstr "Eulerovo číslo – 2,7182818284"
+
+#: valuemanager.cpp:98
+msgid "pi (π) - 3.1415926"
+msgstr "pí (π) – 3,1415926"
+
+#: abakusui.rc:26
+#, no-c-format
+msgid "&Mode"
+msgstr "Reži&m"
diff --git a/translations/messages/de.po b/translations/messages/de.po
new file mode 100644
index 0000000..72a17f1
--- /dev/null
+++ b/translations/messages/de.po
@@ -0,0 +1,239 @@
+# SOME DESCRIPTIVE TITLE.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2020-05-09 01:25+0200\n"
+"PO-Revision-Date: 2020-03-25 21:58+0000\n"
+"Last-Translator: Chris <xchrisx@uber.space>\n"
+"Language-Team: German <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus/de/>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 3.11.3\n"
+
+#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
+msgid ""
+"_: NAME OF TRANSLATORS\n"
+"Your names"
+msgstr "Chris (TDE), Juergen Ihlau"
+
+#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
+msgid ""
+"_: EMAIL OF TRANSLATORS\n"
+"Your emails"
+msgstr "(Keine Email), juergen@ihlau.net"
+
+#: abakus.cpp:36
+msgid "abakus"
+msgstr "Abakus"
+
+#: abakus.cpp:37
+msgid "A simple keyboard-driven calculator"
+msgstr "Ein einfacher, tastaturgesteuerter Taschenrechner"
+
+#: abakus.cpp:42
+msgid "Developer"
+msgstr "Entwickler"
+
+#: abakus.cpp:46
+msgid ""
+"High precision math routines, and inspiration for the new design came from "
+"his C++ implementation (SpeedCrunch)"
+msgstr ""
+"Hochpräzise mathematische Routinen und Inspiration für das neue Design kamen "
+"von seiner C++-Implementierung (SpeedCrunch)."
+
+#: abakus.cpp:50
+msgid "Came up with the initial idea, along with a Python implementation."
+msgstr "Zusammen mit einer Python-Implementierung entstand die erste Idee."
+
+#: abakus.cpp:54
+msgid ""
+"Inspiration/code for the initial design came from his Ruby implementation."
+msgstr ""
+"Inspiration/Code für das erste Design kam von seiner Ruby-Implementierung."
+
+#: abakuslistview.cpp:158
+msgid "Remove selected variable"
+msgstr "Ausgewählte Variable entfernen"
+
+#: abakuslistview.cpp:173
+#, c-format
+msgid ""
+"_n: Remove all variables (1 variable)\n"
+"Remove all variables (%n variables)"
+msgstr ""
+"Alle Variablen entfernen (Eine Variable)\n"
+"Alle Variablen entfernen (%n Variablen)"
+
+#: abakuslistview.cpp:200
+msgid "Remove selected function"
+msgstr "Ausgewählte Funktion entfernen"
+
+#: abakuslistview.cpp:206
+#, c-format
+msgid ""
+"_n: Remove all functions (1 function)\n"
+"Remove all functions (%n functions)"
+msgstr ""
+"Alle Funktionen entfernen (Eine Funktion)\n"
+"Alle Funktionen entfernen (%n-Funktionen)"
+
+#: mainwindow.cpp:69
+msgid "History: "
+msgstr "Verlaufsspeicher: "
+
+#: mainwindow.cpp:81 mainwindow.cpp:509
+msgid "&Degrees"
+msgstr "Gra&d"
+
+#: mainwindow.cpp:87 mainwindow.cpp:513
+msgid "&Radians"
+msgstr "&Radien"
+
+#: mainwindow.cpp:116
+msgid "&Evaluate"
+msgstr "B&ewerten"
+
+#: mainwindow.cpp:225
+#, c-format
+msgid "Error: %1"
+msgstr "Fehler: %1"
+
+#: mainwindow.cpp:517
+msgid "Show &History List"
+msgstr "&Verlaufsspeicher anzeigen"
+
+#: mainwindow.cpp:520
+msgid "Show &Variables"
+msgstr "&Variablen anzeigen"
+
+#: mainwindow.cpp:523
+msgid "Show &Functions"
+msgstr "&Funktionen anzeigen"
+
+#: mainwindow.cpp:526
+msgid "Activate &Compact Mode"
+msgstr "&Minimalmodus einschalten"
+
+#: mainwindow.cpp:529
+msgid "Use R&PN Mode"
+msgstr "R&PN-Modus verwenden"
+
+#: mainwindow.cpp:533
+msgid "&Automatic Precision"
+msgstr "&Automatische Präzision"
+
+#: mainwindow.cpp:537
+msgid "&3 Decimal Digits"
+msgstr "&3 Dezimalstellen"
+
+#: mainwindow.cpp:541
+msgid "&8 Decimal Digits"
+msgstr "&8 Dezimalstellen"
+
+#: mainwindow.cpp:545
+msgid "&15 Decimal Digits"
+msgstr "&15 Dezimalstellen"
+
+#: mainwindow.cpp:549
+msgid "&50 Decimal Digits"
+msgstr "&50 Dezimalstellen"
+
+#: mainwindow.cpp:553
+msgid "C&ustom Precision..."
+msgstr "Individ&uelle Präzision ..."
+
+#: mainwindow.cpp:557 resultlistview.cpp:118
+msgid "Clear &History"
+msgstr "&Verlaufsspeicher löschen"
+
+#: mainwindow.cpp:559
+msgid "Select Editor"
+msgstr "Editor auswählen"
+
+#: mainwindow.cpp:717
+msgid "Marker %1 isn't set"
+msgstr "Marker %1 ist nicht gesetzt"
+
+#: mainwindow.cpp:760
+msgid "Select number of decimal digits to display"
+msgstr "Anzahl der anzuzeigenden Dezimalstellen auswählen"
+
+#: mainwindow.cpp:761
+msgid "Decimal precision:"
+msgstr "Anzahl der Nachkommastellen:"
+
+#: resultlistview.cpp:43
+msgid "Expression"
+msgstr "Ausdruck"
+
+#: resultlistview.cpp:44
+msgid "Result"
+msgstr "Ergebnis"
+
+#: resultlistview.cpp:45
+msgid "Shortcut"
+msgstr "Tastenkürzel"
+
+#: resultlistview.cpp:120
+msgid "Copy Result to Clipboard"
+msgstr "Ergebnis in die Zwischenablage kopieren"
+
+#: rpnmuncher.cpp:104
+msgid "Can't pop from an empty stack."
+msgstr "Aus einem leeren Stapel kann nicht herausgesprungen werden."
+
+#: rpnmuncher.cpp:118
+#, c-format
+msgid "Insufficient operands for function %1"
+msgstr "Nicht genügend Operanden für Funktion %1"
+
+#: rpnmuncher.cpp:135
+msgid "The set and remove commands can only be used in normal mode."
+msgstr ""
+"Die Befehle \"Setzen\" und \"Entfernen\" können nur im Normalmodus verwendet "
+"werden."
+
+#: rpnmuncher.cpp:142
+msgid "Insufficient operands for exponentiation operator."
+msgstr "Nicht genügend Operanden für eine Potenzierung."
+
+#: rpnmuncher.cpp:153
+#, c-format
+msgid "Unknown token %1"
+msgstr "Unbekanntes Token %1"
+
+#: rpnmuncher.cpp:168
+msgid "Insufficient operands for addition operator."
+msgstr "Nicht genügend Operanden für eine Addition."
+
+#: rpnmuncher.cpp:180
+msgid "Insufficient operands for subtraction operator."
+msgstr "Nicht genügend Operanden für eine Subtraktion."
+
+#: rpnmuncher.cpp:192
+msgid "Insufficient operands for multiplication operator."
+msgstr "Nicht genügend Operanden für eine Multiplikation."
+
+#: rpnmuncher.cpp:204
+msgid "Insufficient operands for division operator."
+msgstr "Nicht genügend Operanden für eine Division."
+
+#: valuemanager.cpp:96
+msgid "Natural exponential base - 2.7182818"
+msgstr "Natürliche exponentielle Basis - 2.71828281818"
+
+#: valuemanager.cpp:98
+msgid "pi (π) - 3.1415926"
+msgstr "pi (π) - 3.1415926"
+
+#: abakusui.rc:26
+#, no-c-format
+msgid "&Mode"
+msgstr "&Modus"
diff --git a/po/cs/abakus.po b/translations/messages/es.po
index 0ce6799..0826890 100644
--- a/po/cs/abakus.po
+++ b/translations/messages/es.po
@@ -1,41 +1,43 @@
# SOME DESCRIPTIVE TITLE.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
+# SALOMON ALEJANDRO L <asalomon@agro.uba.ar>, 2021.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-01-13 19:05+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: cs\n"
+"POT-Creation-Date: 2020-05-09 01:25+0200\n"
+"PO-Revision-Date: 2021-10-31 18:05+0000\n"
+"Last-Translator: SALOMON ALEJANDRO L <asalomon@agro.uba.ar>\n"
+"Language-Team: Spanish <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus/es/>\n"
+"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.8.1\n"
-#: _translatorinfo:1
+#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
-msgstr ""
+msgstr "Alejandro Salomón"
-#: _translatorinfo:2
+#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
-msgstr ""
+msgstr "asalomon@agro.uba.ar"
#: abakus.cpp:36
msgid "abakus"
-msgstr ""
+msgstr "abakus"
#: abakus.cpp:37
msgid "A simple keyboard-driven calculator"
-msgstr ""
+msgstr "Una simple calculadora comandada por teclado"
#: abakus.cpp:42
msgid "Developer"
-msgstr ""
+msgstr "Desarrollador"
#: abakus.cpp:46
msgid ""
@@ -76,19 +78,19 @@ msgstr ""
#: mainwindow.cpp:69
msgid "History: "
-msgstr ""
+msgstr "Historial "
#: mainwindow.cpp:81 mainwindow.cpp:509
msgid "&Degrees"
-msgstr ""
+msgstr "Grados"
#: mainwindow.cpp:87 mainwindow.cpp:513
msgid "&Radians"
-msgstr ""
+msgstr "Radianes"
#: mainwindow.cpp:116
msgid "&Evaluate"
-msgstr ""
+msgstr "Evaluar"
#: mainwindow.cpp:225
#, c-format
diff --git a/po/it/abakus.po b/translations/messages/it.po
index f255f9e..9f78be3 100644
--- a/po/it/abakus.po
+++ b/translations/messages/it.po
@@ -1,11 +1,10 @@
# SOME DESCRIPTIVE TITLE.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
+# Michele Calgaro <michele.calgaro@yahoo.it>, 2020.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-01-13 19:05+0100\n"
-"PO-Revision-Date: 2019-05-18 16:14+0000\n"
+"POT-Creation-Date: 2020-05-09 01:25+0200\n"
+"PO-Revision-Date: 2020-05-23 09:48+0000\n"
"Last-Translator: Michele Calgaro <michele.calgaro@yahoo.it>\n"
"Language-Team: Italian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/abakus/it/>\n"
@@ -14,15 +13,15 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.6.1\n"
+"X-Generator: Weblate 4.0.4\n"
-#: _translatorinfo:1
+#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr "Michele Calgaro"
-#: _translatorinfo:2
+#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
@@ -45,7 +44,7 @@ msgid ""
"High precision math routines, and inspiration for the new design came from "
"his C++ implementation (SpeedCrunch)"
msgstr ""
-"Funzioni matematiche ad alta precisione e nuovo design ispirate dalla sua "
+"Funzioni matematiche ad alta precisione e nuovo design ispirate alla sua "
"implementazione in C++ (SpeedCrunch)"
#: abakus.cpp:50
@@ -69,7 +68,7 @@ msgid ""
"_n: Remove all variables (1 variable)\n"
"Remove all variables (%n variables)"
msgstr ""
-"_n: Rimozione di tutte le variabili (1 variabile)\n"
+"Rimozione di tutte le variabili (1 variabile)\n"
"Rimozione di tutte le variabili (%n variabili)"
#: abakuslistview.cpp:200
@@ -82,7 +81,7 @@ msgid ""
"_n: Remove all functions (1 function)\n"
"Remove all functions (%n functions)"
msgstr ""
-"_n: Rimozione di tutte le funzioni (1 funzione)\n"
+"Rimozione di tutte le funzioni (1 funzione)\n"
"Rimozione di tutte le funzioni (%n funzioni)"
#: mainwindow.cpp:69
@@ -108,7 +107,7 @@ msgstr "Errore: %1"
#: mainwindow.cpp:517
msgid "Show &History List"
-msgstr "Visualizza la lista della &Cronologia"
+msgstr "Visualizza la &Cronologia"
#: mainwindow.cpp:520
msgid "Show &Variables"
@@ -184,7 +183,7 @@ msgstr "Scorciatoia"
#: resultlistview.cpp:120
msgid "Copy Result to Clipboard"
-msgstr "Copia il risultato nella Clipboard"
+msgstr "Copia il risultato negli Appunti"
#: rpnmuncher.cpp:104
msgid "Can't pop from an empty stack."
diff --git a/translations/messages/nl.po b/translations/messages/nl.po
new file mode 100644
index 0000000..36ace92
--- /dev/null
+++ b/translations/messages/nl.po
@@ -0,0 +1,240 @@
+# SOME DESCRIPTIVE TITLE.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2020-05-09 01:25+0200\n"
+"PO-Revision-Date: 2019-08-02 19:05+0000\n"
+"Last-Translator: Heimen Stoffels <vistausss@outlook.com>\n"
+"Language-Team: Dutch <https://mirror.git.trinitydesktop.org/weblate/projects/"
+"applications/abakus/nl/>\n"
+"Language: nl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 3.7.1\n"
+
+#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
+msgid ""
+"_: NAME OF TRANSLATORS\n"
+"Your names"
+msgstr "Heimen Stoffels"
+
+#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
+msgid ""
+"_: EMAIL OF TRANSLATORS\n"
+"Your emails"
+msgstr "vistausss@outlook.com"
+
+#: abakus.cpp:36
+msgid "abakus"
+msgstr "abakus"
+
+#: abakus.cpp:37
+msgid "A simple keyboard-driven calculator"
+msgstr "Een eenvoudige rekenmachine, bedienbaar via het toetsenbord"
+
+#: abakus.cpp:42
+msgid "Developer"
+msgstr "Ontwikkelaar"
+
+#: abakus.cpp:46
+msgid ""
+"High precision math routines, and inspiration for the new design came from "
+"his C++ implementation (SpeedCrunch)"
+msgstr ""
+"Wiskundige routines met nauwkeurige precisie en inspiratie voor het "
+"vernieuwde ontwerp waren afkomstig van zijn C++-implementatie (SpeedCrunch)"
+
+#: abakus.cpp:50
+msgid "Came up with the initial idea, along with a Python implementation."
+msgstr "Kwam met het idee op de proppen en een Python-implementatie."
+
+#: abakus.cpp:54
+msgid ""
+"Inspiration/code for the initial design came from his Ruby implementation."
+msgstr ""
+"Inspiratie/Code van het eerste ontwerp waren afkomstig van zijn Ruby-"
+"implementatie."
+
+#: abakuslistview.cpp:158
+msgid "Remove selected variable"
+msgstr "Geselecteerde variabele wissen"
+
+#: abakuslistview.cpp:173
+#, c-format
+msgid ""
+"_n: Remove all variables (1 variable)\n"
+"Remove all variables (%n variables)"
+msgstr ""
+"Alle variabelen wissen (1 variabele)\n"
+"Alle variabelen wissen (%n variabelen)"
+
+#: abakuslistview.cpp:200
+msgid "Remove selected function"
+msgstr "Geselecteerde functie wissen"
+
+#: abakuslistview.cpp:206
+#, c-format
+msgid ""
+"_n: Remove all functions (1 function)\n"
+"Remove all functions (%n functions)"
+msgstr ""
+"Alle functies wissen (1 functie)\n"
+"Alle functies wissen (%n functies)"
+
+#: mainwindow.cpp:69
+msgid "History: "
+msgstr "Geschiedenis: "
+
+#: mainwindow.cpp:81 mainwindow.cpp:509
+msgid "&Degrees"
+msgstr "Gra&den"
+
+#: mainwindow.cpp:87 mainwindow.cpp:513
+msgid "&Radians"
+msgstr "St&ralen"
+
+#: mainwindow.cpp:116
+msgid "&Evaluate"
+msgstr "&Evalueren"
+
+#: mainwindow.cpp:225
+#, c-format
+msgid "Error: %1"
+msgstr "Fout: %1"
+
+#: mainwindow.cpp:517
+msgid "Show &History List"
+msgstr "&Eerdere berekeningen tonen"
+
+#: mainwindow.cpp:520
+msgid "Show &Variables"
+msgstr "&Variabelen tonen"
+
+#: mainwindow.cpp:523
+msgid "Show &Functions"
+msgstr "&Functies tonen"
+
+#: mainwindow.cpp:526
+msgid "Activate &Compact Mode"
+msgstr "&Compacte modus inschakelen"
+
+#: mainwindow.cpp:529
+msgid "Use R&PN Mode"
+msgstr "R&PN-modus gebruiken"
+
+#: mainwindow.cpp:533
+msgid "&Automatic Precision"
+msgstr "&Automatische precisie"
+
+#: mainwindow.cpp:537
+msgid "&3 Decimal Digits"
+msgstr "&3 decimalen"
+
+#: mainwindow.cpp:541
+msgid "&8 Decimal Digits"
+msgstr "&8 decimalen"
+
+#: mainwindow.cpp:545
+msgid "&15 Decimal Digits"
+msgstr "&15 decimalen"
+
+#: mainwindow.cpp:549
+msgid "&50 Decimal Digits"
+msgstr "&50 decimalen"
+
+#: mainwindow.cpp:553
+msgid "C&ustom Precision..."
+msgstr "A&angepaste precisie..."
+
+#: mainwindow.cpp:557 resultlistview.cpp:118
+msgid "Clear &History"
+msgstr "&Eerdere berekeningen wissen"
+
+#: mainwindow.cpp:559
+msgid "Select Editor"
+msgstr "Bewerker selecteren"
+
+#: mainwindow.cpp:717
+msgid "Marker %1 isn't set"
+msgstr "De markering '%1' is niet ingesteld"
+
+#: mainwindow.cpp:760
+msgid "Select number of decimal digits to display"
+msgstr "Kies het aantal te tonen decimalen"
+
+#: mainwindow.cpp:761
+msgid "Decimal precision:"
+msgstr "Decimale precisie:"
+
+#: resultlistview.cpp:43
+msgid "Expression"
+msgstr "Expressie"
+
+#: resultlistview.cpp:44
+msgid "Result"
+msgstr "Resultaat"
+
+#: resultlistview.cpp:45
+msgid "Shortcut"
+msgstr "Sneltoets"
+
+#: resultlistview.cpp:120
+msgid "Copy Result to Clipboard"
+msgstr "Resultaat kopiëren naar klembord"
+
+#: rpnmuncher.cpp:104
+msgid "Can't pop from an empty stack."
+msgstr "Kan niet plukken van een kale kip."
+
+#: rpnmuncher.cpp:118
+#, c-format
+msgid "Insufficient operands for function %1"
+msgstr "Onvoldoende operanden bij functie '%1'"
+
+#: rpnmuncher.cpp:135
+msgid "The set and remove commands can only be used in normal mode."
+msgstr ""
+"De opdrachten 'instellen' en 'wissen' kunnen alleen worden gebruikt in de "
+"normale modus."
+
+#: rpnmuncher.cpp:142
+msgid "Insufficient operands for exponentiation operator."
+msgstr "Onvoldoende operanden voor exponentiatie-operatoren."
+
+#: rpnmuncher.cpp:153
+#, c-format
+msgid "Unknown token %1"
+msgstr "Onbekende sleutel '%1'"
+
+#: rpnmuncher.cpp:168
+msgid "Insufficient operands for addition operator."
+msgstr "Onvoldoende operanden voor optelling."
+
+#: rpnmuncher.cpp:180
+msgid "Insufficient operands for subtraction operator."
+msgstr "Onvoldoende operanden voor aftrekking."
+
+#: rpnmuncher.cpp:192
+msgid "Insufficient operands for multiplication operator."
+msgstr "Onvoldoende operanden voor vermenigvuldiging."
+
+#: rpnmuncher.cpp:204
+msgid "Insufficient operands for division operator."
+msgstr "Onvoldoende operanden voor deling."
+
+#: valuemanager.cpp:96
+msgid "Natural exponential base - 2.7182818"
+msgstr "Natuurlijke exponentiële basis - 2.71828281818"
+
+#: valuemanager.cpp:98
+msgid "pi (π) - 3.1415926"
+msgstr "pi (π) - 3.1415926"
+
+#: abakusui.rc:26
+#, no-c-format
+msgid "&Mode"
+msgstr "&Modus"
diff --git a/translations/messages/pt.po b/translations/messages/pt.po
new file mode 100644
index 0000000..507609e
--- /dev/null
+++ b/translations/messages/pt.po
@@ -0,0 +1,235 @@
+# SOME DESCRIPTIVE TITLE.
+# Tiago Carmo <tiagompca@gmail.com>, 2022.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2020-05-09 01:25+0200\n"
+"PO-Revision-Date: 2022-09-24 17:56+0000\n"
+"Last-Translator: Tiago Carmo <tiagompca@gmail.com>\n"
+"Language-Team: Portuguese <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus/pt/>\n"
+"Language: pt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 4.13.1\n"
+
+#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
+msgid ""
+"_: NAME OF TRANSLATORS\n"
+"Your names"
+msgstr "Hugo Carvalho"
+
+#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
+msgid ""
+"_: EMAIL OF TRANSLATORS\n"
+"Your emails"
+msgstr "hugokarvalho@gmail.com"
+
+#: abakus.cpp:36
+msgid "abakus"
+msgstr "abakus"
+
+#: abakus.cpp:37
+msgid "A simple keyboard-driven calculator"
+msgstr "Uma calculadora simples conduzida por teclado"
+
+#: abakus.cpp:42
+msgid "Developer"
+msgstr "Desenvolvedor"
+
+#: abakus.cpp:46
+msgid ""
+"High precision math routines, and inspiration for the new design came from "
+"his C++ implementation (SpeedCrunch)"
+msgstr ""
+"Rotinas matemáticas de alta precisão e inspiração para o novo design veio de "
+"sua implementação C++ (SpeedCrunch)"
+
+#: abakus.cpp:50
+msgid "Came up with the initial idea, along with a Python implementation."
+msgstr ""
+"Surgiu com a ideia inicial, juntamente com uma implementação em Python."
+
+#: abakus.cpp:54
+msgid ""
+"Inspiration/code for the initial design came from his Ruby implementation."
+msgstr ""
+"A inspiração/código para o design inicial veio de sua implementação Ruby."
+
+#: abakuslistview.cpp:158
+msgid "Remove selected variable"
+msgstr "Remover variável selecionada"
+
+#: abakuslistview.cpp:173
+#, c-format
+msgid ""
+"_n: Remove all variables (1 variable)\n"
+"Remove all variables (%n variables)"
+msgstr ""
+"remove todas as variáveis (1 variável)\n"
+"Remova todas as variáveis (%n variáveis)"
+
+#: abakuslistview.cpp:200
+msgid "Remove selected function"
+msgstr ""
+
+#: abakuslistview.cpp:206
+#, c-format
+msgid ""
+"_n: Remove all functions (1 function)\n"
+"Remove all functions (%n functions)"
+msgstr ""
+
+#: mainwindow.cpp:69
+msgid "History: "
+msgstr ""
+
+#: mainwindow.cpp:81 mainwindow.cpp:509
+msgid "&Degrees"
+msgstr ""
+
+#: mainwindow.cpp:87 mainwindow.cpp:513
+msgid "&Radians"
+msgstr ""
+
+#: mainwindow.cpp:116
+msgid "&Evaluate"
+msgstr ""
+
+#: mainwindow.cpp:225
+#, c-format
+msgid "Error: %1"
+msgstr ""
+
+#: mainwindow.cpp:517
+msgid "Show &History List"
+msgstr ""
+
+#: mainwindow.cpp:520
+msgid "Show &Variables"
+msgstr ""
+
+#: mainwindow.cpp:523
+msgid "Show &Functions"
+msgstr ""
+
+#: mainwindow.cpp:526
+msgid "Activate &Compact Mode"
+msgstr ""
+
+#: mainwindow.cpp:529
+msgid "Use R&PN Mode"
+msgstr ""
+
+#: mainwindow.cpp:533
+msgid "&Automatic Precision"
+msgstr ""
+
+#: mainwindow.cpp:537
+msgid "&3 Decimal Digits"
+msgstr ""
+
+#: mainwindow.cpp:541
+msgid "&8 Decimal Digits"
+msgstr ""
+
+#: mainwindow.cpp:545
+msgid "&15 Decimal Digits"
+msgstr ""
+
+#: mainwindow.cpp:549
+msgid "&50 Decimal Digits"
+msgstr ""
+
+#: mainwindow.cpp:553
+msgid "C&ustom Precision..."
+msgstr ""
+
+#: mainwindow.cpp:557 resultlistview.cpp:118
+msgid "Clear &History"
+msgstr ""
+
+#: mainwindow.cpp:559
+msgid "Select Editor"
+msgstr ""
+
+#: mainwindow.cpp:717
+msgid "Marker %1 isn't set"
+msgstr ""
+
+#: mainwindow.cpp:760
+msgid "Select number of decimal digits to display"
+msgstr ""
+
+#: mainwindow.cpp:761
+msgid "Decimal precision:"
+msgstr ""
+
+#: resultlistview.cpp:43
+msgid "Expression"
+msgstr ""
+
+#: resultlistview.cpp:44
+msgid "Result"
+msgstr ""
+
+#: resultlistview.cpp:45
+msgid "Shortcut"
+msgstr ""
+
+#: resultlistview.cpp:120
+msgid "Copy Result to Clipboard"
+msgstr ""
+
+#: rpnmuncher.cpp:104
+msgid "Can't pop from an empty stack."
+msgstr ""
+
+#: rpnmuncher.cpp:118
+#, c-format
+msgid "Insufficient operands for function %1"
+msgstr ""
+
+#: rpnmuncher.cpp:135
+msgid "The set and remove commands can only be used in normal mode."
+msgstr ""
+
+#: rpnmuncher.cpp:142
+msgid "Insufficient operands for exponentiation operator."
+msgstr ""
+
+#: rpnmuncher.cpp:153
+#, c-format
+msgid "Unknown token %1"
+msgstr ""
+
+#: rpnmuncher.cpp:168
+msgid "Insufficient operands for addition operator."
+msgstr ""
+
+#: rpnmuncher.cpp:180
+msgid "Insufficient operands for subtraction operator."
+msgstr ""
+
+#: rpnmuncher.cpp:192
+msgid "Insufficient operands for multiplication operator."
+msgstr ""
+
+#: rpnmuncher.cpp:204
+msgid "Insufficient operands for division operator."
+msgstr ""
+
+#: valuemanager.cpp:96
+msgid "Natural exponential base - 2.7182818"
+msgstr ""
+
+#: valuemanager.cpp:98
+msgid "pi (π) - 3.1415926"
+msgstr ""
+
+#: abakusui.rc:26
+#, no-c-format
+msgid "&Mode"
+msgstr ""
diff --git a/translations/messages/sk.po b/translations/messages/sk.po
new file mode 100644
index 0000000..1e6e883
--- /dev/null
+++ b/translations/messages/sk.po
@@ -0,0 +1,238 @@
+# SOME DESCRIPTIVE TITLE.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2020-05-09 01:25+0200\n"
+"PO-Revision-Date: 2020-02-13 02:05+0000\n"
+"Last-Translator: Marek Mlynar <marek.inq.mlynar@gmail.com>\n"
+"Language-Team: Slovak <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus/sk/>\n"
+"Language: sk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"X-Generator: Weblate 3.10.3\n"
+
+#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
+msgid ""
+"_: NAME OF TRANSLATORS\n"
+"Your names"
+msgstr "Marek Mlynár"
+
+#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
+msgid ""
+"_: EMAIL OF TRANSLATORS\n"
+"Your emails"
+msgstr "marek.inq.mlynar@gmail.com"
+
+#: abakus.cpp:36
+msgid "abakus"
+msgstr "abakus"
+
+#: abakus.cpp:37
+msgid "A simple keyboard-driven calculator"
+msgstr "Jednoduchá kalkulačka ovládaná klávesnicou"
+
+#: abakus.cpp:42
+msgid "Developer"
+msgstr "Vývojár"
+
+#: abakus.cpp:46
+msgid ""
+"High precision math routines, and inspiration for the new design came from "
+"his C++ implementation (SpeedCrunch)"
+msgstr ""
+"Vysoko presné matematické postupy a inšpirácia pre nový dizajn pochádzajú z "
+"jeho implementácie C ++ (SpeedCrunch)"
+
+#: abakus.cpp:50
+msgid "Came up with the initial idea, along with a Python implementation."
+msgstr "Prišiel s prvotnou myšlienkou a implementáciou v Python-e."
+
+#: abakus.cpp:54
+msgid ""
+"Inspiration/code for the initial design came from his Ruby implementation."
+msgstr ""
+"Inšpirácia/kód pre prvotný dizajn pochádza z jeho implementácie v jazyku "
+"Ruby."
+
+#: abakuslistview.cpp:158
+msgid "Remove selected variable"
+msgstr "Odstráň zvolenú premennú"
+
+#: abakuslistview.cpp:173
+#, c-format
+msgid ""
+"_n: Remove all variables (1 variable)\n"
+"Remove all variables (%n variables)"
+msgstr ""
+"Odstráň všetky premenné (1 premenná)\n"
+"Odstráň všetky premenné (%n premenných)"
+
+#: abakuslistview.cpp:200
+msgid "Remove selected function"
+msgstr "Odober zvolenú funkciu"
+
+#: abakuslistview.cpp:206
+#, c-format
+msgid ""
+"_n: Remove all functions (1 function)\n"
+"Remove all functions (%n functions)"
+msgstr ""
+"Odstráň všetky funkcie (1 funkcia)\n"
+"Odstráň všetky funkcie (%n funkcií)"
+
+#: mainwindow.cpp:69
+msgid "History: "
+msgstr "História: "
+
+#: mainwindow.cpp:81 mainwindow.cpp:509
+msgid "&Degrees"
+msgstr "&Stupne"
+
+#: mainwindow.cpp:87 mainwindow.cpp:513
+msgid "&Radians"
+msgstr "&Radiány"
+
+#: mainwindow.cpp:116
+msgid "&Evaluate"
+msgstr "&Vyčísli"
+
+#: mainwindow.cpp:225
+#, c-format
+msgid "Error: %1"
+msgstr "Chyba: %1"
+
+#: mainwindow.cpp:517
+msgid "Show &History List"
+msgstr "Ukáž zoznam &histórie"
+
+#: mainwindow.cpp:520
+msgid "Show &Variables"
+msgstr "Zobraz &premenné"
+
+#: mainwindow.cpp:523
+msgid "Show &Functions"
+msgstr "Zobraz &funkcie"
+
+#: mainwindow.cpp:526
+msgid "Activate &Compact Mode"
+msgstr "Zapni &kompaktný mód"
+
+#: mainwindow.cpp:529
+msgid "Use R&PN Mode"
+msgstr "Použi R&PN Mód"
+
+#: mainwindow.cpp:533
+msgid "&Automatic Precision"
+msgstr "&Automatická presnosť"
+
+#: mainwindow.cpp:537
+msgid "&3 Decimal Digits"
+msgstr "&3 Desiatkové číslice"
+
+#: mainwindow.cpp:541
+msgid "&8 Decimal Digits"
+msgstr "&8 Desiatkových číslic"
+
+#: mainwindow.cpp:545
+msgid "&15 Decimal Digits"
+msgstr "&15 Desiatkových číslic"
+
+#: mainwindow.cpp:549
+msgid "&50 Decimal Digits"
+msgstr "&50 Desiatkových číslic"
+
+#: mainwindow.cpp:553
+msgid "C&ustom Precision..."
+msgstr "U&žívateľská presnosť..."
+
+#: mainwindow.cpp:557 resultlistview.cpp:118
+msgid "Clear &History"
+msgstr "Vyčisti &históriu"
+
+#: mainwindow.cpp:559
+msgid "Select Editor"
+msgstr "Vyber editor"
+
+#: mainwindow.cpp:717
+msgid "Marker %1 isn't set"
+msgstr "Zvýrazňovač %1 nie je nastavený"
+
+#: mainwindow.cpp:760
+msgid "Select number of decimal digits to display"
+msgstr "Vyber počet desiatkových číslic na zobrazenie"
+
+#: mainwindow.cpp:761
+msgid "Decimal precision:"
+msgstr "Presnosť desiatkových číslic:"
+
+#: resultlistview.cpp:43
+msgid "Expression"
+msgstr "Výraz"
+
+#: resultlistview.cpp:44
+msgid "Result"
+msgstr "Výsledok"
+
+#: resultlistview.cpp:45
+msgid "Shortcut"
+msgstr "Odkaz"
+
+#: resultlistview.cpp:120
+msgid "Copy Result to Clipboard"
+msgstr "Kopíruj výsledok do schránky"
+
+#: rpnmuncher.cpp:104
+msgid "Can't pop from an empty stack."
+msgstr "Nemôžem vybrať z prázdneho zásobníka."
+
+#: rpnmuncher.cpp:118
+#, c-format
+msgid "Insufficient operands for function %1"
+msgstr "Nedostatočný počet operandov pre funkciu %1"
+
+#: rpnmuncher.cpp:135
+msgid "The set and remove commands can only be used in normal mode."
+msgstr "Príkazy nastav a odstráň sa môžu používať iba v normálnom móde."
+
+#: rpnmuncher.cpp:142
+msgid "Insufficient operands for exponentiation operator."
+msgstr "Nedostatok operandov pre operáciu umocňovania."
+
+#: rpnmuncher.cpp:153
+#, c-format
+msgid "Unknown token %1"
+msgstr "Neznámy token %1"
+
+#: rpnmuncher.cpp:168
+msgid "Insufficient operands for addition operator."
+msgstr "Nedostatočný počet operandov pre operáciu sčítania."
+
+#: rpnmuncher.cpp:180
+msgid "Insufficient operands for subtraction operator."
+msgstr "Nedostatočný počet operandov pre operáciu odčítania."
+
+#: rpnmuncher.cpp:192
+msgid "Insufficient operands for multiplication operator."
+msgstr "Nedostatočný počet operandov pre operáciu násobenia."
+
+#: rpnmuncher.cpp:204
+msgid "Insufficient operands for division operator."
+msgstr "Nedostatočný počet operandov pre operáciu delenia."
+
+#: valuemanager.cpp:96
+msgid "Natural exponential base - 2.7182818"
+msgstr "Eulerovo číslo - 2,7182818"
+
+#: valuemanager.cpp:98
+msgid "pi (π) - 3.1415926"
+msgstr "pi (π) - 3,1415926"
+
+#: abakusui.rc:26
+#, no-c-format
+msgid "&Mode"
+msgstr "&Mód"
diff --git a/translations/messages/tr.po b/translations/messages/tr.po
new file mode 100644
index 0000000..657b055
--- /dev/null
+++ b/translations/messages/tr.po
@@ -0,0 +1,235 @@
+# SOME DESCRIPTIVE TITLE.
+# Mehmet Dokuz <madanadam@gmail.com>, 2022.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2020-05-09 01:25+0200\n"
+"PO-Revision-Date: 2022-03-02 12:11+0000\n"
+"Last-Translator: Mehmet Dokuz <madanadam@gmail.com>\n"
+"Language-Team: Turkish <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/abakus/tr/>\n"
+"Language: tr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11\n"
+
+#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
+msgid ""
+"_: NAME OF TRANSLATORS\n"
+"Your names"
+msgstr "Mehmet Akif"
+
+#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
+msgid ""
+"_: EMAIL OF TRANSLATORS\n"
+"Your emails"
+msgstr "madanadam@gmail.com"
+
+#: abakus.cpp:36
+msgid "abakus"
+msgstr "abaküs"
+
+#: abakus.cpp:37
+msgid "A simple keyboard-driven calculator"
+msgstr "Klavye-temelli basit bir hesap makinesi"
+
+#: abakus.cpp:42
+msgid "Developer"
+msgstr "Geliştirici"
+
+#: abakus.cpp:46
+msgid ""
+"High precision math routines, and inspiration for the new design came from "
+"his C++ implementation (SpeedCrunch)"
+msgstr ""
+"Yüksek hassasiyetli matematik rutinleri ve yeni tasarım için ilham kaynağı "
+"onun C++ uygulamasından geldi. (SpeedCrunch)"
+
+#: abakus.cpp:50
+msgid "Came up with the initial idea, along with a Python implementation."
+msgstr "Bir Python uygulamasıyla birlikte ilk fikir geldi."
+
+#: abakus.cpp:54
+msgid ""
+"Inspiration/code for the initial design came from his Ruby implementation."
+msgstr "İlk tasarım için ilham/kod, Ruby uygulamasından geldi."
+
+#: abakuslistview.cpp:158
+msgid "Remove selected variable"
+msgstr "Seçili değişkeni kaldır"
+
+#: abakuslistview.cpp:173
+#, c-format
+msgid ""
+"_n: Remove all variables (1 variable)\n"
+"Remove all variables (%n variables)"
+msgstr ""
+"Tüm değişkenleri kaldırın (1 değişken)\n"
+"Tüm değişkenleri kaldır (%n değişken)"
+
+#: abakuslistview.cpp:200
+msgid "Remove selected function"
+msgstr "Seçili işlevi kaldır"
+
+#: abakuslistview.cpp:206
+#, c-format
+msgid ""
+"_n: Remove all functions (1 function)\n"
+"Remove all functions (%n functions)"
+msgstr ""
+"Tüm işlevleri kaldır (1 işlev)\n"
+"Tüm işlevleri kaldır (%n işlev)"
+
+#: mainwindow.cpp:69
+msgid "History: "
+msgstr "Tarih: "
+
+#: mainwindow.cpp:81 mainwindow.cpp:509
+msgid "&Degrees"
+msgstr "&Derece"
+
+#: mainwindow.cpp:87 mainwindow.cpp:513
+msgid "&Radians"
+msgstr "&Radyan"
+
+#: mainwindow.cpp:116
+msgid "&Evaluate"
+msgstr "D&eğerlendirme"
+
+#: mainwindow.cpp:225
+#, c-format
+msgid "Error: %1"
+msgstr "Hata: %1"
+
+#: mainwindow.cpp:517
+msgid "Show &History List"
+msgstr "&Geçmişi Göster"
+
+#: mainwindow.cpp:520
+msgid "Show &Variables"
+msgstr "&Değişkenleri Göster"
+
+#: mainwindow.cpp:523
+msgid "Show &Functions"
+msgstr "&Fonksiyonları Göster"
+
+#: mainwindow.cpp:526
+msgid "Activate &Compact Mode"
+msgstr "&Kompakt Modu Etkinleştir"
+
+#: mainwindow.cpp:529
+msgid "Use R&PN Mode"
+msgstr "R&PN Modunu Kullan"
+
+#: mainwindow.cpp:533
+msgid "&Automatic Precision"
+msgstr "&Otomatik Hassasiyet"
+
+#: mainwindow.cpp:537
+msgid "&3 Decimal Digits"
+msgstr "&3 Ondalık Basamak"
+
+#: mainwindow.cpp:541
+msgid "&8 Decimal Digits"
+msgstr "&8 Ondalık Basamak"
+
+#: mainwindow.cpp:545
+msgid "&15 Decimal Digits"
+msgstr "&15 Ondalık Basamak"
+
+#: mainwindow.cpp:549
+msgid "&50 Decimal Digits"
+msgstr "&50 Ondalık Basamak"
+
+#: mainwindow.cpp:553
+msgid "C&ustom Precision..."
+msgstr "&Özel Hassasiyet..."
+
+#: mainwindow.cpp:557 resultlistview.cpp:118
+msgid "Clear &History"
+msgstr "Geçmişi &Temizle"
+
+#: mainwindow.cpp:559
+msgid "Select Editor"
+msgstr "Düzenleyici Seç"
+
+#: mainwindow.cpp:717
+msgid "Marker %1 isn't set"
+msgstr "%1 işaretçisi ayarlanmadı"
+
+#: mainwindow.cpp:760
+msgid "Select number of decimal digits to display"
+msgstr "Görüntülenecek ondalık basamak sayısını seçin"
+
+#: mainwindow.cpp:761
+msgid "Decimal precision:"
+msgstr "Ondalık hassasiyet:"
+
+#: resultlistview.cpp:43
+msgid "Expression"
+msgstr "İfade"
+
+#: resultlistview.cpp:44
+msgid "Result"
+msgstr "Sonuç"
+
+#: resultlistview.cpp:45
+msgid "Shortcut"
+msgstr "Kısayol"
+
+#: resultlistview.cpp:120
+msgid "Copy Result to Clipboard"
+msgstr "Sonucu Panoya Kopyala"
+
+#: rpnmuncher.cpp:104
+msgid "Can't pop from an empty stack."
+msgstr "Boş bir yığından çıkarma yapılamaz."
+
+#: rpnmuncher.cpp:118
+#, c-format
+msgid "Insufficient operands for function %1"
+msgstr "%1 işlevi için işlenen yetersiz"
+
+#: rpnmuncher.cpp:135
+msgid "The set and remove commands can only be used in normal mode."
+msgstr "Ayarla ve kaldır komutları yalnızca normal modda kullanılabilir."
+
+#: rpnmuncher.cpp:142
+msgid "Insufficient operands for exponentiation operator."
+msgstr "Üs alma operatörü için yetersiz işlenen."
+
+#: rpnmuncher.cpp:153
+#, c-format
+msgid "Unknown token %1"
+msgstr "Bilinmeyen belirteç %1"
+
+#: rpnmuncher.cpp:168
+msgid "Insufficient operands for addition operator."
+msgstr "Toplama operatörü için yetersiz işlenen."
+
+#: rpnmuncher.cpp:180
+msgid "Insufficient operands for subtraction operator."
+msgstr "Çıkarma operatörü için yetersiz işlenen."
+
+#: rpnmuncher.cpp:192
+msgid "Insufficient operands for multiplication operator."
+msgstr "Çarpma operatörü için yetersiz işlenen."
+
+#: rpnmuncher.cpp:204
+msgid "Insufficient operands for division operator."
+msgstr "Bölme operatörü için yetersiz işlenen."
+
+#: valuemanager.cpp:96
+msgid "Natural exponential base - 2.7182818"
+msgstr "Doğal üstel taban - 2.7182818"
+
+#: valuemanager.cpp:98
+msgid "pi (π) - 3.1415926"
+msgstr "pi (π) - 3.1415926"
+
+#: abakusui.rc:26
+#, no-c-format
+msgid "&Mode"
+msgstr "&Mod"