diff -Nru skrooge-2.4.93/CHANGELOG skrooge-2.4.94/CHANGELOG --- skrooge-2.4.93/CHANGELOG 2016-08-18 18:55:55.000000000 +0000 +++ skrooge-2.4.94/CHANGELOG 2016-08-21 19:58:40.000000000 +0000 @@ -6,6 +6,7 @@ *Correction: When a second instance of Skrooge is launched with a file as argument, the file must be imported in the first instance of Skrooge *Correction: Since QT5.7, no more dependency on KDELibs4Support *Correction: Keep properties when 2 operations are merged + *Correction: Correction in weboob backend to avoid missing transactions and improve performances *New feature: Capability to set/change order of budget rules *New feature: Tooltip on modified amount of budget to explain the reasons of modifications *New feature: Import of PDF invoice diff -Nru skrooge-2.4.93/debian/changelog skrooge-2.4.94/debian/changelog --- skrooge-2.4.93/debian/changelog 2016-08-18 18:59:18.000000000 +0000 +++ skrooge-2.4.94/debian/changelog 2016-08-21 20:05:15.000000000 +0000 @@ -1,4 +1,4 @@ -skrooge (2.4.93-0ubuntu1~beta1) xenial; urgency=medium +skrooge (2.4.94-0ubuntu1~beta1) xenial; urgency=medium *Correction bug 364407: Doesn't build with Qt 5.7 *Correction: Migration connect from ui file to cpp file *Correction: Better colors of amounts in tooltips of advices @@ -6,11 +6,12 @@ *Correction: When a second instance of Skrooge is launched with a file as argument, the file must be imported in the first instance of Skrooge *Correction: Since QT5.7, no more dependency on KDELibs4Support *Correction: Keep properties when 2 operations are merged + *Correction: Correction in weboob backend to avoid missing transactions and improve performances *New feature: Capability to set/change order of budget rules *New feature: Tooltip on modified amount of budget to explain the reasons of modifications *New feature: Import of PDF invoice - -- Stephane MANKOWSKI (Perso) Thu, 18 Aug 2016 20:58:48 +0200 + -- Stephane MANKOWSKI (Perso) Sun, 21 Aug 2016 22:03:19 +0200 skrooge (2.4.0-0ubuntu1~ppa1) vivid; urgency=medium *Correction bug 359679: Building the v2.3.0 package on Arch Linux dies with an error 'isnan' was not declared in this scope diff -Nru skrooge-2.4.93/plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp skrooge-2.4.94/plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp --- skrooge-2.4.93/plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp 2016-08-18 18:55:55.000000000 +0000 +++ skrooge-2.4.94/plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp 2016-08-21 19:58:40.000000000 +0000 @@ -70,8 +70,8 @@ } struct download { - download(int iNbToDownload, const QString& iCmd, const QString& iPwd) - : m_nbToDownload(iNbToDownload), m_cmd(iCmd), m_pwd(iPwd) + download(int iNbToDownload, const QString& iDate, const QString& iCmd, const QString& iPwd) + : m_nbToDownload(iNbToDownload), m_date(iDate), m_cmd(iCmd), m_pwd(iPwd) { } @@ -84,10 +84,11 @@ do { // Build cmd QString cmd = m_cmd; - cmd = cmd.replace(QStringLiteral("%2"), SKGServices::intToString(m_nbToDownload)).replace(QStringLiteral("%1"), iAccountId).replace(QStringLiteral("%3"), m_pwd); + cmd = cmd.replace(QStringLiteral("%2"), SKGServices::intToString(m_nbToDownload)).replace(QStringLiteral("%1"), iAccountId).replace(QStringLiteral("%3"), m_pwd).replace(QStringLiteral("%4"), m_date); // Execute QProcess p; + SKGTRACEL(10) << "Execute: " << cmd << endl; p.setStandardOutputFile(file); p.start(cmd); if (p.waitForFinished(1000 * 60 * 2) && p.exitCode() == 0) { @@ -99,6 +100,7 @@ } int m_nbToDownload; + QString m_date; QString m_cmd; QString m_pwd; }; @@ -126,6 +128,7 @@ QString csvfile = QDir::tempPath() % "/skrooge_backend.csv"; QString cmd = properties[QStringLiteral("getaccounts")].replace(QStringLiteral("%3"), pwd); QProcess p; + SKGTRACEL(10) << "Execute: " << cmd << endl; p.setStandardOutputFile(csvfile); p.start(cmd); if (!p.waitForFinished(1000 * 60 * 2) || p.exitCode() != 0) { @@ -184,20 +187,24 @@ QString currentList = backendAccounts.join(QStringLiteral(";")); int nbToDownload = 0; - if (currentList != lastList) { + QString fromDate; + if (currentList != lastList || !lastDownload.isValid()) { nbToDownload = 99999; + fromDate = "2000-01-01"; } else { nbToDownload = qMax(lastDownload.daysTo(QDate::currentDate()) * 10, qint64(20)); + fromDate = SKGServices::dateToSqlString(lastDownload.addDays(-4)); } QStringList listDownloadedId; { - QFuture f = QtConcurrent::mapped(backendAccounts, download(nbToDownload, properties[QStringLiteral("getoperations")], pwd)); + QFuture f = QtConcurrent::mapped(backendAccounts, download(nbToDownload, fromDate, properties[QStringLiteral("getoperations")], pwd)); f.waitForFinished(); listDownloadedId = f.results(); } listDownloadedId.removeAll(QStringLiteral("")); // Check + bool checkOK = true; int nb = listDownloadedId.count(); if (100 * nb / backendAccounts.count() < 80) { // Some accounts have not been downloaded @@ -207,6 +214,7 @@ // Warning m_importer->getDocument()->sendMessage(i18nc("Warning message", "Some accounts have not been downloaded"), SKGDocument::Warning); } + checkOK = false; } // import @@ -265,8 +273,11 @@ m_importer->getDocument()->sendMessage(msg.Text, msg.Type, msg.Action); } - IFOKDO(err, m_importer->getDocument()->setParameter("SKG_LAST_" % bankendName.toUpper() % "_IMPORT_DATE", SKGServices::dateToSqlString(QDateTime::currentDateTime()))) - IFOKDO(err, m_importer->getDocument()->setParameter("SKG_LAST_" % bankendName.toUpper() % "_IMPORT_LIST", currentList)) + if (checkOK) { + // Last import is memorized only in case of 100% success + IFOKDO(err, m_importer->getDocument()->setParameter("SKG_LAST_" % bankendName.toUpper() % "_IMPORT_DATE", SKGServices::dateToSqlString(QDateTime::currentDateTime()))) + IFOKDO(err, m_importer->getDocument()->setParameter("SKG_LAST_" % bankendName.toUpper() % "_IMPORT_LIST", currentList)) + } } IFOKDO(err, m_importer->getDocument()->stepForward(3)) } diff -Nru skrooge-2.4.93/plugins/import/skrooge_import_backend/weboob0g.backend skrooge-2.4.94/plugins/import/skrooge_import_backend/weboob0g.backend --- skrooge-2.4.93/plugins/import/skrooge_import_backend/weboob0g.backend 2016-08-18 18:55:55.000000000 +0000 +++ skrooge-2.4.94/plugins/import/skrooge_import_backend/weboob0g.backend 2016-08-21 19:58:40.000000000 +0000 @@ -32,6 +32,7 @@ # %1 will be replaced by the account id [MANDATORY] # %2 will be replaced by the nb max operations to download [NOT MANDATORY] # %3 will be replaced by the password) [NOT MANDATORY] +# %4 will be replaced by the begin date (format: YYYY-MM-DD) of operations [NOT MANDATORY] getoperations=boobank -q -f csv -n %2 history "%1" #The csv columns. See CSV import settings for more detail. diff -Nru skrooge-2.4.93/plugins/import/skrooge_import_backend/weboob.backend skrooge-2.4.94/plugins/import/skrooge_import_backend/weboob.backend --- skrooge-2.4.93/plugins/import/skrooge_import_backend/weboob.backend 2016-08-18 18:55:55.000000000 +0000 +++ skrooge-2.4.94/plugins/import/skrooge_import_backend/weboob.backend 2016-08-21 19:58:40.000000000 +0000 @@ -32,7 +32,8 @@ # %1 will be replaced by the account id [MANDATORY] # %2 will be replaced by the nb max operations to download [NOT MANDATORY] # %3 will be replaced by the password) [NOT MANDATORY] -getoperations=boobank -q -f csv -n %2 history "%1" -s rdate,type,raw,label,amount +# %4 will be replaced by the begin date (format: YYYY-MM-DD) of operations [NOT MANDATORY] +getoperations=boobank -q -f csv history "%1" -s rdate,type,raw,label,amount --condition "rdate>%4" -n 99999 #The csv columns. See CSV import settings for more detail. csvcolumns=date|mode|comment|payee|amount Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/ast/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/ast/messages.mo differ diff -Nru skrooge-2.4.93/po/ast/skrooge.po skrooge-2.4.94/po/ast/skrooge.po --- skrooge-2.4.93/po/ast/skrooge.po 2016-08-18 18:55:59.000000000 +0000 +++ skrooge-2.4.94/po/ast/skrooge.po 2016-08-21 19:58:47.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2015-12-06 13:46+0100\n" "Last-Translator: enolp \n" "Language-Team: Asturian <>\n" @@ -1233,7 +1233,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1499,7 +1499,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "" @@ -11628,347 +11628,347 @@ msgid "Last month" msgstr "" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" "Do you want to save it before closing?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" "Do you want to continue?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Xeneral" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Alvertencia: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/bg/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/bg/messages.mo differ diff -Nru skrooge-2.4.93/po/bg/skrooge.po skrooge-2.4.94/po/bg/skrooge.po --- skrooge-2.4.93/po/bg/skrooge.po 2016-08-18 18:56:01.000000000 +0000 +++ skrooge-2.4.94/po/bg/skrooge.po 2016-08-21 19:58:49.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2009-09-18 16:52+0300\n" "Last-Translator: Yasen Pramatarov \n" "Language-Team: Bulgarian \n" @@ -1451,7 +1451,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1770,7 +1770,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 #, fuzzy #| msgid "History" msgctxt "Noun" @@ -13875,398 +13875,398 @@ msgid "Last month" msgstr "Последните 3 месеца" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 #, fuzzy #| msgid "Loading plugins..." msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Зареждане на приставки..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, fuzzy, kde-format #| msgid "Loading plugins..." msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Зареждане на приставки..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 #, fuzzy #| msgid "Date" msgctxt "Noun" msgid "Pages" msgstr "Дата" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 #, fuzzy #| msgid "Show grid" msgctxt "Verb" msgid "Show all" msgstr "Показване на координатната мрежа" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 #, fuzzy #| msgid "New &Tab" msgctxt "Noun, user action" msgid "New Tab" msgstr "Нов &подпрозорец" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 #, fuzzy #| msgid "Close All" msgctxt "Noun, user action" msgid "Close All" msgstr "Затваряне на всички" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 #, fuzzy #| msgid "Close All" msgctxt "Noun, user action" msgid "Close All Other" msgstr "Затваряне на всички" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 #, fuzzy #| msgid "Save as" msgctxt "Noun, user action" msgid "Save page state" msgstr "Запазване като" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 #, fuzzy #| msgid "Delete failed" msgctxt "Noun, user action" msgid "Reset page state" msgstr "Изтриването беше неуспешно" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 #, fuzzy #| msgid "Delete failed" msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Изтриването беше неуспешно" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 #, fuzzy #| msgid "Current" msgctxt "Noun, user action" msgid "Configure..." msgstr "Текущ" -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 #, fuzzy #| msgid "Previous year" msgctxt "Noun, user action" msgid "Previous" msgstr "Предишна година" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" "Do you want to save it before closing?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 #, fuzzy #| msgid "Save as" msgctxt "Question" msgid "Save as" msgstr "Запазване като" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 #, fuzzy #| msgid "Save" msgctxt "Question" msgid "Save" msgstr "Запазване" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 #, fuzzy #| msgid "Do not save" msgctxt "Question" msgid "Do not save" msgstr "Да не се записва" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" "Do you want to continue?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 #, fuzzy #| msgid "General" msgctxt "Noun" msgid "General" msgstr "Общи" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 #, fuzzy #| msgid "Save settings" msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Запазване на настройките" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 #, fuzzy #| msgid "Save settings" msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Запазване на настройките" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 #, fuzzy #| msgid " [modified]" msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [променен]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 #, fuzzy #| msgid "Untitled" msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Неозаглавено" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format #| msgid "Warning" msgctxt "Warning header" msgid "Warning: %1" msgstr "Предупреждение" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format #| msgid "Error" msgctxt "Error header" msgid "Error: %1" msgstr "Грешка" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, fuzzy, kde-format #| msgid "Confirmation" msgctxt "Information header" msgid "Information: %1" msgstr "Потвърждение" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format #| msgid "Show grid" msgctxt "Done header" msgid "Done: %1" msgstr "Показване на координатната мрежа" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 #, fuzzy #| msgid "Last modification" msgctxt "Noun" msgid "Notification" msgstr "Последна промяна" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 #, fuzzy #| msgid "Warning" msgctxt "Question" msgid "Warning" msgstr "Предупреждение" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 #, fuzzy #| msgid "Save" msgctxt "Verb" msgid "Save" msgstr "Запазване" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy #| msgid "Bookmark has been modified" msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Отметката е променена" -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgid "Bookmark has been modified" msgctxt "Positive message" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/bs/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/bs/messages.mo differ diff -Nru skrooge-2.4.93/po/bs/skrooge.po skrooge-2.4.94/po/bs/skrooge.po --- skrooge-2.4.93/po/bs/skrooge.po 2016-08-18 18:56:02.000000000 +0000 +++ skrooge-2.4.94/po/bs/skrooge.po 2016-08-21 19:58:50.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: skrooge.po\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2015-02-26 23:39+0100\n" "Last-Translator: Samir Ribić \n" "Language-Team: bs \n" @@ -1314,7 +1314,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, fuzzy, kde-format #| msgctxt "Error message" @@ -1602,7 +1602,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historijat" @@ -12443,152 +12443,152 @@ msgid "Last month" msgstr "Prošli mjesec" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Učitavanje dodataka..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Učitavanje dodatka %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Razvijanje dodatka '%1'" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "Učitavanje dodatka %1 nije uspjelo jer fabrika nije pronađena u %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Stranice" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Progres trenutne akcije" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Otkazivanje trenutne akcije" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Sakrij" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Prikaži sve" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nova kartica" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Zaključaj ploče" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Otključaj ploče" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Zakači ovu stranicu" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Zatvori sve" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Tazvori sve ostalo" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Spremanje stanja stranice" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Vraćanje na početno stanje stranice" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Ponovno otvaranje poslednje zatvorene stranice" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Prepisivanje preko stanja zabilješke" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Konfiguracija..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Meni" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Prethodno" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Sljedeći" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Aktiviraj uređivač" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" "Možete izaći iz režima punog ekrana sa %1 ili sa kontekstualnim izbornikom" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "Aplikacija se ne može zatvoriti kad je operacija u toku." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12597,22 +12597,22 @@ "Dokument je izmjenjen.\n" "Da li ga želite sačuvati prije zatvaranja?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Snimi kao" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Snimi" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Ne snimaj" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12621,67 +12621,67 @@ "Tekuće izmjene neće biti sačuvane.\n" "Da li želite nastaviti?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Kratki datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Dugi datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Ukrašen kratki datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Ukrašen dugi datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Opšte" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Snimi postavke" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Otkači ovu stranicu" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [izmijenjeno]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [samo za čitanje]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Neimenovano" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgctxt "Title of the main window" #| msgid "%1%2 - %3" @@ -12689,104 +12689,104 @@ msgid "%1%2" msgstr "%1%2 - %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Nije moguće otvoriti stranicu zato jer dodatak nije pronađen" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Nepoznat dodatak ili akcija [%1] u url [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "Stranica ne može biti zatvorena kad je operacija u toku." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Ponovno postavljanje zadanog stanja" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Zadano stanje je ponovo postavljeno" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Upozorenje: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Greška: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Informacija: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Urađeno: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Obavještenje" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" "Datoteka %1 već postoji. Da li zaista želite prepisati preko nje?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Upozorenje" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Snimi" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "kapitaliziraj" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "ključne riječi" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "donje" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "odsjeći" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "gornje" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy #| msgctxt "An information message" #| msgid "The document must be saved to be anonymized." @@ -12794,7 +12794,7 @@ msgid "The document must be saved to be migrated." msgstr "Dokument mora biti spremljen da bi bio anonimiziran." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgctxt "" #| "The document has been upgraded to the latest Skrooge version format" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/ca/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/ca/messages.mo differ diff -Nru skrooge-2.4.93/po/ca/skrooge.po skrooge-2.4.94/po/ca/skrooge.po --- skrooge-2.4.93/po/ca/skrooge.po 2016-08-18 18:56:01.000000000 +0000 +++ skrooge-2.4.94/po/ca/skrooge.po 2016-08-21 19:58:54.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-08-05 20:49+0100\n" "Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" @@ -1288,7 +1288,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1559,7 +1559,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historial" @@ -12142,28 +12142,28 @@ msgid "Last month" msgstr "Mes anterior" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "S'estan carregant els connectors..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "S'està carregant el connector %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Desenvolupador del connector «%1»" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", «%1»" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12172,124 +12172,124 @@ "Ha fallat en carregar el connector %1 perquè no s'ha pogut trobar la " "factoria en %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Pàgines" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Progrés de l'acció actual" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Cancel·la l'acció actual" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Oculta" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Mostra-ho tot" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Pestanya nova" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Bloqueja els plafons" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Desbloqueja els plafons" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Fixa aquesta pàgina" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Tanca-ho tot" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Tanca totes les altres" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Desa l'estat de la pàgina" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Reinicia l'estat de la pàgina" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Torna a obrir la darrera pàgina tancada" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Sobreescriu l'estat del punt" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Configura..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menú" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Anterior" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Següent" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Activa l'editor" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Migra al format SQLCipher" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" "Podeu sortir del mode de pantalla completa amb %1 o amb el menú contextual" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "L'aplicació no es pot tancar quan una operació és en execució." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12298,22 +12298,22 @@ "El document s'ha modificat.\n" "Voleu desar-lo abans de tancar-lo?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Desa com a" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Desa" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "No desis" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12322,174 +12322,174 @@ "No es desaran les modificacions actuals.\n" "Voleu continuar?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Data curta (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Data llarga (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Data curta imaginativa (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Data llarga imaginativa (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Data ISO (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "General" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Desa l'arranjament" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Desfixa aquesta pàgina" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [modificat]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [només de lectura]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Sense títol" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "No és possible obrir la pàgina perquè no s'ha trobat el connector" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Connector o acció [%1] en l'URL [%2] desconeguts" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "No es pot tancar cap pàgina quan una operació és en execució." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Reinicia l'estat predeterminat" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "L'estat predeterminat s'ha reiniciat" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Atenció: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Error: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Informació: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Fet: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Notificació" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "El fitxer %1 ja existeix. Realment voleu sobreescriure'l?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Avís" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Desa" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "escriu en majúscula" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "majúscules" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "minúscules" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "elimina espais" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "majúscules" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Cal desar el document per a fer la migració." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/ca@valencia/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/ca@valencia/messages.mo differ diff -Nru skrooge-2.4.93/po/ca@valencia/skrooge.po skrooge-2.4.94/po/ca@valencia/skrooge.po --- skrooge-2.4.93/po/ca@valencia/skrooge.po 2016-08-18 18:56:02.000000000 +0000 +++ skrooge-2.4.94/po/ca@valencia/skrooge.po 2016-08-21 19:58:50.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-08-05 20:49+0100\n" "Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" @@ -1288,7 +1288,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1559,7 +1559,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historial" @@ -12139,28 +12139,28 @@ msgid "Last month" msgstr "Mes anterior" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "S'estan carregant els connectors..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "S'està carregant el connector %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Desenvolupador del connector «%1»" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", «%1»" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12169,124 +12169,124 @@ "Ha fallat en carregar el connector %1 perquè no s'ha pogut trobar la " "factoria en %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Pàgines" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Progrés de l'acció actual" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Cancel·la l'acció actual" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Oculta" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Mostra-ho tot" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Pestanya nova" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Bloqueja els plafons" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Desbloqueja els plafons" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Fixa esta pàgina" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Tanca-ho tot" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Tanca totes les altres" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Guarda l'estat de la pàgina" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Reinicia l'estat de la pàgina" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Torna a obrir la darrera pàgina tancada" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Sobreescriu l'estat del punt" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Configura..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menú" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Anterior" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Següent" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Activa l'editor" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Migra al format SQLCipher" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" "Podeu eixir del mode de pantalla completa amb %1 o amb el menú contextual" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "L'aplicació no es pot tancar quan una operació és en execució." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12295,22 +12295,22 @@ "El document s'ha modificat.\n" "Voleu guardar-lo abans de tancar-lo?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Guarda com a" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Guarda" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "No guardes" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12319,174 +12319,174 @@ "No es guardaran les modificacions actuals.\n" "Voleu continuar?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Data curta (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Data llarga (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Data curta imaginativa (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Data llarga imaginativa (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Data ISO (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "General" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Guarda l'arranjament" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Desfixa esta pàgina" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [modificat]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [només de lectura]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Sense títol" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "No és possible obrir la pàgina perquè no s'ha trobat el connector" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Connector o acció [%1] en l'URL [%2] desconeguts" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "No es pot tancar cap pàgina quan una operació és en execució." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Reinicia l'estat predeterminat" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "L'estat predeterminat s'ha reiniciat" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Atenció: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Error: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Informació: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Fet: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Notificació" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "El fitxer %1 ja existeix. Realment voleu sobreescriure'l?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Avís" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Guarda" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "escriu en majúscula" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "majúscules" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "minúscules" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "elimina espais" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "majúscules" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Cal guardar el document per a fer la migració." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/cs/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/cs/messages.mo differ diff -Nru skrooge-2.4.93/po/cs/skrooge.po skrooge-2.4.94/po/cs/skrooge.po --- skrooge-2.4.93/po/cs/skrooge.po 2016-08-18 18:56:03.000000000 +0000 +++ skrooge-2.4.94/po/cs/skrooge.po 2016-08-21 19:58:53.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-07-22 13:24+0100\n" "Last-Translator: Vít Pelčák \n" "Language-Team: Czech \n" @@ -1275,7 +1275,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1546,7 +1546,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historie" @@ -12088,28 +12088,28 @@ msgid "Last month" msgstr "Minulý měsíc" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Načítají se moduly..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Načítám modul %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Vývojář zásuvného modulu '%1'" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12117,123 +12117,123 @@ msgstr "" "Načtení zásuvného modulu %1 selhalo, protože metoda nebyla nalezena v %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Stránky" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Průběh současné činnosti" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Zrušit současnou činnost" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Skrýt" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Zobrazit vše" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nová karta" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Zamknout panely" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Odemknout panely" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Přišpendlit tuto stránku" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Uzavřít vše" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Zavřít všechny ostatní" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Uložit stav stránky" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Obnovit stav stránky" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Otevřít naposledy zavřenou stránku" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Přepsat stav záložky" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Nastavit..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Nabídka" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Předchozí" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Následující" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Povolit editor" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Migrovat do formátu SQLCipher" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "Full screen mód můžete opustit použitím %1 nebo kontextovou nabídkou" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "Skrooge nemůže být ukončen dokud probíhá nějaká operace." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12242,22 +12242,22 @@ "Dokument byl změněn.\n" "Přejete si jej před zavřením uložit?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Uložit jako" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Uložit" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Neukládat" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12266,174 +12266,174 @@ "Současné změny nebudou uloženy.\n" "Přejete si pokračovat?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Krátké datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Dlouhé datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Ozdobné krátké datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Ozdobné dlouhé datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Obecné" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Uložit nastavení" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Odšpendlíkovat tuto stránku" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [změněno]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [pouze ke čtení]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Nepojmenovaný" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Nebylo možné otevřít stránku, protože zásuvný modul nebyl nalezen" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Neznámý plugin nebo akce [%1] na url [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "Stránka nemůže být zavřena dokud probíhá nějaká operace." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Obnovit výchozí stav" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Byl obnoven výchozí stav" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Varování: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Chyba: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Informace: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Hotovo: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Upozornění" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Soubor %1 již existuje. Opravdu si jej přejete přepsat?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Varování" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Uložit" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "kapitálky" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "první velké ve slově" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "malé" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "oříznout" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "velké" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Dokument musí být nejprve uložen, aby mohl být migrován." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/da/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/da/messages.mo differ diff -Nru skrooge-2.4.93/po/da/skrooge.po skrooge-2.4.94/po/da/skrooge.po --- skrooge-2.4.93/po/da/skrooge.po 2016-08-18 18:56:06.000000000 +0000 +++ skrooge-2.4.94/po/da/skrooge.po 2016-08-21 19:58:56.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2015-01-31 22:28+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -1303,7 +1303,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, fuzzy, kde-format #| msgctxt "Error message" @@ -1590,7 +1590,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historik" @@ -12450,28 +12450,28 @@ msgid "Last month" msgstr "Sidste måned" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Indlæser plugins..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Indlæser plugin %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Udvikler af pluginet \"%1\"" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", \"%1\"" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12480,123 +12480,123 @@ "Indlæsning af pluginet %1 mislykkedes fordi fabrikken ikke kunne findes i " "%2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Sider" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Fremgang for den aktuelle handling" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Annullér aktuel handling" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Skjul" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Vis alle" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nyt faneblad" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Lås paneler" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Lås paneler op" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Fastgør denne side" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Luk alle" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Luk alle andre" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Gem sidetilstand" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Nulstil sidetilstand" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Åbn den senest lukkede side igen" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Overskriv bogmærketilstand" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Indstil..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menu" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Forrige" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Næste" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Aktivér editor" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "Du kan afslutte fuldskærmtilstand med %1 eller via kontekstmenuen" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "Programmet kan ikke lukkes når en operation kører." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12605,22 +12605,22 @@ "Dokumentet er blevet ændret.\n" "Vil du gemme det før lukning?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Gem som" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Gem" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Gem ikke" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12629,67 +12629,67 @@ "Nuværende ændringer vil ikke blive gemt.\n" "Vil du fortsætte?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Kort dato (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Lang dato (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Flot kort dato (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Flot lang dato (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO-dato (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Generelt" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Gem indstillinger" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Løsgør denne side" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [ændret]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [skrivebeskyttet]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Unavngiven" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgctxt "Title of the main window" #| msgid "%1%2 - %3" @@ -12697,103 +12697,103 @@ msgid "%1%2" msgstr "%1%2 - %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Umuligt at åbne siden fordi pluginet ikke blev fundet" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Ukendt plugin eller handling [%1] i URL'en [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "En side kan ikke lukkes når en operation kører." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Nulstil standardtilstand" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Standardtilstanden er blevet nulstillet" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Advarsel: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Fejl: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Information: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Udført: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Bekendtgørelse" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Filen %1 findes allerede. Vil du virkelig overskrive den?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Advarsel" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Gem" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "storefor" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "storeforord" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "små" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "trim" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "store" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy #| msgctxt "An information message" #| msgid "The document must be saved to be anonymized." @@ -12801,7 +12801,7 @@ msgid "The document must be saved to be migrated." msgstr "Dokumentet skal gemmes for at kunne anonymiseres." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgctxt "" #| "The document has been upgraded to the latest Skrooge version format" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/de/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/de/messages.mo differ diff -Nru skrooge-2.4.93/po/de/skrooge.po skrooge-2.4.94/po/de/skrooge.po --- skrooge-2.4.93/po/de/skrooge.po 2016-08-18 18:56:04.000000000 +0000 +++ skrooge-2.4.94/po/de/skrooge.po 2016-08-21 19:58:57.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-08-17 12:27+0100\n" "Last-Translator: Frederik Schwarzer \n" "Language-Team: German \n" @@ -1291,7 +1291,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1564,7 +1564,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Verlauf" @@ -12303,28 +12303,28 @@ msgid "Last month" msgstr "Letzter Monat" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Module werden geladen ..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Modul %1/%2: %3 wird geladen ..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Entwickler des Moduls „%1“" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12333,125 +12333,125 @@ "Das Laden des Moduls %1 ist fehlgeschlagen, weil die „Factory“ nicht in %2 " "gefunden wurde: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Seiten" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Fortschritt des aktuellen Vorgangs" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Den aktuelle Vorgang abbrechen" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Ausblenden" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Alle anzeigen" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Neues Unterfenster" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Seitenleisten sperren" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Seitenleisten entsperren" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Dieses Unterfenster anheften" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Alle schließen" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Alle anderen schließen" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Seitenstatus speichern" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Seitenstatus zurücksetzen" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Zuletzt geschlossene Seite wieder öffnen" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Lesezeichen-Status überschreiben" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Einrichten ..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menü" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Vorheriges" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Nächstes" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Editor aktivieren" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "In SQLCipher-Format migrieren" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "Sie können den Vollbildmodus mit %1 oder mit dem Kontextmenü beenden" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" "Die Anwendung kann nicht geschlossenen werden, wenn ein Vorgang ausgeführt " "wird." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12460,22 +12460,22 @@ "Das Dokument ist geändert worden.\n" "Möchten Sie es vor dem Schließen speichern?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Speichern unter" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Speichern" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Nicht speichern" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12484,131 +12484,131 @@ "Die aktuellen Änderungen werden nicht gespeichert.\n" "Möchten Sie fortfahren?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Datum (Kurzform) (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Datum (Langform) (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Ansprechendes kurzes Datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Ansprechendes langes Datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO-Datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Allgemein" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Einstellungen speichern" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Anheften dieses Unterfensters aufheben" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [Geändert]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [Nur lesen]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Unbenannt" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" "Die Seite kann nicht geöffnet werden, da das Modul nicht gefunden werden " "kann." -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Unbekanntes Modul oder Vorgang [%1] in Adresse (URL) [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" "Eine Seite kann nicht geschlossenen werden, wenn ein Vorgang ausgeführt wird." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Standardstatus zurücksetzen" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Der Standardstatus ist zurückgesetzt worden" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Warnung: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Fehler: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Information: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Fertig: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Benachrichtigung" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" @@ -12616,47 +12616,47 @@ "Die Datei %1 existiert bereits. Möchten Sie sie wirklich " "überschreiben?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Warnung" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Speichern" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "Großschreibung" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "Großschreibung" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "Kleinschreibung" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "Stutzen" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "Großbuchstaben" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Das Dokument muss gespeichert werden, um migriert zu werden." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/el/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/el/messages.mo differ diff -Nru skrooge-2.4.93/po/el/skrooge.po skrooge-2.4.94/po/el/skrooge.po --- skrooge-2.4.93/po/el/skrooge.po 2016-08-18 18:56:05.000000000 +0000 +++ skrooge-2.4.94/po/el/skrooge.po 2016-08-21 19:58:55.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2013-01-09 15:37+0300\n" "Last-Translator: Stelios \n" "Language-Team: Greek \n" @@ -1340,7 +1340,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1647,7 +1647,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Ιστορικό" @@ -12963,28 +12963,28 @@ msgid "Last month" msgstr "Τελευταίος μήνας" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Φόρτωση πρόσθετων..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Φόρτωση πρόσθετου %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Προγραμματιστής του πρόσθετου '%1'" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12992,72 +12992,72 @@ msgstr "" "Η φόρτωση του πρόσθετου %1 απέτυχε γιατί το αποθετήριο δεν βρέθηκε στο %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Σελίδες" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Πρόοδος της τρέχουσας ενέργειας" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Ακύρωση της τρέχουσας ενέργειας" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Απόκρυψη" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Εμφάνιση όλων" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Νέα καρτέλα" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Κλείδωμα πινάκων" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Ξεκλείδωμα πινάκων" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Καρφίτσωμα αυτής της σελίδας" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Κλείσιμο όλων" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Κλείσιμο όλων των άλλων" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Αποθήκευση κατάστασης σελίδας" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Επαναφορά κατάστασης σελίδας" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 #, fuzzy #| msgctxt "Noun, user action" #| msgid "Reset page state" @@ -13065,48 +13065,48 @@ msgid "Reopen last page closed" msgstr "Επαναφορά κατάστασης σελίδας" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Αντικατάσταση κατάστασης σελιδοδείκτη" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Διαμόρφωση..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Μενού" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Προηγούμενο" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Επόμενο" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Ενεργοποίηση επεξεργαστή" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 #, fuzzy #| msgctxt "Question" #| msgid "The application cannot be closed when an operation is running." @@ -13114,7 +13114,7 @@ msgid "The application cannot be closed when an operation is running." msgstr "Η εφαρμογή δεν μπορεί να κλείσει όταν μια πράξη εκτελείται." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -13123,22 +13123,22 @@ "Το έγγραφο έχει τροποποιηθεί.\n" "Θέλετε να το αποθηκεύσετε πριν το κλείσιμο;" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Αποθήκευση ως" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Αποθήκευση" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Να μην αποθηκευτεί" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -13147,67 +13147,67 @@ "Οι τρέχουσες αλλαγές δεν θα αποθηκευτούν.\n" "Θέλετε να συνεχίσετε;" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Σύντομη μορφή ημερομηνίας (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Περιγραφική μορφή ημερομηνίας (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Κομψή σύντομη μορφή ημερομηνίας (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Κομψή περιγραφική μορφή ημερομηνίας (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Ημερομηνία ISO (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Γενικά" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Αποθήκευση ρυθμίσεων" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Ξεκαρφίτσωμα αυτής της σελίδας" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [τροποποιημένο]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [ανάγνωση μόνο]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Χωρίς Τίτλο" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgctxt "Title of the main window" #| msgid "%1%2 - %3" @@ -13215,18 +13215,18 @@ msgid "%1%2" msgstr "%1%2 - %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Αδυναμία ανοίγματος σελίδας, διότι το πρόσθετο δεν βρέθηκε" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Άγνωστο πρόσθετο ή ενέργεια [%1] sto url [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 #, fuzzy #| msgctxt "Question" #| msgid "A page cannot be closed when an operation is running." @@ -13234,17 +13234,17 @@ msgid "A page cannot be closed when an operation is running." msgstr "Η σελίδα δεν μπορεί να κλείσει όταν μια πράξη εκτελείται." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Επαναφορά στην προεπιλεγμένη κατάσταση" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Η επαναφορά στην προκαθορισμένη κατάσταση πραγματοποιήθηκε" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Warning" @@ -13252,7 +13252,7 @@ msgid "Warning: %1" msgstr "Προειδοποίηση" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Error" @@ -13260,7 +13260,7 @@ msgid "Error: %1" msgstr "Σφάλμα" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Confirmation" @@ -13268,60 +13268,60 @@ msgid "Information: %1" msgstr "Επιβεβαίωση" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format #| msgid "Show: %1" msgctxt "Done header" msgid "Done: %1" msgstr "Εμφάνιση: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Ειδοποίηση" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Το αρχείο %1 υπάρχει ήδη. Θέλετε πράγματι να αντικατασταθεί;" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Προειδοποίηση" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Αποθήκευση" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "capitalize" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "capwords" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "lower" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "trim" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "upper" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy #| msgctxt "An information message" #| msgid "The document must be saved to be anonymized." @@ -13329,7 +13329,7 @@ msgid "The document must be saved to be migrated." msgstr "Το έγγραφο πρέπει να αποθηκευτεί για να είναι ανώνυμο." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgctxt "" #| "The document has been upgraded to the latest Skrooge version format" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/en_GB/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/en_GB/messages.mo differ diff -Nru skrooge-2.4.93/po/en_GB/skrooge.po skrooge-2.4.94/po/en_GB/skrooge.po --- skrooge-2.4.93/po/en_GB/skrooge.po 2016-08-18 18:56:05.000000000 +0000 +++ skrooge-2.4.94/po/en_GB/skrooge.po 2016-08-21 19:58:59.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-08-05 12:33+0000\n" "Last-Translator: Steve Allewell \n" "Language-Team: English \n" @@ -1274,7 +1274,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1544,7 +1544,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "History" @@ -12102,28 +12102,28 @@ msgid "Last month" msgstr "Last month" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Loading plugins..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Loading plugin %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Developer of plugin '%1'" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12131,123 +12131,123 @@ msgstr "" "Loading plugin %1 failed because the factory could not be found in %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Pages" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Progress of the current action" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Cancel the current action" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Hide" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Show all" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "New Tab" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Lock panels" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Unlock panels" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Pin this page" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Close All" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Close All Other" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Save page state" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Reset page state" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Reopen last page closed" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Overwrite bookmark state" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Configure..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menu" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Previous" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Next" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Enable editor" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Migrate to SQLCipher format" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "You can exit full screen mode with %1 or with the contextual menu" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "The application cannot be closed when an operation is running." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12256,22 +12256,22 @@ "The document has been modified.\n" "Do you want to save it before closing?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Save as" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Save" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Do not save" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12280,174 +12280,174 @@ "Current modifications will not be saved.\n" "Do you want to continue?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Short date (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Long date (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Fancy short date (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Fancy long date (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO date (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "General" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Save settings" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Unpin this page" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [modified]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [read only]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Untitled" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Impossible to open the page because the plugin was not found" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Unknown plugin or action [%1] in url [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "A page cannot be closed when an operation is running." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Reset default state" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Default state has been reset" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Warning: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Error: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Information: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Done: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Notification" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "File %1 already exists. Do you really want to overwrite it?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Warning" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Save" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "capitalise" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "capwords" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "lower" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "trim" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "upper" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "The document must be saved to be migrated." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/eo/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/eo/messages.mo differ diff -Nru skrooge-2.4.93/po/eo/skrooge.po skrooge-2.4.94/po/eo/skrooge.po --- skrooge-2.4.93/po/eo/skrooge.po 2016-08-18 18:56:06.000000000 +0000 +++ skrooge-2.4.94/po/eo/skrooge.po 2016-08-21 19:59:02.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2009-11-15 12:06+0100\n" "Last-Translator: Axel Rousseau \n" "Language-Team: esperanto \n" @@ -1330,7 +1330,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1628,7 +1628,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historio" @@ -12857,373 +12857,373 @@ msgid "Last month" msgstr "Valoroj" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 #, fuzzy #| msgid "Date" msgctxt "Noun" msgid "Pages" msgstr "Dato" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Kaŝi" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 #, fuzzy #| msgid "Show splash screen" msgctxt "Verb" msgid "Show all" msgstr "Montri la lanĉprogreson" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 #, fuzzy #| msgid "New &Tab" msgctxt "Noun, user action" msgid "New Tab" msgstr "Nova &langeto" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Fermi ĉiujn" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 #, fuzzy #| msgid "Close All" msgctxt "Noun, user action" msgid "Close All Other" msgstr "Fermi ĉiujn" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 #, fuzzy #| msgid "Save" msgctxt "Noun, user action" msgid "Save page state" msgstr "Konservi" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 #, fuzzy #| msgid "Delete failed" msgctxt "Noun, user action" msgid "Reset page state" msgstr "La forigado fiaskis" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 #, fuzzy #| msgid "Delete failed" msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "La forigado fiaskis" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 #, fuzzy #| msgid "Bookmarks" msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Legosignoj" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Agordu..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 #, fuzzy #| msgid "&Previous" msgctxt "Noun, user action" msgid "Previous" msgstr "An&taŭa" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 #, fuzzy #| msgid "&Next" msgctxt "Noun, user action" msgid "Next" msgstr "Sek&va" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" "Do you want to save it before closing?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Konservi kiel" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Konservi" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" "Do you want to continue?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Ĝenerale" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [ŝanĝita]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Sentitola" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format #| msgid "Warning" msgctxt "Warning header" msgid "Warning: %1" msgstr "Averto" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format #| msgid "Error" msgctxt "Error header" msgid "Error: %1" msgstr "Eraro: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, fuzzy, kde-format #| msgid "Confirmation" msgctxt "Information header" msgid "Information: %1" msgstr "Konfirmo" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format #| msgid "Show splash screen" msgctxt "Done header" msgid "Done: %1" msgstr "Montri la lanĉprogreson" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Atentigo" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Averto" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Konservi" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy #| msgid "Operation canceled" msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Operacio rezignita" -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgid "Operation canceled" msgctxt "Positive message" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/es/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/es/messages.mo differ diff -Nru skrooge-2.4.93/po/es/skrooge.po skrooge-2.4.94/po/es/skrooge.po --- skrooge-2.4.93/po/es/skrooge.po 2016-08-18 18:56:07.000000000 +0000 +++ skrooge-2.4.94/po/es/skrooge.po 2016-08-21 19:59:00.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-08-04 20:16+0200\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" @@ -1290,7 +1290,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1560,7 +1560,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historial" @@ -12182,28 +12182,28 @@ msgid "Last month" msgstr "Último mes" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Cargando complementos..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Cargando complemento %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Desarrollador del complemento «%1»" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", «%1»" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12212,125 +12212,125 @@ "La carga del complemento %1 ha fallado porque no se puede encontrar el " "objeto de fabricación en %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Páginas" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Progreso de la acción actual" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Cancelar la acción actual" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Ocultar" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Mostrar todo" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nueva pestaña" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Bloquear paneles" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Desbloquear paneles" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Fijar esta página" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Cerrar todo" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Cerrar todas las demás" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Guardar estado de la página" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Reiniciar estado de la página" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Reabrir la última página cerrada" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Sobrescribir estado del marcador" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Configurar..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menú" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Anterior" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Siguiente" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Habilitar el editor" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Migrar al formato SQLCipher" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" "Puede salir del modo de pantalla completa con %1 o con el menú contextual" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" "La aplicación no se puede cerrar mientras se esté ejecutando una operación." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12339,22 +12339,22 @@ "El documento ha sido modificado.\n" "¿Desea guardarlo antes de salir?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Guardar como" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Guardar" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "No guardar" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12363,176 +12363,176 @@ "Los cambios realizados no se guardarán.\n" "¿Seguro que desea continuar?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Fecha corta (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Fecha larga (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Fecha corta de fantasía (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Fecha larga de fantasía (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Fecha ISO (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "General" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Guardar los ajustes" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Desprender esta página" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [modificado]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [solo lectura]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Sin título" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" "No se ha podido abrir la página porque no se ha encontrado el complemento" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Complemento o acción desconocido [%1] en URL [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" "Una página no se puede cerrar mientras se esté ejecutando una operación." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Reiniciar al estado por omisión" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Se ha reiniciado el estado por omisión" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Advertencia: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Error: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Información: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Hecho: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Notificación" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "El archivo %1 ya existe. ¿Seguro que desea sobrescribirlo?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Advertencia" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Guardar" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "capitalizar" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "palabras en mayúsculas" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "minúsculas" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "recortar" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "mayúsculas" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Debe guardar el documento para migrarlo." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/et/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/et/messages.mo differ diff -Nru skrooge-2.4.93/po/et/skrooge.po skrooge-2.4.94/po/et/skrooge.po --- skrooge-2.4.93/po/et/skrooge.po 2016-08-18 18:56:08.000000000 +0000 +++ skrooge-2.4.94/po/et/skrooge.po 2016-08-21 19:59:01.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2013-01-14 20:31+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -1323,7 +1323,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, fuzzy, kde-format #| msgctxt "Error message" @@ -1629,7 +1629,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Ajalugu" @@ -12757,100 +12757,100 @@ msgid "Last month" msgstr "Eelmine kuu" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Pluginate laadimine..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Plugina %1/%2 laadimine: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Plugina \"%1\" arendaja" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", \"%1\"" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "Plugina %1 laadimine nurjus, sest %2 ei sisaldanud baasi (factory): %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Leheküljed" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Aktiivse toimingu edenemine" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Aktiivse toimingu katkestamine" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Peida" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Näita kõiki" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Uus kaart" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Lukusta paneelid" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Eemalda paneelide lukustus" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Selle lehekülje kinnistamine" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Kõigi sulgemine" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Kõigi teiste sulgemine" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Lehekülje oleku salvestamine" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Lehekülje oleku lähtestamine" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 #, fuzzy #| msgctxt "Noun, user action" #| msgid "Reset page state" @@ -12858,48 +12858,48 @@ msgid "Reopen last page closed" msgstr "Lehekülje oleku lähtestamine" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Järjehoidja oleku ülekirjutamine" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Seadistamine..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menüü" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Eelmine" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Järgmine" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Redaktori lubamine" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 #, fuzzy #| msgctxt "Question" #| msgid "The application cannot be closed when an operation is running." @@ -12907,7 +12907,7 @@ msgid "The application cannot be closed when an operation is running." msgstr "Rakendust ei saa sulgeda, kui toiming on pooleli." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12916,22 +12916,22 @@ "Dokumenti on muudetud.\n" "Kas salvestada see enne sulgemist?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Salvesta kui" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Salvesta" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Ära salvesta" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12940,67 +12940,67 @@ "Praegusi muudatusi ei salvestata.\n" "Kas jätkata?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Lühike kuupäev (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Pikk kuupäev (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Uhke lühike kuupäev (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Uhke pikk kuupäev (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO kuupäev (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Üldine" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Seadistuste salvestamine" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Selle lehekülje kinnistamise lõpetamine" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [muudetud]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [kirjutuskaitstud]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Nimetu" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgctxt "Title of the main window" #| msgid "%1%2 - %3" @@ -13008,18 +13008,18 @@ msgid "%1%2" msgstr "%1%2 - %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Lehekülge pole võimalik avada, sest ei leitud pluginat" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Tundmatu plugin või toiming [%1] URL-iga [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 #, fuzzy #| msgctxt "Question" #| msgid "A page cannot be closed when an operation is running." @@ -13027,17 +13027,17 @@ msgid "A page cannot be closed when an operation is running." msgstr "Lehekülge ei saa sulgeda, kui toiming on pooleli." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Vaikimisi oleku lähtestamine" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Vaikimisi olek on lähtestatud" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Warning" @@ -13045,7 +13045,7 @@ msgid "Warning: %1" msgstr "Hoiatus" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Error" @@ -13053,7 +13053,7 @@ msgid "Error: %1" msgstr "Tõrge" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Confirmation" @@ -13061,60 +13061,60 @@ msgid "Information: %1" msgstr "Kinnitus" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format #| msgid "Show: %1" msgctxt "Done header" msgid "Done: %1" msgstr "Kuvatakse: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Märguanne" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Fail %1 on juba olemas. Kas tõesti kirjutada see üle?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Hoiatus" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Salvesta" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "sõnaalguse suurtähed" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "sõnasisesed suurtähed" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "väiketähed" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "kärpimine" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "suurtähed" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy #| msgctxt "An information message" #| msgid "The document must be saved to be anonymized." @@ -13122,7 +13122,7 @@ msgid "The document must be saved to be migrated." msgstr "Anonüümseks muutmiseks peab dokument olema salvestatud." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgctxt "" #| "The document has been upgraded to the latest Skrooge version format" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/fi/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/fi/messages.mo differ diff -Nru skrooge-2.4.93/po/fi/skrooge.po skrooge-2.4.94/po/fi/skrooge.po --- skrooge-2.4.93/po/fi/skrooge.po 2016-08-18 18:56:09.000000000 +0000 +++ skrooge-2.4.94/po/fi/skrooge.po 2016-08-21 19:59:07.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-02-14 16:07+0200\n" "Last-Translator: Lasse Liehu \n" "Language-Team: Finnish \n" @@ -1284,7 +1284,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1565,7 +1565,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historia" @@ -12151,140 +12151,140 @@ msgid "Last month" msgstr "Viime kuu" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Ladataan liitännäisiä…" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Ladataan liitännäistä %1/%2: %3…" -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Liitännäisen ”%1” kehittäjä" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", ”%1”" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Sivut" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Nykyisen tapahtuman edistyminen" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Peru nykyinen tapahtuma" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Piilota" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Näytä kaikki" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Uusi välilehti" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Lukitse paneelit" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Avaa paneelien lukitus" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Kiinnitä tämä sivu" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Sulje kaikki" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Sulje kaikki muut" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Tallenna sivun tila" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Alusta sivun tila" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Avaa viimeisin suljettu sivu uudelleen" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Korvaa kirjanmerkin tila" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Asetukset…" -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Valikko" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Edellinen" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Seuraava" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Ota muokkain käyttöön" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Siirrä SQLCipher-muotoon" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" @@ -12292,12 +12292,12 @@ "Koko näytön tilasta voi poistua pikanäppäimellä %1 tai kontekstivalikon " "kautta" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "Sovellusta ei voi sulkea tapahtuman ollessa käynnissä." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12306,22 +12306,22 @@ "Tiedostoa on muutettu.\n" "Haluatko tallentaa sen ennen sulkemista?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Tallenna nimellä" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Tallenna" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Älä tallenna" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12330,174 +12330,174 @@ "Muutoksia ei ole vielä tallennettu.\n" "Haluatko jatkaa?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Lyhyt päiväys (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Pitkä päiväys (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Muotoiltu lyhyt päiväys (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Muotoiltu pitkä päiväys (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO-päiväys (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Yleistä" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Tallenna asetukset" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Irrota tämä sivu" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr "[muutettu]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [vain luku]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Nimetön" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Sivua on mahdotonta avata, koska liitännäistä ei löydy" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Tuntematon liitännäinen tai toiminto [%1] osoitteessa [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "Sivua ei voi sulkea tapahtuman ollessa käynnissä." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Palauta oletustila" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Oletustila on alustettu" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Varoitus: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Virhe: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Tietoa: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Valmis: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Ilmoitus" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Tiedosto %1 on jo olemassa. Haluatko varmasti korvata sen?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Varoitus" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Tallenna" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "isoalkukirjain" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "pienaakkoset" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "suuraakkoset" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Tiedosto on tallennettava sen siirtämiseksi." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/fr/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/fr/messages.mo differ diff -Nru skrooge-2.4.93/po/fr/skrooge.po skrooge-2.4.94/po/fr/skrooge.po --- skrooge-2.4.93/po/fr/skrooge.po 2016-08-18 18:56:10.000000000 +0000 +++ skrooge-2.4.94/po/fr/skrooge.po 2016-08-21 19:59:05.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-05-05 10:58+0100\n" "Last-Translator: Stephane MANKOWSKI \n" "Language-Team: French \n" @@ -1308,7 +1308,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1580,7 +1580,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historique" @@ -12326,29 +12326,29 @@ msgid "Last month" msgstr "Dernier mois" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Chargement des modules externes..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Chargement du module externe %1 / %2 : %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Développeur du module externe « %1 »" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", « %1 »" # "because of" -> "because" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12357,124 +12357,124 @@ "Le chargement du module externe %1 a échoué car il a été impossible de le " "trouver la bibliothèque dans %2 : %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Pages" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Progression de l'action courante" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Annuler l'action en cours" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Cacher" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Tout afficher" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nouvel onglet" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Verrouiller les panneaux" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Déverrouiller les panneaux" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Épingler cette page" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Tout fermer" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Fermer tous les autres" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Enregistrer l'état de la page" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Ré-initialiser l'état de la page" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Ré-ouvrir la dernière page fermée" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Écraser l'état du signet" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Configurer..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menu" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Précédent" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Suivant" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Activer l'éditeur" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Migrer vers le format SQL Cipher" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" "Vous pouvez sortir du mode plein écran avec %1 ou avec le menu contextuel" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "L'application ne peut être fermée tant qu'une opération est en cours." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12483,22 +12483,22 @@ "Le document a été modifié.\n" "Voulez-vous l'enregistrer avant fermeture ?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Enregistrer sous" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Enregistrer" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Ne pas enregistrer" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12507,177 +12507,177 @@ "Les modifications en cours ne seront pas enregistrées.\n" "Voulez-vous continuer ?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Date courte (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Date longue (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Date courte fantaisie (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Date longue fantaisie (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Date ISO (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Général" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Enregistrer la configuration" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Relâcher cette page" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " « modifié »" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [lecture seule]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Sans nom" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" # "because of" -> "because" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" "Impossible d'ouvrir cette page car il est impossible de trouver le module " "externe" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Module externe ou action inconnu [%1] dans l'URL [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "Impossible de fermer une page tant qu'une opération est en cours." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Restaurer l'état par défaut" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "La ré-initialisation à l'état par défaut a été effectuée" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Attention : %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Erreur : %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Information : %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Effectué : %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Notification" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Le fichier %1 existe déjà. Voulez-vous vraiment l'écraser ?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Attention" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Enregistrer" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "mettre en capitale" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "mots en capitale" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "minuscule" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "rogner" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "majuscule" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Le document doit être enregistré pour être migré." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/ga/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/ga/messages.mo differ diff -Nru skrooge-2.4.93/po/ga/skrooge.po skrooge-2.4.94/po/ga/skrooge.po --- skrooge-2.4.93/po/ga/skrooge.po 2016-08-18 18:56:09.000000000 +0000 +++ skrooge-2.4.94/po/ga/skrooge.po 2016-08-21 19:59:06.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2009-12-24 06:59-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -1246,7 +1246,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1537,7 +1537,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Stair" @@ -11892,240 +11892,240 @@ msgid "Last month" msgstr "An mhí seo caite" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Breiseáin á luchtú..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Breiseán %1/%2 á luchtú: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Leathanaigh" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Folaigh" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Taispeáin uile" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" "Do you want to save it before closing?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" "Do you want to continue?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgctxt "Title of the main window" #| msgid "%1%2 - %3" @@ -12133,33 +12133,33 @@ msgid "%1%2" msgstr "%1%2 - %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Warning" @@ -12167,7 +12167,7 @@ msgid "Warning: %1" msgstr "Rabhadh" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Error" @@ -12175,71 +12175,71 @@ msgid "Error: %1" msgstr "Earráid" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format #| msgid "Show: %1" msgctxt "Done header" msgid "Done: %1" msgstr "Taispeáin: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Rabhadh" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Sábháil" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/gl/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/gl/messages.mo differ diff -Nru skrooge-2.4.93/po/gl/skrooge.po skrooge-2.4.94/po/gl/skrooge.po --- skrooge-2.4.93/po/gl/skrooge.po 2016-08-18 18:56:11.000000000 +0000 +++ skrooge-2.4.94/po/gl/skrooge.po 2016-08-21 19:59:10.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-05-17 06:40+0100\n" "Last-Translator: Adrián Chaves Fernández (Gallaecio) \n" @@ -1290,7 +1290,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1560,7 +1560,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historial" @@ -12114,28 +12114,28 @@ msgid "Last month" msgstr "Último mes" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Cargando os complementos…" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Cargando o complemento %1 de %2: %3…" -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Desenvolvedor do complemento «%1»" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12144,123 +12144,123 @@ "Non se puido cargar o complemento «%1» porque non se atopou o seu xerador en " "«%2»: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Páxinas" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Progreso da acción actual." -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Cancelar a acción actual." -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Agochar" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Amosalos todos" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nova lapela" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Bloquear os paneis" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Desbloquear os paneis" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Fixar" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Pechalos todos" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Pechar os demais" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Gardar o estado da páxina" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Restablecer o estado da páxina" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Abrir e novo a última páxina pechada" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Actualizar o estado do marcador" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Configurar…" -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menú" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Anterior" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Seguinte" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Activar o editor" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Migrar ao formato de SQLCipher" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "Pode saír do modo de pantalla completa con %1 ou co menú contextual" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "Non se pode pechar o programa mentres se executa unha operación." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12269,22 +12269,22 @@ "Modificouse o documento.\n" "Quere gardalo antes de pechalo?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Gardar como" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Gardar" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Non gardar" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12293,174 +12293,174 @@ "Non se gardarán os cambios.\n" "Quere continuar?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Data curta (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Data longa (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Data curta bonita (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Data longa bonita (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Data ISO (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Xeral" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Gardar a configuración" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Soltar" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr "(modificado)" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr "(só lectura)" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Sen título" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Foi imposíbel abrir a páxina porque non se atopou o complemento." -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Descoñécese a acción ou complemento «%1» do URL «%2»." -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "Non se pode pechar a páxina mentres se executa unha operación." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Restablecer o estado predeterminado" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Restableceuse o estado predeterminado." -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Aviso: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Erro: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Información: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Feito: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Notificación" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "O ficheiro %1 xa existe. Quere substituílo?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Aviso" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Gardar" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "maiúscula inicial" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "maiúscula inicial en cada palabra" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "minúsculas" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "eliminar espazos innecesarios" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "maiúsculas" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Hai que gardar o documento para migralo." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/hu/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/hu/messages.mo differ diff -Nru skrooge-2.4.93/po/hu/skrooge.po skrooge-2.4.94/po/hu/skrooge.po --- skrooge-2.4.93/po/hu/skrooge.po 2016-08-18 18:56:13.000000000 +0000 +++ skrooge-2.4.94/po/hu/skrooge.po 2016-08-21 19:59:16.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2014-02-16 19:19+0100\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian \n" @@ -1295,7 +1295,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, fuzzy, kde-format #| msgctxt "Error message" @@ -1588,7 +1588,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Előzmény" @@ -12351,28 +12351,28 @@ msgid "Last month" msgstr "Múlt hónap" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Beépülő modulok betöltése..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Plugin-ek betöltése %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "'%1' beépülő modul fejlesztője" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12381,123 +12381,123 @@ "%1 beépülő modul betöltése sikertelen, mert a készítő nem található %2 -ben: " "%3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Oldalak" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Aktuális művelet haladása" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Aktuális művelet megszakítása" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Elrejtés" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Minden mutatása" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Új fül" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Panelek zárolása" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Panelek zárolásának feloldása" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Oldal rajzszögezése" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Minden bezárása" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Minden más bezárása" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Oldal állapotának mentése" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Oldal állapotának visszaállítása" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Legutolsó bezárt oldal újranyitása" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Könyvjelző állapot felülírása" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Beállít..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menü" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Előző" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Következő" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Szerkesztő engedélyezése" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "Az alkalmazás nem zárható be, amíg egy művelet fut." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12506,22 +12506,22 @@ "A dokumentum megváltozott.\n" "El akarja menteni bezárás előtt?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Mentés másként" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Mentés" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Ne mentse" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12530,67 +12530,67 @@ "A jelenlegi módosítások nincsenek mentve.\n" "Akarja folytatni?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Rövid dátum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Hosszú dátum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Különösen rövid dátum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Különösen hosszú dátum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO dátum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Általános" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Beállítások mentése" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Oldal rajzszögezésének megszüntetése" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [módosítva]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [csak olvasható]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Cím nélküli" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgctxt "Title of the main window" #| msgid "%1%2 - %3" @@ -12598,103 +12598,103 @@ msgid "%1%2" msgstr "%1%2 - %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Oldal megnyitása lehetetlen, mert a beépülő modul nem található" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Ismeretlen bővítmény vagy művelet [%1] az URL-ben [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "Az oldal nem zárható be, amíg egy művelet fut." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Alapállapot visszaállítása" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Alapállapot visszaállítva" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Figyelmeztetés: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Hiba: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Információ: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Kész: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Figyelmeztetés" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "%1 fájl már létezik. Tényleg felül akarja írni?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Figyelmeztetés" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Mentés" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "nagy kezdőbetűsít" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "kisbetűsítés" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "levágás" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "nagybetűsítés" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy #| msgctxt "An information message" #| msgid "The document must be saved to be anonymized." @@ -12702,7 +12702,7 @@ msgid "The document must be saved to be migrated." msgstr "A dokumentumot el kell menteni a névtelenítéshez." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgctxt "" #| "The document has been upgraded to the latest Skrooge version format" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/ia/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/ia/messages.mo differ diff -Nru skrooge-2.4.93/po/ia/skrooge.po skrooge-2.4.94/po/ia/skrooge.po --- skrooge-2.4.93/po/ia/skrooge.po 2016-08-18 18:56:13.000000000 +0000 +++ skrooge-2.4.94/po/ia/skrooge.po 2016-08-21 19:59:13.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2014-03-07 13:53+0100\n" "Last-Translator: G.Sora \n" "Language-Team: Interlingua \n" @@ -1250,7 +1250,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1528,7 +1528,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historia" @@ -11745,347 +11745,347 @@ msgid "Last month" msgstr "Ultime mense" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Paginas" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Cela" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Monstra omne" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nove scheda" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Bloca pannellos" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Disbloca pannellos" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Claude omne" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Configura..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menu" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Precedente" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Proxime" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" "Do you want to save it before closing?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Salveguarda como" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Salveguarda" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Non salveguarda" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" "Do you want to continue?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Data breve (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Data longe: (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Data ISO: (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "General" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Salveguarda preferentias" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [Modificate]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [Solmente de lectura]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Sin titulo" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Aviso: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Error: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Information: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Facite: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Notification" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Aviso" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Salveguarda" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "Capitalisa (Il pone in majuscule)" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "Bassa (il pone in minuscule)" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "Tonditura" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "Superior" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/it/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/it/messages.mo differ diff -Nru skrooge-2.4.93/po/it/skrooge.po skrooge-2.4.94/po/it/skrooge.po --- skrooge-2.4.93/po/it/skrooge.po 2016-08-18 18:56:15.000000000 +0000 +++ skrooge-2.4.94/po/it/skrooge.po 2016-08-21 19:59:17.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-04-26 21:58+0200\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" @@ -1297,7 +1297,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1568,7 +1568,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Cronologia" @@ -12218,28 +12218,28 @@ msgid "Last month" msgstr "Ultimo mese" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Caricamento delle estensioni..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Caricamento dell'estensione %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Sviluppatore dell'estensione «%1»" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", «%1»" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12248,125 +12248,125 @@ "Il caricamento dell'estensione %1 non è riuscito a causa di un problema in " "%2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Pagine" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Avanzamento dell'azione attuale" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Annulla l'azione attuale" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Nascondi" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Mostra tutti" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nuova scheda" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Blocca pannelli" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Sblocca pannelli" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Aggiungi un segnalibro alla pagina" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Chiudi tutto" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Chiudi tutto tranne la selezione attuale" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Salva lo stato della pagina" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Azzera lo stato della pagina" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Riapri l'ultima pagina chiusa" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Sovrascrivi lo stato dei segnalibri" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Configura..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menu" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Precedente" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Prossimo" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Abilita modifiche" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Migra al formato SQLCipher" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" "Puoi uscire dalla modalità a schermo intero con %1 o col menu contestuale" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" "L'applicazione non può essere chiusa se una operazione è in esecuzione." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12375,22 +12375,22 @@ "Il documento è stato modificato.\n" "Vuoi salvarlo prima di chiuderlo?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Salva come" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Salva" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Non salvare" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12399,174 +12399,174 @@ "Le modifiche non saranno salvate.\n" "Vuoi continuare?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Data, formato breve (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Data, formato esteso (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Formato data elegante breve (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Formato data elegante esteso (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Data in formato ISO (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Generale" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Salva impostazioni" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Rimuovi il segnalibro da questa pagina" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [modificato]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [sola lettura]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Senza nome" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Impossibile aprire la pagina perché l'estensione non è stata trovata" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Estensione o azione sconosciuta [%1] in url [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "La pagina non può essere chiusa quando una operazione è in esecuzione." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Ripristina stato predefinito" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Le impostazioni predefinite sono state ripristinate" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Avviso: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Errore: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Informazione: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Fatto: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Notifica" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Il documento %1 esiste già. Vuoi davvero sovrascriverlo?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Avviso" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Salva" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "prima lettera maiuscola" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "parole maiuscole" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "inferiore" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "taglia" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "superiore" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Per migrare il documento devi prima salvarlo." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/ja/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/ja/messages.mo differ diff -Nru skrooge-2.4.93/po/ja/skrooge.po skrooge-2.4.94/po/ja/skrooge.po --- skrooge-2.4.93/po/ja/skrooge.po 2016-08-18 18:56:14.000000000 +0000 +++ skrooge-2.4.94/po/ja/skrooge.po 2016-08-21 19:59:18.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2009-05-18 00:20+0900\n" "Last-Translator: Japanese KDE translation team \n" "Language-Team: Japanese \n" @@ -1230,7 +1230,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1496,7 +1496,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "" @@ -11625,347 +11625,347 @@ msgid "Last month" msgstr "" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" "Do you want to save it before closing?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" "Do you want to continue?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/ko/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/ko/messages.mo differ diff -Nru skrooge-2.4.93/po/ko/skrooge.po skrooge-2.4.94/po/ko/skrooge.po --- skrooge-2.4.93/po/ko/skrooge.po 2016-08-18 18:56:17.000000000 +0000 +++ skrooge-2.4.94/po/ko/skrooge.po 2016-08-21 19:59:23.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2015-01-18 01:25+0900\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" @@ -1453,7 +1453,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1776,7 +1776,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "기록" @@ -13804,28 +13804,28 @@ msgid "Last month" msgstr "Попередні 3 місяці" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "플러그인 로딩..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Loading plugin %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, fuzzy, kde-format #| msgctxt "An information message" #| msgid "" @@ -13835,64 +13835,64 @@ "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "Loading plugin %1 failed because the factory could not be found in %2" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 #, fuzzy msgctxt "Noun" msgid "Pages" msgstr "받는사람" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "현재 작업 진행" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "현재 작업 취소" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 #, fuzzy msgctxt "Verb" msgid "Show all" msgstr "Показати сітку" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "새 탭" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "전체 닫기" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "기타 모두 닫기" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 #, fuzzy #| msgctxt "Noun, user action" #| msgid "Save context state" @@ -13900,7 +13900,7 @@ msgid "Save page state" msgstr "환경 상태 저장" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 #, fuzzy #| msgctxt "Noun, user action" #| msgid "Reset context state" @@ -13908,7 +13908,7 @@ msgid "Reset page state" msgstr "환경상태 다시 고치기" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 #, fuzzy #| msgctxt "Noun, user action" #| msgid "Reset context state" @@ -13916,55 +13916,55 @@ msgid "Reopen last page closed" msgstr "환경상태 다시 고치기" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "북마크 상태 덮어쓰기" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "설정..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "이전" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "다음" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 #, fuzzy msgctxt "Noun, user action" msgid "Enable editor" msgstr "편집기 지우기" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 #, fuzzy msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "Skrooge 작업을 실행하는 중에는 닫을 수 없습니다. " -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -13973,22 +13973,22 @@ "이 문서는 수정되었습니다.\n" "닫기 전에 저장하시겠습니까?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "다른이름으로 저장하기" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "저장하기" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "저장하지 않기" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 #, fuzzy #| msgctxt "Question" #| msgid "" @@ -14002,47 +14002,47 @@ "수정사항은 저장하지 못합니다.\n" "계속하시겠습니까?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "일반" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "저장방법 설정" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 #, fuzzy #| msgctxt "Noun, name of the user action" #| msgid "Save settings" @@ -14050,22 +14050,22 @@ msgid "Unpin this page" msgstr "저장방법 설정" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr "[수정됨]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "제목없음" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgctxt "Title of the main window" #| msgid "%1%2 - %3" @@ -14073,34 +14073,34 @@ msgid "%1%2" msgstr "%1%2 - %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "플러그인을 찾을 수 없기 때문에 이 페이지를 열 수 없습니다." -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 #, fuzzy msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "Skrooge 작업을 실행하는 중에는 닫을 수 없습니다. " -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "기본 상태 초기화" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "기본 상태로 설정되었습니다." -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Warning" @@ -14108,7 +14108,7 @@ msgid "Warning: %1" msgstr "경고" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Error" @@ -14116,7 +14116,7 @@ msgid "Error: %1" msgstr "에러" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Confirmation" @@ -14124,65 +14124,65 @@ msgid "Information: %1" msgstr "확인" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Показати сітку" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "알림" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "이 파일은 %1 존재합니다. 덮어 쓰시겠습니까?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "경고" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "저장하기" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "문서가 이동되었습니다." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgctxt "An information message" #| msgid "The document has been migrated" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/lt/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/lt/messages.mo differ diff -Nru skrooge-2.4.93/po/lt/skrooge.po skrooge-2.4.94/po/lt/skrooge.po --- skrooge-2.4.93/po/lt/skrooge.po 2016-08-18 18:56:17.000000000 +0000 +++ skrooge-2.4.94/po/lt/skrooge.po 2016-08-21 19:59:23.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2015-12-30 18:15+0200\n" "Last-Translator: Mindaugas Baranauskas \n" "Language-Team: lt \n" @@ -1313,7 +1313,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1618,7 +1618,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Istorija" @@ -12706,28 +12706,28 @@ msgid "Last month" msgstr "Paskutinis mėnuo" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Įkeliami papildiniai..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Įkeliamas papildinys %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Papildinio „%1“ programuotojas" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12735,72 +12735,72 @@ msgstr "" "Nepavyko įkelti papildinio „%1“, nes nerastas „%2: %3“ nerastas fabrikas" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Puslapiai" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Dabartinio veiksmo eiga" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Nutraukti dabartinį veiksmą" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Slėpti" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Rodyti viską" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nauja kortelė" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Užrakinti skydelius" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Atrakinti skydelius" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Užrakinti šį puslapį" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Uždaryti viską" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Uždaryti visus kitus" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Įrašyti puslapio būseną" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Atstatyti puslapio būseną" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 #, fuzzy #| msgctxt "Noun, user action" #| msgid "Reset page state" @@ -12808,48 +12808,48 @@ msgid "Reopen last page closed" msgstr "Atstatyti puslapio būseną" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Perrašyti žymelių būseną" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Konfigūruoti..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Meniu" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Ankstesnis" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Kitas" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Įjungti redaktorių" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 #, fuzzy #| msgctxt "Question" #| msgid "The application cannot be closed when an operation is running." @@ -12857,7 +12857,7 @@ msgid "The application cannot be closed when an operation is running." msgstr "Programos negalima uždaryti, kol vykdoma operacija." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12866,22 +12866,22 @@ "Dokumentas buvo pakeistas.\n" "Ar norite prieš uždarant jį įrašyti?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Įrašyti kaip" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Įrašyti" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Neįrašyti" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12890,67 +12890,67 @@ "Dabartiniai pakeitimai nebus įrašyti.\n" "Ar norite tęsti?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Trumpa data (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Ilga data (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Skoninga trumpa data (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Skoninga ilga data (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO data (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Bendri" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Įrašymo nuostatos" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Atrakinti šį puslapį" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [pakeista]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [tik skaitymui]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Be pavadinimo" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgctxt "Title of the main window" #| msgid "%1%2 - %3" @@ -12958,18 +12958,18 @@ msgid "%1%2" msgstr "%1%2 - %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Neįmanoma atidaryti puslapio, nes nerastas papildinys" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 #, fuzzy #| msgctxt "Question" #| msgid "A page cannot be closed when an operation is running." @@ -12977,17 +12977,17 @@ msgid "A page cannot be closed when an operation is running." msgstr "Negalima uždaryti puslapio, kol vykdoma operacija" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Atstatyti pradinę būseną" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Atstatyta pradinė būsena" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Warning" @@ -12995,7 +12995,7 @@ msgid "Warning: %1" msgstr "Įspėjimas" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Error" @@ -13003,7 +13003,7 @@ msgid "Error: %1" msgstr "Klaida" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Confirmation" @@ -13011,64 +13011,64 @@ msgid "Information: %1" msgstr "Patvirtinimas" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format #| msgid "Show: %1" msgctxt "Done header" msgid "Done: %1" msgstr "Rodyti: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Pranešimas" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Failas %1 jau egzistuoja. Ar norite jį perrašyti?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Įspėjimas" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Įrašyti" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 #, fuzzy msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "Iš didžiosios raidės" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 #, fuzzy msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "Žemesnis" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 #, fuzzy msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "TRIM" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 #, fuzzy msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "\"Viršutinis\" 0%" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy #| msgctxt "An information message" #| msgid "The document must be saved to be anonymized." @@ -13076,7 +13076,7 @@ msgid "The document must be saved to be migrated." msgstr "Kad būtų anonimizuotas, dokumentas turi būt įrašytas." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgctxt "" #| "The document has been upgraded to the latest Skrooge version format" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/mr/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/mr/messages.mo differ diff -Nru skrooge-2.4.93/po/mr/skrooge.po skrooge-2.4.94/po/mr/skrooge.po --- skrooge-2.4.93/po/mr/skrooge.po 2016-08-18 18:56:18.000000000 +0000 +++ skrooge-2.4.94/po/mr/skrooge.po 2016-08-21 19:59:23.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2013-03-06 17:28+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" @@ -1263,7 +1263,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1557,7 +1557,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "इतिहास" @@ -11909,287 +11909,287 @@ msgid "Last month" msgstr "गेला महिना" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 #, fuzzy msgctxt "Noun" msgid "Pages" msgstr "पाने" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "लपवा" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "नवीन टॅब" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 #, fuzzy msgctxt "Verb" msgid "Lock panels" msgstr "पटल कूलूपबंद करा" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 #, fuzzy msgctxt "Verb" msgid "Unlock panels" msgstr "पटलांचे कूलूप काढून टाका" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "संयोजीत करा..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "मेन्यू" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 #, fuzzy msgctxt "Noun, user action" msgid "Previous" msgstr "मागील" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 #, fuzzy msgctxt "Noun, user action" msgid "Next" msgstr "पुढील" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" "Do you want to save it before closing?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "असे साठवा" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "साठवा" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 #, fuzzy msgctxt "Question" msgid "Do not save" msgstr "साठवू नका (&D)" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" "Do you want to continue?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, fuzzy, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "लघु दिनांक :" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 #, fuzzy msgctxt "Noun" msgid "General" msgstr "सामान्य" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 #, fuzzy msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "संयोजना साठवा" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 #, fuzzy msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr "सुधारले" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [फक्त वाचण्यासाठी]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "शिर्षकहीन" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "इशारा" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Error" @@ -12197,72 +12197,72 @@ msgid "Error: %1" msgstr "त्रुटी" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, fuzzy, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "पुष्टिकरण" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "%1 दर्शवा" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "सूचना" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 #, fuzzy msgctxt "Question" msgid "Warning" msgstr "इशारा" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "साठवा" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 #, fuzzy msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "खाली घ्या" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/ms/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/ms/messages.mo differ diff -Nru skrooge-2.4.93/po/ms/skrooge.po skrooge-2.4.94/po/ms/skrooge.po --- skrooge-2.4.93/po/ms/skrooge.po 2016-08-18 18:56:18.000000000 +0000 +++ skrooge-2.4.94/po/ms/skrooge.po 2016-08-21 19:59:25.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2009-10-03 23:05+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" @@ -1313,7 +1313,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1603,7 +1603,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 #, fuzzy msgctxt "Noun" msgid "History" @@ -12591,366 +12591,366 @@ msgid "Last month" msgstr "Nilai" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 #, fuzzy msgctxt "Noun" msgid "Pages" msgstr "Tarikh" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 #, fuzzy msgctxt "Verb" msgid "Show all" msgstr "Papar skrin percikan" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 #, fuzzy msgctxt "Noun, user action" msgid "Close All" msgstr "Tutup" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 #, fuzzy msgctxt "Noun, user action" msgid "Save page state" msgstr "Gagal untuk memadam" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 #, fuzzy msgctxt "Noun, user action" msgid "Reset page state" msgstr "Gagal untuk memadam" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 #, fuzzy msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Gagal untuk memadam" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 #, fuzzy #| msgid "Current" msgctxt "Noun, user action" msgid "Configure..." msgstr "Semasa" -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 #, fuzzy msgctxt "Noun, user action" msgid "Previous" msgstr "Tahun Terdahulu" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 #, fuzzy msgctxt "Noun, user action" msgid "Next" msgstr "&Minggu hadapan" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" "Do you want to save it before closing?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 #, fuzzy msgctxt "Question" msgid "Save as" msgstr "Simpan" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 #, fuzzy msgctxt "Question" msgid "Save" msgstr "Simpan" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" "Do you want to continue?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 #, fuzzy msgctxt "Noun" msgid "General" msgstr "Umum" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 #, fuzzy msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Gagal untuk memadam" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 #, fuzzy msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Tiada tajuk" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Amaran" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Ralat" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, fuzzy, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Pengesahan" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Papar skrin percikan" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 #, fuzzy msgctxt "Noun" msgid "Notification" msgstr "Pengesahan" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 #, fuzzy msgctxt "Question" msgid "Warning" msgstr "Amaran" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 #, fuzzy msgctxt "Verb" msgid "Save" msgstr "Simpan" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Gagal untuk memadam" -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/nds/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/nds/messages.mo differ diff -Nru skrooge-2.4.93/po/nds/skrooge.po skrooge-2.4.94/po/nds/skrooge.po --- skrooge-2.4.93/po/nds/skrooge.po 2016-08-18 18:56:20.000000000 +0000 +++ skrooge-2.4.94/po/nds/skrooge.po 2016-08-21 19:59:29.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2011-10-04 13:43+0200\n" "Last-Translator: Manfred Wiese \n" "Language-Team: Low Saxon \n" @@ -1514,7 +1514,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1850,7 +1850,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Vörgeschicht" @@ -14216,30 +14216,30 @@ msgid "Last month" msgstr "Verleden 3 Maanden" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Modulen warrt laadt" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, fuzzy, kde-format #| msgid "Loading plugin %1/%2: %3..." msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "An't Laden vun Moduul %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, fuzzy, kde-format #| msgid "=%1" msgid ", '%1'" msgstr "=%1" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, fuzzy, kde-format #| msgctxt "An information message" #| msgid "" @@ -14251,7 +14251,7 @@ "Moduul »%1« lett sik nich laden, wiel sik de Bedrief binnen %2 nich finnen " "lett." -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 #, fuzzy #| msgctxt "" #| "A person or institution receiving a payment, or paying the operation" @@ -14260,58 +14260,58 @@ msgid "Pages" msgstr "Adressaat" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Vörankamen vun de aktuelle Akschoon" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Aktuell Akschoon afbreken" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 #, fuzzy msgctxt "Verb" msgid "Show all" msgstr "Gadder wiesen" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nieg Paneel" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "All tomaken" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "All anner tomaken" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 #, fuzzy #| msgctxt "Noun, user action" #| msgid "Save context state" @@ -14319,62 +14319,62 @@ msgid "Save page state" msgstr "Kontextstatus sekern" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 #, fuzzy #| msgid "Reset state" msgctxt "Noun, user action" msgid "Reset page state" msgstr "Status torüchsetten" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 #, fuzzy #| msgid "Reset state" msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Status torüchsetten" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Leesteken-Status överschrieven" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Instellen..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Verleden" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Nakamen" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Editor anmaken" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 #, fuzzy #| msgctxt "Question" #| msgid "Skrooge cannot be closed when an operation is running." @@ -14382,7 +14382,7 @@ msgid "The application cannot be closed when an operation is running." msgstr "Skrooge lett sik nich tomaken, wenn en Akschoon löppt." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -14391,22 +14391,22 @@ "Dat Dokment wöör ännert.\n" "Wullt Du dat ehr't Tomaken sekern?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Sekern as" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Sekern" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Nich sekern" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 #, fuzzy #| msgctxt "Question" #| msgid "" @@ -14420,47 +14420,47 @@ "Aktuell Ännern warrt nich sekert.\n" "Wullt Du wiedermaken?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Kort Datumformaat (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Lang Datumformaat (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Smuck kort Datumformaat (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Smuck lang Datumformaat (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO-Datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Allmeen" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Instellen sekern" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 #, fuzzy #| msgctxt "Noun, name of the user action" #| msgid "Save settings" @@ -14468,22 +14468,22 @@ msgid "Unpin this page" msgstr "Instellen sekern" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [ännert]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Ahn Titel" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgctxt "Title of the main window" #| msgid "%1%2 - %3" @@ -14491,18 +14491,18 @@ msgid "%1%2" msgstr "%1%2 - %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "De Siet lett sik nich opmaken, wiel sik dat Moduul nich finnen lett." -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 #, fuzzy #| msgctxt "Question" #| msgid "A page cannot be closed when an operation is running." @@ -14510,17 +14510,17 @@ msgid "A page cannot be closed when an operation is running." msgstr "En Siet lett sik nich tomaken, wenn en Akschoon löppt." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Standardstatus torüchsetten" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Standardstatus wöör torüchsett" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Warning" @@ -14528,7 +14528,7 @@ msgid "Warning: %1" msgstr "Wohrschoen" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Error" @@ -14536,7 +14536,7 @@ msgid "Error: %1" msgstr "Fehler" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Confirmation" @@ -14544,44 +14544,44 @@ msgid "Information: %1" msgstr "Beglöven" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Gadder wiesen" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Bescheed" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Dat gifft de Datei %1 al. Wullt Du ehr överschrieven?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Wohrschoen" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Sekern" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 #, fuzzy #| msgctxt "Change a string to lowercase" #| msgid "lowercase" @@ -14589,12 +14589,12 @@ msgid "lower" msgstr "Lüttbookstaven" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 #, fuzzy #| msgctxt "Change a string to uppercase" #| msgid "uppercase" @@ -14602,7 +14602,7 @@ msgid "upper" msgstr "Grootbookstaven" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy #| msgctxt "An information message" #| msgid "The document has been migrated" @@ -14610,7 +14610,7 @@ msgid "The document must be saved to be migrated." msgstr "Dat Dokment wöör wannelt." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgctxt "An information message" #| msgid "The document has been migrated" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/nl/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/nl/messages.mo differ diff -Nru skrooge-2.4.93/po/nl/skrooge.po skrooge-2.4.94/po/nl/skrooge.po --- skrooge-2.4.93/po/nl/skrooge.po 2016-08-18 18:56:20.000000000 +0000 +++ skrooge-2.4.94/po/nl/skrooge.po 2016-08-21 19:59:30.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-08-04 12:10+0200\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" @@ -1291,7 +1291,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1562,7 +1562,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Geschiedenis" @@ -12196,28 +12196,28 @@ msgid "Last month" msgstr "Vorige maand" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Plugins laden..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Plugins %1/%2: %3 laden..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Ontwikkelaar van plug-in '%1'" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12225,123 +12225,123 @@ msgstr "" "Laden van plugin %1 is mislukt omdat de fabrikant niet gevonden is in %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Pagina's" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Voortgang van de huidige bewerking" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Huidige bewerking annuleren" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Verbergen" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Alles tonen" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nieuw tabblad" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Panelen vergrendelen" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Panelen ontgrendelen" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Deze pagina vastzetten" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Alles sluiten" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Alle andere sluiten" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Paginastatus opslaan" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Paginastatus herstellen " -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Laatste gesloten pagina heropenen" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Bladwijzerstatus overschrijven" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Instellen..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menu" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Vorige" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Volgende" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Editor inschakelen" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Naar SQLCipher-formaat migreren" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "U modus volledig scherm verlaten met %1 of met het contextmenu" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "De toepassing kan tijdens een actieve bewerking niet gesloten worden." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12350,22 +12350,22 @@ "Het document is gewijzigd.\n" "Wilt u het opslaan voor het afsluiten?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Opslaan als" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Opslaan" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Niet opslaan" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12374,128 +12374,128 @@ "Huidige wijzigingen zal niet opgeslagen worden.\n" "Doorgaan?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Korte datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Lange datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Elegante korte datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Elegante lange datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO-datum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Algemeen" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Instellingen opslaan" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Deze pagina losmaken" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [gewijzigd]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [alleen-lezen]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Naamloos" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Pagina openen is niet mogelijk omdat de plugin niet gevonden is" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Onbekende plug-in of actie [%1] in URL [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "Een pagina kan tijdens een bewerking niet gesloten worden." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Standaard status herstellen" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Standaard status is hersteld" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Waarschuwing: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Fout: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Informatie: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Gereed: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Notificatie" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" @@ -12503,47 +12503,47 @@ "Bestand %1 bestaat reeds. Bent u er zeker van dat u het wilt " "overschrijven?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Waarschuwing" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Opslaan" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "hoofdletters maken" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "woorden hoofdletters maken" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "kleine letter" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "trim" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "hoofdletter" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Het document moet worden opgeslagen om te migreren." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/pl/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/pl/messages.mo differ diff -Nru skrooge-2.4.93/po/pl/skrooge.po skrooge-2.4.94/po/pl/skrooge.po --- skrooge-2.4.93/po/pl/skrooge.po 2016-08-18 18:56:23.000000000 +0000 +++ skrooge-2.4.94/po/pl/skrooge.po 2016-08-21 19:59:32.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-08-06 08:36+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" @@ -1288,7 +1288,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1563,7 +1563,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historia" @@ -12170,28 +12170,28 @@ msgid "Last month" msgstr "Ostatni miesiąc" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Wczytywanie wtyczek..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Wczytywanie wtyczki %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Programista wtyczki '%1'" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12200,112 +12200,112 @@ "Wczytywanie wtyczki %1 nieudane, ponieważ nie można znaleźć jej zasobów w " "%2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Strony" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Postęp bieżącego działania" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Anuluj bieżące działanie" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Ukryj" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Pokaż wszystkie" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nowa karta" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Zablokuj panele" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Odblokuj panele" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Pinezka na tej stronie" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Zamknij wszystkie" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Zamknij wszystkie pozostałe" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Zapisz stan strony" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Wyzeruj stanu strony" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Otwórz ostatnio zamkniętą stronę" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Zastąp stan zakładki" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Ustawienia..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menu" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Poprzedni" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Następny" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Włącz edytor" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Przenieś do formatu SQLCipher" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" @@ -12313,12 +12313,12 @@ "Można wyjść z trybu pełnego ekranu przy pomocy %1 lub przy pomocy menu " "podręcznego" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "Program nie może zostać zamknięty w trakcie wykonywania operacji." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12327,22 +12327,22 @@ "Ten dokument uległ zmianie.\n" "Czy chcesz go zapisać przed zamknięciem?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Zapisz jako" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Zapisz" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Nie zapisuj" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12351,174 +12351,174 @@ "Obecne zmiany nie zostaną zapisane.\n" "Czy chcesz kontynuować?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Skrócona data (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Długa data (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Ozdobna skrócona data (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Ozdobna długa data (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Data ISO (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Ogólne" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Zapisz ustawienia" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Odczep pinezkę z tej strony" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [ze zmianami]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [tylko do odczytu]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Bez tytułu" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Nie można otworzyć strony z powodu braku wtyczki" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Nieznana wtyczka lub działanie [%1] w adresie url [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "Strona nie może zostać zamknięta w trakcie wykonywania operacji." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Przywróć stan domyślny" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Przywrócono stan domyślny" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Ostrzeżenie: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Błąd: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Informacja: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Zrobiono: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Powiadomienie" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Plik %1 już istnieje. Czy na pewno chcesz go zastąpić?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Ostrzeżenie" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Zapisz" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "zamień na wielkie litery" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "słowa z wielkich liter" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "dolny" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "przytnij" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "dolny" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Dokument musi być zapisany, aby uczynić go przenieść." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/pt/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/pt/messages.mo differ diff -Nru skrooge-2.4.93/po/pt/skrooge.po skrooge-2.4.94/po/pt/skrooge.po --- skrooge-2.4.93/po/pt/skrooge.po 2016-08-18 18:56:23.000000000 +0000 +++ skrooge-2.4.94/po/pt/skrooge.po 2016-08-21 19:59:34.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-08-04 11:32+0100\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: Portuguese \n" @@ -1312,7 +1312,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1584,7 +1584,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Histórico" @@ -12178,28 +12178,28 @@ msgid "Last month" msgstr "Mês passado" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "A carregar os 'plugins'..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "A carregar o 'plugin' %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Programador do 'plugin' '%1'" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12208,124 +12208,124 @@ "Não foi possível carregar o 'plugin' %1 porque a 'factory' não foi " "encontrada em %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Páginas" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Evolução da acção actual" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Cancelar a acção actual" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Esconder" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Mostrar tudo" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nova Página" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Bloquear os painéis" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Desbloquear os painéis" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Fixar esta página" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Fechar Tudo" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Fechar Todas as Outras" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Gravar o estado da página" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Repor o estado da página" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Repor a última página fechada" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Substituir o estado do favorito" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Configurar..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menu" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Anterior" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Seguinte" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Activar o editor" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Migrar para o formato SQLCipher" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "Pode sair do ecrã completo com %1 ou com o menu de contexto" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" "A aplicação não poderá ser fechada enquanto estiver a decorrer uma operação." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12334,22 +12334,22 @@ "O documento foi modificado.\n" "Deseja gravá-lo antes de o fechar?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Gravar como" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Gravar" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Não gravar" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12358,175 +12358,175 @@ "As modificações actuais não serão gravadas.\n" "Deseja continuar?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Data curta (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Data longa (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Data curta bonita (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Data longa bonita (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Data ISO (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Geral" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Gravar a configuração" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Soltar esta página" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [modificado]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [apenas para leitura]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Sem Título" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Não é possível abrir a página, porque não foi encontrado o 'plugin'" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "O 'plugin' ou acção [%1] é desconhecido no URL [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" "A página não poderá ser fechada enquanto estiver a decorrer uma operação." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Repor o estado predefinido" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "O estado predefinido foi reposto" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Aviso: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Erro: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Informação: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Pronto: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Notificação" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "O ficheiro %1 já existe. Deseja sobrepo-lo?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Aviso" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Gravar" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "capitalização" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "capitalização de palavras" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "minúsculas" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "eliminação de espaços" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "maiúsculas" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "O documento tem de ser gravado para ser migrado." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/pt_BR/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/pt_BR/messages.mo differ diff -Nru skrooge-2.4.93/po/pt_BR/skrooge.po skrooge-2.4.94/po/pt_BR/skrooge.po --- skrooge-2.4.93/po/pt_BR/skrooge.po 2016-08-18 18:56:23.000000000 +0000 +++ skrooge-2.4.94/po/pt_BR/skrooge.po 2016-08-21 19:59:34.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-05-16 22:14-0300\n" "Last-Translator: André Marcelo Alvarenga \n" "Language-Team: Brazilian Portuguese \n" @@ -1295,7 +1295,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1567,7 +1567,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Histórico" @@ -12200,28 +12200,28 @@ msgid "Last month" msgstr "Último mês" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Carregando plugins..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Carregando plugin %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Desenvolvedor do plugin '%1'" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12230,124 +12230,124 @@ "Não foi possível carregar o plugin %1 porque a 'factory' não foi encontrada " "em %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Páginas" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Progresso da ação atual" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Cancelar a ação atual" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Ocultar" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Mostrar tudo" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nova aba" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Bloquear painéis" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Desbloquear painéis" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Fixar esta página" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Fechar todos" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Fechar todos os outros" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Salvar estado da página" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Restaurar o estado da página" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Reabrir a última página fechada" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Substituir o estado do favorito" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Configurar..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menu" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Anterior" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Próximo" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Ativar o editor" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Migrar para o formato SQLCipher" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "Você pode sair do modo tela inteira com %1 ou com o menu de contexto" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" "O aplicativo não poderá ser fechado enquanto estiver executando uma operação." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12356,22 +12356,22 @@ "O documento foi modificado.\n" "Deseja salvá-lo antes de fechar?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Salvar como" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Salvar" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Não salvar" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12380,175 +12380,175 @@ "As modificações atuais não serão salvas.\n" "Deseja continuar?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Data abreviada (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Data longa (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Data abreviada bonita (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Data longa bonita (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Data ISO (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Geral" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Salvar configurações" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Soltar esta página" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [modificado]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [somente leitura]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Sem título" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Não é possível abrir a página porque não foi encontrado o plugin" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "O plugin ou ação [%1] é desconhecido na URL [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" "Uma página não poderá ser fechada enquanto estiver executando uma operação." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Restaurar o estado padrão" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "O estado padrão foi restaurado" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Aviso: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Erro: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Informação: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Concluído: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Notificação" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "O arquivo %1 já existe. Você realmente deseja sobrescrevê-lo?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Aviso" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Salvar" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "Iniciais maiúsculas" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "Palavras com iniciais maiúsculas" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "minúsculas" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "Aparar" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "maiúsculas" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Salve o documento para efetuar a migração." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/ro/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/ro/messages.mo differ diff -Nru skrooge-2.4.93/po/ro/skrooge.po skrooge-2.4.94/po/ro/skrooge.po --- skrooge-2.4.93/po/ro/skrooge.po 2016-08-18 18:56:23.000000000 +0000 +++ skrooge-2.4.94/po/ro/skrooge.po 2016-08-21 19:59:36.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2012-12-22 11:47+0200\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -1445,7 +1445,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1755,7 +1755,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 #, fuzzy #| msgid "History" msgctxt "Noun" @@ -13655,183 +13655,183 @@ msgid "Last month" msgstr "Ultimele 3 luni" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 #, fuzzy #| msgid "Loading plugins..." msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Se încarcă modulele..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, fuzzy, kde-format #| msgid "Loading plugin %1/%2: %3..." msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Se încarcă modulul %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 #, fuzzy #| msgid "Payee:" msgctxt "Noun" msgid "Pages" msgstr "Beneficiar:" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 #, fuzzy #| msgid "Progress of the current action" msgctxt "Widget description" msgid "Progress of the current action" msgstr "Progresul acțiunii curente" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 #, fuzzy #| msgid "Cancel the current action" msgctxt "Widget description" msgid "Cancel the current action" msgstr "Anulează acțiunea curentă" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 #, fuzzy #| msgid "Show grid" msgctxt "Verb" msgid "Show all" msgstr "Arată grila" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 #, fuzzy #| msgid "New &Tab" msgctxt "Noun, user action" msgid "New Tab" msgstr "&Filă nouă" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 #, fuzzy #| msgid "Close All" msgctxt "Noun, user action" msgid "Close All" msgstr "Închide toate" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 #, fuzzy #| msgid "Close All Other" msgctxt "Noun, user action" msgid "Close All Other" msgstr "Închide toate celelalte" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 #, fuzzy #| msgid "Save context state" msgctxt "Noun, user action" msgid "Save page state" msgstr "Salvează starea contextului" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 #, fuzzy #| msgid "Save context state" msgctxt "Noun, user action" msgid "Reset page state" msgstr "Salvează starea contextului" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 #, fuzzy #| msgid "Save context state" msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Salvează starea contextului" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 #, fuzzy #| msgid "Overwrite bookmark state" msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Suprascrie starea semnului de carte" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 #, fuzzy #| msgid "Current" msgctxt "Noun, user action" msgid "Configure..." msgstr "Curent" -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 #, fuzzy msgctxt "Noun, user action" msgid "Previous" msgstr "Anul trecut" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 #, fuzzy #| msgid "Clean failed." msgctxt "Noun, user action" msgid "Enable editor" msgstr "Curățare eșuată." -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 #, fuzzy #| msgid "Skrooge cannot be closed when an operation is running." msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "Skrooge nu poate fi închis când rulează o operație." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 #, fuzzy #| msgid "" #| "The document has been modified.\n" @@ -13844,28 +13844,28 @@ "Documentul a fost modificat.\n" "Doriți să îl salvați înainte de închidere?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 #, fuzzy #| msgid "Save as" msgctxt "Question" msgid "Save as" msgstr "Salvează ca" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 #, fuzzy #| msgid "Save" msgctxt "Question" msgid "Save" msgstr "Salvează" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 #, fuzzy #| msgid "Do not save" msgctxt "Question" msgid "Do not save" msgstr "Nu salva" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 #, fuzzy #| msgid "" #| "Current modifications will not be saved.\n" @@ -13878,203 +13878,203 @@ "Modificările curente nu vor fi salvate.\n" "Doriți să continuați?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 #, fuzzy #| msgid "General" msgctxt "Noun" msgid "General" msgstr "General" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 #, fuzzy #| msgid "Save settings" msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Salvează configurările" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 #, fuzzy #| msgid "Save settings" msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Salvează configurările" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 #, fuzzy #| msgid " [modified]" msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [modificat]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 #, fuzzy #| msgid "Untitled" msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Fără titlu" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgid "%1%2 - %3" msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2 - %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 #, fuzzy #| msgid "Skrooge cannot be closed when an operation is running." msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "Skrooge nu poate fi închis când rulează o operație." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 #, fuzzy #| msgid "Save default state" msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Salvează starea implicită" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 #, fuzzy #| msgid "Default state saved" msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Stare implicită salvată" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format #| msgid "Warning" msgctxt "Warning header" msgid "Warning: %1" msgstr "Avertizare" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format #| msgid "Error" msgctxt "Error header" msgid "Error: %1" msgstr "Eroare" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, fuzzy, kde-format #| msgid "Confirmation" msgctxt "Information header" msgid "Information: %1" msgstr "Confirmare" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format #| msgid "Show grid" msgctxt "Done header" msgid "Done: %1" msgstr "Arată grila" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 #, fuzzy #| msgid "Confirmation" msgctxt "Noun" msgid "Notification" msgstr "Confirmare" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 #, fuzzy #| msgid "Warning" msgctxt "Question" msgid "Warning" msgstr "Avertizare" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 #, fuzzy #| msgid "Save" msgctxt "Verb" msgid "Save" msgstr "Salvează" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy #| msgid "Recurrent operations" msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Operații recurente" -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgid "Recurrent operations" msgctxt "Positive message" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/ru/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/ru/messages.mo differ diff -Nru skrooge-2.4.93/po/ru/skrooge.po skrooge-2.4.94/po/ru/skrooge.po --- skrooge-2.4.93/po/ru/skrooge.po 2016-08-18 18:56:24.000000000 +0000 +++ skrooge-2.4.94/po/ru/skrooge.po 2016-08-21 19:59:38.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2014-04-11 02:12+0400\n" "Last-Translator: Yuri Efremov \n" "Language-Team: Russian \n" @@ -1322,7 +1322,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, fuzzy, kde-format #| msgctxt "Error message" @@ -1617,7 +1617,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Журнал" @@ -12552,28 +12552,28 @@ msgid "Last month" msgstr "Последний месяц" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Загрузка дополнений..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Загрузка дополнения %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Разработчик дополнения «%1»" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", «%1»" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12582,112 +12582,112 @@ "Ошибка загрузки дополнения %1, поскольку не удалось найти инструмента " "обработки в %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Страницы" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Выполнение текущего действия" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Отменить текущее действие" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Скрыть" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Показать всё" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Новая вкладка" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Заблокировать панели" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Разблокировать панели" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Зафиксировать эту страницу" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Закрыть все" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Закрыть все остальные" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Сохранить состояние страницы" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Восстановить состояние страницы" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Открыть последнюю закрытую страницу" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Заменить состояние закладки" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Настроить..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Меню" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Назад" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Далее" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Включить редактор" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" @@ -12695,12 +12695,12 @@ "Для выхода из полноэкранного режима нажмите %1 или используйте контекстное " "меню." -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "Приложение нельзя закрыть до завершения операции." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12709,22 +12709,22 @@ "Документ был изменён.\n" "Сохранить его перед закрытием?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Сохранить как" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Сохранить" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Не сохранять" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12733,67 +12733,67 @@ "Изменения не будут сохранены.\n" "Продолжить?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Краткий формат даты (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Полный формат даты (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Особый краткий формат даты (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Особый полный формат даты (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Дата в формате ISO (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Общее" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Сохранение параметров" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Снять фиксацию этой страницы" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [изменено]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [только чтение]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Без названия" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgctxt "Title of the main window" #| msgid "%1%2 - %3" @@ -12801,103 +12801,103 @@ msgid "%1%2" msgstr "%1%2 — %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Невозможно открыть страницу без соответствующего дополнения" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Неизвестное дополнение или действие [%1] по адресу [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "Страницу нельзя закрыть до завершения операции." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Восстановление состояния" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Состояние по умолчанию восстановлено" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Предупреждение: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Ошибка: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Информация: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Завершено: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Уведомление" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Файл с названием %1 уже существует. Заменить его?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Предупреждение" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Сохранить" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "прописные" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "с прописной" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "нижний" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "обрезка" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "верхний" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy #| msgctxt "An information message" #| msgid "The document must be saved to be anonymized." @@ -12905,7 +12905,7 @@ msgid "The document must be saved to be migrated." msgstr "Чтобы сделать документ анонимным необходимо сначала его сохранить." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgctxt "" #| "The document has been upgraded to the latest Skrooge version format" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/sk/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/sk/messages.mo differ diff -Nru skrooge-2.4.93/po/sk/skrooge.po skrooge-2.4.94/po/sk/skrooge.po --- skrooge-2.4.93/po/sk/skrooge.po 2016-08-18 18:56:26.000000000 +0000 +++ skrooge-2.4.94/po/sk/skrooge.po 2016-08-21 19:59:40.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2015-07-18 19:03+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" @@ -1305,7 +1305,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1595,7 +1595,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "História" @@ -12524,249 +12524,249 @@ msgid "Last month" msgstr "Posledný mesiac" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 #, fuzzy msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Načítavajú sa zásuvné moduly obrázkov" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, fuzzy, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Nastala chyba počas otvárania zásuvného modulu \"%1\"" -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, fuzzy, kde-format msgid "Developer of plugin '%1'" msgstr "Vývojár (podpora Netscape modulov)" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Stránky" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 #, fuzzy msgctxt "Widget description" msgid "Progress of the current action" msgstr "Zmazať aktuálnu akciu" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 #, fuzzy msgctxt "Widget description" msgid "Cancel the current action" msgstr "Zmazať aktuálnu akciu" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Skryť" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Zobraziť všetko" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Nová karta" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Zamknúť panely" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Odomknúť panely" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Zavrieť všetko" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Zavrieť všetko ostatné" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 #, fuzzy msgctxt "Noun, user action" msgid "Save page state" msgstr "Uložiť stránku ako Web-archív" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 #, fuzzy msgctxt "Noun, user action" msgid "Reset page state" msgstr "Rozhranie zmenilo stav" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 #, fuzzy msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Rozhranie zmenilo stav" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 #, fuzzy msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Rozhranie zmenilo stav" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Nastaviť..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menu" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Predchádzajúci" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Nasledujúci" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 #, fuzzy msgctxt "Noun, user action" msgid "Enable editor" msgstr "Editor záložiek" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" "Do you want to save it before closing?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Uložiť ako" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Uložiť" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Neukladať" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" "Do you want to continue?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Krátky dátum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Dlhý dátum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, fuzzy, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "&Fancy krátky formát času" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, fuzzy, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Dlhý formát dátumu:" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO dátum (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Všeobecné" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Uložiť nastavenie" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 #, fuzzy msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Otvoriť domovskú stránku" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [zmenené]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [iba na čítanie]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Bez názvu" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgctxt "Title of the main window" #| msgid "%1%2 - %3" @@ -12774,111 +12774,111 @@ msgid "%1%2" msgstr "%1%2 - %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 #, fuzzy msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Vrátiť na predvolené" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 #, fuzzy msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Bolo obnovené štandardné nastavenie plochy." -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Upozornenie: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Chyba: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Informácia: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Hotovo: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Upozornenie" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Súbor %1 už existuje. Skutočne ho chcete prepísať?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Varovanie" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Uložiť" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "veľké prvé" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "malé" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "orezanie" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "veľké" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Jeden dokument bol naimportovaný." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/sv/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/sv/messages.mo differ diff -Nru skrooge-2.4.93/po/sv/skrooge.po skrooge-2.4.94/po/sv/skrooge.po --- skrooge-2.4.93/po/sv/skrooge.po 2016-08-18 18:56:28.000000000 +0000 +++ skrooge-2.4.94/po/sv/skrooge.po 2016-08-21 19:59:48.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-08-04 17:53+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" @@ -1282,7 +1282,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1553,7 +1553,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Historik" @@ -12125,28 +12125,28 @@ msgid "Last month" msgstr "Förra månaden" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Laddar insticksprogram..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Laddar insticksprogram %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Utvecklare av insticksprogrammet '%1'" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12155,124 +12155,124 @@ "Misslyckades med att ladda insticksprogrammet %1 eftersom tillverkare inte " "kunde hittas i %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Sidor" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Pågående transaktionsförlopp" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Avbryt pågående transaktion" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Dölj" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Visa alla" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Ny flik" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Lås paneler" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Lås upp paneler" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Sätt upp sidan" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Stäng alla" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Stäng alla andra" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Spara sidtillstånd" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Återställ sidtillstånd" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Öppna senast stängda sida igen" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Skriv över bokmärkestillstånd" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Anpassa..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Meny" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Föregående" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Nästa" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Aktivera editor" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Överför till SQLCipher-format" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" "Du kan avsluta fullskärmsläge med %1 eller med den sammanhangsberoende menyn" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "Programmet kan inte avslutas när en transaktion pågår." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12281,22 +12281,22 @@ "Dokumentet har ändrats.\n" "Vill du spara det innan det programmet avslutas?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Spara som" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Spara" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Spara inte" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12305,174 +12305,174 @@ "Aktuella ändringar kommer inte att sparas.\n" "Vill du fortsätta?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Kort datumformat (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Långt datumformat (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Snyggt kort datumformat (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Snyggt långt datumformat (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO datumformat (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Allmänt" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Spara inställningar" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Ta ner sidan" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [ändrad]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [skrivskyddad]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Namnlös" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Kunde inte öppna sidan eftersom insticksprogrammet inte hittades" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Okänt insticksprogram eller åtgärd [%1] för webbadress [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "En sida kan inte stängas när en transaktion pågår." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Återställ standardtillstånd" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Standardtillstånd återställt" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Varning: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Fel: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Information: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Klar: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Underrättelse" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Filen %1 finns redan. Vill du verkligen skriva över den?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Varning" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Spara" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "versaler" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "inledande versaler" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "gemener" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "avkorta" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "versaler" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Dokumentet måste sparas för att kunna överföras." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/tr/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/tr/messages.mo differ diff -Nru skrooge-2.4.93/po/tr/skrooge.po skrooge-2.4.94/po/tr/skrooge.po --- skrooge-2.4.93/po/tr/skrooge.po 2016-08-18 18:56:28.000000000 +0000 +++ skrooge-2.4.94/po/tr/skrooge.po 2016-08-21 19:59:48.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: extragear-office-kde4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2015-09-16 08:27+0000\n" "Last-Translator: Necdet \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/extragear-office-" @@ -1288,7 +1288,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, fuzzy, kde-format #| msgctxt "Error message" @@ -1574,7 +1574,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Geçmiş" @@ -12248,152 +12248,152 @@ msgid "Last month" msgstr "Son ay" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Eklentiler yükleniyor..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Eklenti yükleniyor %1/%2: %3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "'%1' eklentisinin geliştiricisi" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", '%1'" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "%1 eklentisi yüklenemedi çünkü %2 içinde factory bulunamadı: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Sayfalar" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Geçerli eylemin ilerlemesi" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Geçerli işlemi iptal et" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Gizle" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Tümünü göster" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Yeni Sekme" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Panelleri kilitle" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Panellerin kilidini aç" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Bu sayfayı sabitle" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Tümünü Kapat" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Diğerlerinin Tümünü Kapat" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Sayfa durumunu kaydet" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Sayfa durumunu sıfırla" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Son kapatılan sayfayı yeniden aç" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Yer imi durumunun üzerine yaz" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Yapılandır..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Menü" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Önceki" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Sonraki" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Düzenleyiciyi etkinleştir" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "SQLCipher biçimine taşı" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" "Tam ekran kipinden %1 ile veya içerik menüsünü kullanarak çıkabilirsiniz" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "İşlem sürerken uygulama kapatılamaz." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12402,22 +12402,22 @@ "Belge değiştirildi.\n" "Kapatmadan önce kaydetmek ister misiniz?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Farklı kaydet" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Kaydet" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Kaydetme" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12426,175 +12426,175 @@ "Mevcut düzenlemeler kaydedilmeyecektir.\n" "Devam etmek istiyor musunuz?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Kısa tarih (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Uzun tarih (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Süslü kısa tarih (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Süslü uzun tarih (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO tarih gösterimi (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Genel" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Ayarlari kaydet" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Bu sayfayı sabitlikten çıkar" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [değiştirildi]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [salt okunur]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Başlıksız" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "Eklenti bulunamadığından sayfayı açmak mümkün değil" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "[%2] adresinde bilinmeyen eklenti veya eylem [%1]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "İşlem sürerken bir sayfa kapatılamaz." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Varsayılan durumu sıfırla" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Varsayılan durum sıfırlandı" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Uyarı: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Hata: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Bilgi: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Tamamlandı: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Bildirim" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" "%1 dosyası zaten var. Üzerine yazmak istediğinizden emin misiniz?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Uyarı" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Kaydet" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "hepsini büyük harf yap" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "başlıkkelimeleri" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "daha küçük" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "kırp" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "daha büyük" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Belge taşınabilmesi için kaydedilmelidir." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/ug/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/ug/messages.mo differ diff -Nru skrooge-2.4.93/po/ug/skrooge.po skrooge-2.4.94/po/ug/skrooge.po --- skrooge-2.4.93/po/ug/skrooge.po 2016-08-18 18:56:29.000000000 +0000 +++ skrooge-2.4.94/po/ug/skrooge.po 2016-08-21 19:59:45.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2013-09-08 07:04+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur Computer Science Association \n" @@ -1249,7 +1249,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1536,7 +1536,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "ئىز" @@ -11767,347 +11767,347 @@ msgid "Last month" msgstr "ئوتكەن ئاي" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "بەتلەر" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "يوشۇر" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "يېڭى بەتكۈچ" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "ھەممىنى تاقا" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "سەپلە…" -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "تىزىملىك" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "ئالدىنقى" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "كېيىنكى" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" "Do you want to save it before closing?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "باشقا ئاتتا ساقلا" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "ساقلا" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" "Do you want to continue?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "ئادەتتىكى" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [ئوقۇشقىلا]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "ماۋزۇسىز" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "ئاگاھلاندۇرۇش: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "خاتالىق: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "ئۇقتۇرۇش" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "ئاگاھلاندۇرۇش" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "ساقلا" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/uk/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/uk/messages.mo differ diff -Nru skrooge-2.4.93/po/uk/skrooge.po skrooge-2.4.94/po/uk/skrooge.po --- skrooge-2.4.93/po/uk/skrooge.po 2016-08-18 18:56:31.000000000 +0000 +++ skrooge-2.4.94/po/uk/skrooge.po 2016-08-21 19:59:49.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2016-08-04 14:35+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -1285,7 +1285,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1561,7 +1561,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "Журнал" @@ -12209,28 +12209,28 @@ msgid "Last month" msgstr "Попередній місяць" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "Завантаження додатків…" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "Завантаження додатка %1/%2: %3 …" -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "Розробник додатка «%1»" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr ", «%1»" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" @@ -12239,112 +12239,112 @@ "Спроба завантаження додатка %1 зазнала невдачі, оскільки не вдалося знайти " "інструмента обробки у %2: %3" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "Сторінки" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "Поступ поточної дії" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "Скасувати поточну дію" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "Приховати" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "Показати все" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "Створити вкладку" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "Заблокувати панелі" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "Розблокувати панелі" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "Фіксування цієї сторінки" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "Закрити всі" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "Закрити всі інші" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "Збереження стану сторінки" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "Відновлення стану сторінки" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "Повторне відкриття останньої закритої сторінки" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "Перезаписати стан закладки" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "Налаштувати…" -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "Меню" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "Назад" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "Далі" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "Увімкнути редактор" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "Перехід на формат SQLCipher" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" @@ -12352,12 +12352,12 @@ "Вийти з повноекранного режиму можна за допомогою натискання %1 або " "контекстного меню" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "Роботу програми не можна завершувати до завершення виконання операції." -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -12366,22 +12366,22 @@ "Документ було змінено.\n" "Бажаєте зберегти його до завершення роботи?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "Зберегти як" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "Зберегти" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "Не зберігати" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -12390,175 +12390,175 @@ "Внесені зміни не буде збережено.\n" "Бажаєте завершити роботу?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "Скорочений запис дати (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "Дата повністю (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "Форматована скорочена дата (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "Форматована дата повністю (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "Дата у форматі ISO (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "Загальне" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "Зберегти параметри" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "Скасування фіксування цієї сторінки" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [змінено]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [лише читання]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "Без назви" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "%1%2" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" "Не вдалося відкрити сторінку, оскільки не було знайдено відповідного додатка" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "Невідомий додаток або дія [%1] з адресою [%2]" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "Сторінку не можна закривати до завершення виконання операції." -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "Відновити типовий стан" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "Типовий стан відновлено" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, kde-format msgctxt "Warning header" msgid "Warning: %1" msgstr "Попередження: %1" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, kde-format msgctxt "Error header" msgid "Error: %1" msgstr "Помилка: %1" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, kde-format msgctxt "Information header" msgid "Information: %1" msgstr "Відомості: %1" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, kde-format msgctxt "Done header" msgid "Done: %1" msgstr "Виконано: %1" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "Сповіщення" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "Файл з назвою %1 вже існує. Перезаписати його?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "Попередження" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "Зберегти" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "великі" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "перші_великі" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "малі" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "обрізати" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "вище" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "Для перенесення даних документ слід спочатку зберегти." -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/zh_CN/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/zh_CN/messages.mo differ diff -Nru skrooge-2.4.93/po/zh_CN/skrooge.po skrooge-2.4.94/po/zh_CN/skrooge.po --- skrooge-2.4.93/po/zh_CN/skrooge.po 2016-08-18 18:56:31.000000000 +0000 +++ skrooge-2.4.94/po/zh_CN/skrooge.po 2016-08-21 19:59:53.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2011-11-13 21:20+0800\n" "Last-Translator: FengChao \n" "Language-Team: Chinese Simplified \n" @@ -1306,7 +1306,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1598,7 +1598,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "历史" @@ -12338,272 +12338,272 @@ msgid "Last month" msgstr "上月" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "" -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, kde-format msgid ", '%1'" msgstr "" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, kde-format msgctxt "An information message" msgid "" "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 msgctxt "Noun" msgid "Pages" msgstr "页面" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "隐藏" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "全部显示" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "新建标签" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "锁定面板" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "解锁面板" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "全部关闭" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "关闭其它" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 msgctxt "Noun, user action" msgid "Save page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 msgctxt "Noun, user action" msgid "Reset page state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "配置..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "菜单" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "上一个" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "下一个" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 msgctxt "skgtestimportskg" msgid "The application cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" "Do you want to save it before closing?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "另存为" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "保存" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "不保存" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" "Do you want to continue?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "短日期 (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "长日期 (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO 日期 (%1, %2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "常规" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "保存设置" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 msgctxt "Noun, user action" msgid "Unpin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " [已修改]" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr " [只读]" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "无标题" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, kde-format msgctxt "Title of the main window" msgid "%1%2" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 msgctxt "Information message" msgid "A page cannot be closed when an operation is running." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Warning" @@ -12611,7 +12611,7 @@ msgid "Warning: %1" msgstr "警告" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Error" @@ -12619,7 +12619,7 @@ msgid "Error: %1" msgstr "错误" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Confirmation" @@ -12627,65 +12627,65 @@ msgid "Information: %1" msgstr "确认" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format #| msgid "Show" msgctxt "Done header" msgid "Done: %1" msgstr "显示" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "通知" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "警告" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "保存" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "大写" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 msgctxt "Key word to modify a string into a field" msgid "lower" msgstr "小写" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "修剪" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 msgctxt "Key word to modify a string into a field" msgid "upper" msgstr "大写" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "" -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, kde-format msgctxt "Positive message" msgid "" Binary files /tmp/tmpr11M7G/FhVbTisBGl/skrooge-2.4.93/po/zh_TW/messages.mo and /tmp/tmpr11M7G/zPavsp2m09/skrooge-2.4.94/po/zh_TW/messages.mo differ diff -Nru skrooge-2.4.93/po/zh_TW/skrooge.po skrooge-2.4.94/po/zh_TW/skrooge.po --- skrooge-2.4.93/po/zh_TW/skrooge.po 2016-08-18 18:56:32.000000000 +0000 +++ skrooge-2.4.94/po/zh_TW/skrooge.po 2016-08-21 19:59:52.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: skrooge\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-08-17 06:32+0000\n" +"POT-Creation-Date: 2016-08-19 07:04+0000\n" "PO-Revision-Date: 2011-09-27 08:55+0800\n" "Last-Translator: Franklin Weng \n" "Language-Team: Chinese Traditional \n" @@ -1463,7 +1463,7 @@ #: plugins/generic/skg_properties/skgpropertiesplugin.cpp:190 #: plugins/import/skrooge_import_backend/skgimportpluginbackend.cpp:132 #: plugins/import/skrooge_import_pdf/skgimportpluginpdf.cpp:136 -#: skgbasegui/skgmainpanel.cpp:2607 skgbasegui/skgmainpanel.cpp:2614 +#: skgbasegui/skgmainpanel.cpp:2623 skgbasegui/skgmainpanel.cpp:2630 #: skgbasemodeler/skgdocument.cpp:1181 #, kde-format msgctxt "Error message" @@ -1783,7 +1783,7 @@ #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:213 #: plugins/generic/skg_undoredo/skgundoredoplugin.cpp:223 -#: skgbasegui/skgmainpanel.cpp:2384 +#: skgbasegui/skgmainpanel.cpp:2400 msgctxt "Noun" msgid "History" msgstr "歷史" @@ -13674,29 +13674,29 @@ msgid "Last month" msgstr "上個月" -#: skgbasegui/skgmainpanel.cpp:346 +#: skgbasegui/skgmainpanel.cpp:350 msgctxt "Splash screen message" msgid "Loading plugins..." msgstr "載入外掛程式中..." -#: skgbasegui/skgmainpanel.cpp:359 +#: skgbasegui/skgmainpanel.cpp:363 #, kde-format msgctxt "Splash screen message" msgid "Loading plugin %1/%2: %3..." msgstr "載入外掛程式 %1/%2:%3..." -#: skgbasegui/skgmainpanel.cpp:385 +#: skgbasegui/skgmainpanel.cpp:389 #, kde-format msgid "Developer of plugin '%1'" msgstr "外掛程式 %1 的開發者" -#: skgbasegui/skgmainpanel.cpp:389 +#: skgbasegui/skgmainpanel.cpp:393 #, fuzzy, kde-format #| msgid "=%1" msgid ", '%1'" msgstr "=%1" -#: skgbasegui/skgmainpanel.cpp:424 +#: skgbasegui/skgmainpanel.cpp:428 #, fuzzy, kde-format #| msgctxt "An information message" #| msgid "" @@ -13706,7 +13706,7 @@ "Loading plugin %1 failed because the factory could not be found in %2: %3" msgstr "載入外掛程式 %1 失敗,因為在 %2 中找不到 factory" -#: skgbasegui/skgmainpanel.cpp:489 +#: skgbasegui/skgmainpanel.cpp:493 #, fuzzy #| msgctxt "Noun, something that is used to track items" #| msgid "Payees" @@ -13714,57 +13714,57 @@ msgid "Pages" msgstr "收款人" -#: skgbasegui/skgmainpanel.cpp:608 +#: skgbasegui/skgmainpanel.cpp:612 msgctxt "Widget description" msgid "Progress of the current action" msgstr "目前動作的進度" -#: skgbasegui/skgmainpanel.cpp:627 skgbasegui/skgmainpanel.cpp:628 +#: skgbasegui/skgmainpanel.cpp:631 skgbasegui/skgmainpanel.cpp:632 msgctxt "Widget description" msgid "Cancel the current action" msgstr "取消目前的動作" -#: skgbasegui/skgmainpanel.cpp:690 +#: skgbasegui/skgmainpanel.cpp:694 msgctxt "Verb" msgid "Hide" msgstr "隱藏" -#: skgbasegui/skgmainpanel.cpp:693 +#: skgbasegui/skgmainpanel.cpp:697 msgctxt "Verb" msgid "Show all" msgstr "全部顯示" -#: skgbasegui/skgmainpanel.cpp:936 +#: skgbasegui/skgmainpanel.cpp:940 msgctxt "Noun, user action" msgid "New Tab" msgstr "新分頁" -#: skgbasegui/skgmainpanel.cpp:951 +#: skgbasegui/skgmainpanel.cpp:955 msgctxt "Verb" msgid "Lock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:955 +#: skgbasegui/skgmainpanel.cpp:959 msgctxt "Verb" msgid "Unlock panels" msgstr "" -#: skgbasegui/skgmainpanel.cpp:959 skgbasegui/skgmainpanel.cpp:1664 +#: skgbasegui/skgmainpanel.cpp:963 skgbasegui/skgmainpanel.cpp:1680 msgctxt "Noun, user action" msgid "Pin this page" msgstr "" -#: skgbasegui/skgmainpanel.cpp:968 +#: skgbasegui/skgmainpanel.cpp:972 msgctxt "Noun, user action" msgid "Close All" msgstr "全部關閉" -#: skgbasegui/skgmainpanel.cpp:974 +#: skgbasegui/skgmainpanel.cpp:978 msgctxt "Noun, user action" msgid "Close All Other" msgstr "關閉所有其他的" -#: skgbasegui/skgmainpanel.cpp:980 +#: skgbasegui/skgmainpanel.cpp:984 #, fuzzy #| msgctxt "Noun, user action" #| msgid "Save context state" @@ -13772,62 +13772,62 @@ msgid "Save page state" msgstr "儲存內文狀態" -#: skgbasegui/skgmainpanel.cpp:986 +#: skgbasegui/skgmainpanel.cpp:990 #, fuzzy #| msgid "Reset state" msgctxt "Noun, user action" msgid "Reset page state" msgstr "重置狀態" -#: skgbasegui/skgmainpanel.cpp:992 +#: skgbasegui/skgmainpanel.cpp:996 #, fuzzy #| msgid "Reset state" msgctxt "Noun, user action" msgid "Reopen last page closed" msgstr "重置狀態" -#: skgbasegui/skgmainpanel.cpp:1000 +#: skgbasegui/skgmainpanel.cpp:1004 msgctxt "Noun, user action" msgid "Overwrite bookmark state" msgstr "覆寫書籤狀態" -#: skgbasegui/skgmainpanel.cpp:1006 +#: skgbasegui/skgmainpanel.cpp:1010 msgctxt "Noun, user action" msgid "Configure..." msgstr "設定..." -#: skgbasegui/skgmainpanel.cpp:1014 +#: skgbasegui/skgmainpanel.cpp:1018 msgctxt "Noun, user action" msgid "Menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1027 +#: skgbasegui/skgmainpanel.cpp:1031 msgctxt "Noun, user action" msgid "Previous" msgstr "前一個" -#: skgbasegui/skgmainpanel.cpp:1038 +#: skgbasegui/skgmainpanel.cpp:1042 msgctxt "Noun, user action" msgid "Next" msgstr "下一個" -#: skgbasegui/skgmainpanel.cpp:1053 +#: skgbasegui/skgmainpanel.cpp:1057 msgctxt "Noun, user action" msgid "Enable editor" msgstr "開啟編輯器" -#: skgbasegui/skgmainpanel.cpp:1060 +#: skgbasegui/skgmainpanel.cpp:1064 msgctxt "Noun, user action" msgid "Migrate to SQLCipher format" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1213 +#: skgbasegui/skgmainpanel.cpp:1217 #, kde-format msgctxt "Information message" msgid "You can exit full screen mode with %1 or with the contextual menu" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1377 +#: skgbasegui/skgmainpanel.cpp:1381 #, fuzzy #| msgctxt "Question" #| msgid "The application cannot be closed when an operation is running." @@ -13835,7 +13835,7 @@ msgid "The application cannot be closed when an operation is running." msgstr "執行操作時無法關閉應用程式。" -#: skgbasegui/skgmainpanel.cpp:1385 +#: skgbasegui/skgmainpanel.cpp:1389 msgctxt "Question" msgid "" "The document has been modified.\n" @@ -13844,22 +13844,22 @@ "文件已變更。\n" "您要在關閉前儲存嗎?" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save as" msgstr "另存新檔" -#: skgbasegui/skgmainpanel.cpp:1387 +#: skgbasegui/skgmainpanel.cpp:1391 msgctxt "Question" msgid "Save" msgstr "儲存" -#: skgbasegui/skgmainpanel.cpp:1389 +#: skgbasegui/skgmainpanel.cpp:1393 msgctxt "Question" msgid "Do not save" msgstr "不要儲存" -#: skgbasegui/skgmainpanel.cpp:1395 +#: skgbasegui/skgmainpanel.cpp:1399 msgctxt "Question" msgid "" "Current modifications will not be saved.\n" @@ -13868,69 +13868,69 @@ "目前的變更將不會被儲存。\n" "您確定要繼續嗎?" -#: skgbasegui/skgmainpanel.cpp:1518 +#: skgbasegui/skgmainpanel.cpp:1528 #, kde-format msgctxt "Date format" msgid "Short date (%1, %2)" msgstr "短日期(%1,%2)" -#: skgbasegui/skgmainpanel.cpp:1521 +#: skgbasegui/skgmainpanel.cpp:1531 #, kde-format msgctxt "Date format" msgid "Long date (%1, %2)" msgstr "長日期(%1,%2)" -#: skgbasegui/skgmainpanel.cpp:1524 +#: skgbasegui/skgmainpanel.cpp:1534 #, kde-format msgctxt "Date format" msgid "Fancy short date (%1, %2)" msgstr "花俏短日期格式(%1,%2)" -#: skgbasegui/skgmainpanel.cpp:1527 +#: skgbasegui/skgmainpanel.cpp:1537 #, kde-format msgctxt "Date format" msgid "Fancy long date (%1, %2)" msgstr "花俏長日期格式(%1,%2)" -#: skgbasegui/skgmainpanel.cpp:1530 +#: skgbasegui/skgmainpanel.cpp:1540 #, kde-format msgctxt "Date format" msgid "ISO date (%1, %2)" msgstr "ISO 日期(%1,%2)" -#: skgbasegui/skgmainpanel.cpp:1533 +#: skgbasegui/skgmainpanel.cpp:1543 msgctxt "Noun" msgid "General" msgstr "一般" -#: skgbasegui/skgmainpanel.cpp:1565 +#: skgbasegui/skgmainpanel.cpp:1575 msgctxt "Noun, name of the user action" msgid "Save settings" msgstr "儲存設定" -#: skgbasegui/skgmainpanel.cpp:1662 +#: skgbasegui/skgmainpanel.cpp:1678 #, fuzzy #| msgid "Save settings" msgctxt "Noun, user action" msgid "Unpin this page" msgstr "儲存設定" -#: skgbasegui/skgmainpanel.cpp:1750 +#: skgbasegui/skgmainpanel.cpp:1766 msgctxt "Noun, indicate that current document is modified" msgid " [modified]" msgstr " 【已修改】" -#: skgbasegui/skgmainpanel.cpp:1753 +#: skgbasegui/skgmainpanel.cpp:1769 msgctxt "Noun, indicate that current document is loaded in read only" msgid " [read only]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:1757 +#: skgbasegui/skgmainpanel.cpp:1773 msgctxt "Noun, default name for a new document" msgid "Untitled" msgstr "未命名" -#: skgbasegui/skgmainpanel.cpp:1768 +#: skgbasegui/skgmainpanel.cpp:1784 #, fuzzy, kde-format #| msgctxt "Title of the main window" #| msgid "%1%2 - %3" @@ -13938,18 +13938,18 @@ msgid "%1%2" msgstr "%1%2 - %3" -#: skgbasegui/skgmainpanel.cpp:1866 +#: skgbasegui/skgmainpanel.cpp:1882 msgctxt "An information message" msgid "Impossible to open the page because the plugin was not found" msgstr "無法開啟頁面,因為找不到外掛程式" -#: skgbasegui/skgmainpanel.cpp:1967 +#: skgbasegui/skgmainpanel.cpp:1983 #, kde-format msgctxt "Error message" msgid "Unknown plugin or action [%1] in url [%2]" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2045 +#: skgbasegui/skgmainpanel.cpp:2061 #, fuzzy #| msgctxt "Question" #| msgid "A page cannot be closed when an operation is running." @@ -13957,17 +13957,17 @@ msgid "A page cannot be closed when an operation is running." msgstr "執行操作時無法關閉頁面。" -#: skgbasegui/skgmainpanel.cpp:2151 +#: skgbasegui/skgmainpanel.cpp:2167 msgctxt "Noun, name of the user action" msgid "Reset default state" msgstr "重置預設狀態" -#: skgbasegui/skgmainpanel.cpp:2160 +#: skgbasegui/skgmainpanel.cpp:2176 msgctxt "Successful message after an user action" msgid "Default state has been reset" msgstr "預設狀態已重置" -#: skgbasegui/skgmainpanel.cpp:2250 +#: skgbasegui/skgmainpanel.cpp:2266 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Warning" @@ -13975,7 +13975,7 @@ msgid "Warning: %1" msgstr "警告" -#: skgbasegui/skgmainpanel.cpp:2252 +#: skgbasegui/skgmainpanel.cpp:2268 #, fuzzy, kde-format #| msgctxt "Question" #| msgid "Error" @@ -13983,52 +13983,52 @@ msgid "Error: %1" msgstr "錯誤" -#: skgbasegui/skgmainpanel.cpp:2254 +#: skgbasegui/skgmainpanel.cpp:2270 #, fuzzy, kde-format #| msgid "Confirmation" msgctxt "Information header" msgid "Information: %1" msgstr "確認" -#: skgbasegui/skgmainpanel.cpp:2256 +#: skgbasegui/skgmainpanel.cpp:2272 #, fuzzy, kde-format #| msgid "Show" msgctxt "Done header" msgid "Done: %1" msgstr "顯示" -#: skgbasegui/skgmainpanel.cpp:2285 +#: skgbasegui/skgmainpanel.cpp:2301 msgctxt "Noun" msgid "Notification" msgstr "通知" -#: skgbasegui/skgmainpanel.cpp:2441 +#: skgbasegui/skgmainpanel.cpp:2457 #, kde-format msgctxt "Question" msgid "File %1 already exists. Do you really want to overwrite it?" msgstr "檔案 %1 已存在。您要覆寫它嗎?" -#: skgbasegui/skgmainpanel.cpp:2442 +#: skgbasegui/skgmainpanel.cpp:2458 msgctxt "Question" msgid "Warning" msgstr "警告" -#: skgbasegui/skgmainpanel.cpp:2443 +#: skgbasegui/skgmainpanel.cpp:2459 msgctxt "Verb" msgid "Save" msgstr "儲存" -#: skgbasegui/skgmainpanel.cpp:2483 skgbasemodeler/skgobjectbase.cpp:267 +#: skgbasegui/skgmainpanel.cpp:2499 skgbasemodeler/skgobjectbase.cpp:267 msgctxt "Key word to modify a string into a field" msgid "capitalize" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2484 skgbasemodeler/skgobjectbase.cpp:265 +#: skgbasegui/skgmainpanel.cpp:2500 skgbasemodeler/skgobjectbase.cpp:265 msgctxt "Key word to modify a string into a field" msgid "capwords" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2485 skgbasemodeler/skgobjectbase.cpp:261 +#: skgbasegui/skgmainpanel.cpp:2501 skgbasemodeler/skgobjectbase.cpp:261 #, fuzzy #| msgctxt "Change a string to lowercase" #| msgid "lowercase" @@ -14036,12 +14036,12 @@ msgid "lower" msgstr "小寫" -#: skgbasegui/skgmainpanel.cpp:2486 skgbasemodeler/skgobjectbase.cpp:269 +#: skgbasegui/skgmainpanel.cpp:2502 skgbasemodeler/skgobjectbase.cpp:269 msgctxt "Key word to modify a string into a field" msgid "trim" msgstr "" -#: skgbasegui/skgmainpanel.cpp:2487 skgbasemodeler/skgobjectbase.cpp:263 +#: skgbasegui/skgmainpanel.cpp:2503 skgbasemodeler/skgobjectbase.cpp:263 #, fuzzy #| msgctxt "Change a string to uppercase" #| msgid "uppercase" @@ -14049,14 +14049,14 @@ msgid "upper" msgstr "大寫" -#: skgbasegui/skgmainpanel.cpp:2576 +#: skgbasegui/skgmainpanel.cpp:2592 #, fuzzy #| msgid "Recurrent operation inserted." msgctxt "An information message" msgid "The document must be saved to be migrated." msgstr "循環操作已插入。" -#: skgbasegui/skgmainpanel.cpp:2616 +#: skgbasegui/skgmainpanel.cpp:2632 #, fuzzy, kde-format #| msgid "Recurrent operation inserted." msgctxt "Positive message" diff -Nru skrooge-2.4.93/skgbasegui/skgmainpanel.cpp skrooge-2.4.94/skgbasegui/skgmainpanel.cpp --- skrooge-2.4.93/skgbasegui/skgmainpanel.cpp 2016-08-18 18:55:55.000000000 +0000 +++ skrooge-2.4.94/skgbasegui/skgmainpanel.cpp 2016-08-21 19:58:40.000000000 +0000 @@ -319,8 +319,8 @@ prefskg.writeEntry("update_modified_contexts", 2, KConfigBase::Normal); // NEVER: set following setting KMessageBox::saveDontShowAgainYesNo(QStringLiteral("updateContextOnClose"), KMessageBox::No); - SKGTRACEL(1) << "update_modified_contexts set to NEVER" << endl; - SKGTRACEL(1) << "updateContextOnClose set to No" << endl; + SKGTRACEL(1) << "update_modified_contexts set to NEVER" << endl; + SKGTRACEL(1) << "updateContextOnClose set to No" << endl; } option = prefskg.readEntry("update_modified_bookmarks", 100); @@ -329,8 +329,8 @@ prefskg.writeEntry("update_modified_bookmarks", 2, KConfigBase::Normal); // NEVER: set following setting KMessageBox::saveDontShowAgainYesNo(QStringLiteral("updateBookmarkOnClose"), KMessageBox::No); - SKGTRACEL(1) << "update_modified_bookmarks set to NEVER" << endl; - SKGTRACEL(1) << "updateBookmarkOnClose set to No" << endl; + SKGTRACEL(1) << "update_modified_bookmarks set to NEVER" << endl; + SKGTRACEL(1) << "updateBookmarkOnClose set to No" << endl; } // Search plugins @@ -1487,13 +1487,13 @@ KConfigGroup pref = getMainConfigGroup(); if (ask) { pref.writeEntry("update_modified_bookmarks", 0, KConfigBase::Normal); - SKGTRACEL(1) << "update_modified_bookmarks set to ASK" << endl; + SKGTRACEL(1) << "update_modified_bookmarks set to ASK" << endl; } else if (confirm == KMessageBox::Yes) { pref.writeEntry("update_modified_bookmarks", 1, KConfigBase::Normal); - SKGTRACEL(1) << "update_modified_bookmarks set to ALWAYS" << endl; + SKGTRACEL(1) << "update_modified_bookmarks set to ALWAYS" << endl; } else { pref.writeEntry("update_modified_bookmarks", 2, KConfigBase::Normal); - SKGTRACEL(1) << "update_modified_bookmarks set to NEVER" << endl; + SKGTRACEL(1) << "update_modified_bookmarks set to NEVER" << endl; } } @@ -1504,13 +1504,13 @@ KConfigGroup pref = getMainConfigGroup(); if (ask) { pref.writeEntry("update_modified_contexts", 0, KConfigBase::Normal); - SKGTRACEL(1) << "update_modified_contexts set to ASK" << endl; + SKGTRACEL(1) << "update_modified_contexts set to ASK" << endl; } else if (confirm == KMessageBox::Yes) { pref.writeEntry("update_modified_contexts", 1, KConfigBase::Normal); - SKGTRACEL(1) << "update_modified_contexts set to ALWAYS" << endl; + SKGTRACEL(1) << "update_modified_contexts set to ALWAYS" << endl; } else { pref.writeEntry("update_modified_contexts", 2, KConfigBase::Normal); - SKGTRACEL(1) << "update_modified_contexts set to NEVER" << endl; + SKGTRACEL(1) << "update_modified_contexts set to NEVER" << endl; } } skgbasegui_settings::self()->load(); @@ -1589,15 +1589,15 @@ if (option == 0) { // ASK: remove following setting KMessageBox::enableMessage(QStringLiteral("updateBookmarkOnClose")); - SKGTRACEL(1) << "updateBookmarkOnClose set to ASK" << endl; + SKGTRACEL(1) << "updateBookmarkOnClose set to ASK" << endl; } else if (option == 1) { // ALWAYS: set following setting KMessageBox::saveDontShowAgainYesNo(QStringLiteral("updateBookmarkOnClose"), KMessageBox::Yes); - SKGTRACEL(1) << "updateBookmarkOnClose set to Yes" << endl; + SKGTRACEL(1) << "updateBookmarkOnClose set to Yes" << endl; } else { // NEVER: set following setting KMessageBox::saveDontShowAgainYesNo(QStringLiteral("updateBookmarkOnClose"), KMessageBox::No); - SKGTRACEL(1) << "updateBookmarkOnClose set to No" << endl; + SKGTRACEL(1) << "updateBookmarkOnClose set to No" << endl; } } { @@ -1605,15 +1605,15 @@ if (option == 0) { // ASK: remove following setting KMessageBox::enableMessage(QStringLiteral("updateContextOnClose")); - SKGTRACEL(1) << "updateContextOnClose set to ASK" << endl; + SKGTRACEL(1) << "updateContextOnClose set to ASK" << endl; } else if (option == 1) { // ALWAYS: set following setting KMessageBox::saveDontShowAgainYesNo(QStringLiteral("updateContextOnClose"), KMessageBox::Yes); - SKGTRACEL(1) << "updateContextOnClose set to Yes" << endl; + SKGTRACEL(1) << "updateContextOnClose set to Yes" << endl; } else { // NEVER: set following setting KMessageBox::saveDontShowAgainYesNo(QStringLiteral("updateContextOnClose"), KMessageBox::No); - SKGTRACEL(1) << "updateContextOnClose set to No" << endl; + SKGTRACEL(1) << "updateContextOnClose set to No" << endl; } } skgbasegui_settings::self()->load(); diff -Nru skrooge-2.4.93/skgbasegui/skgtabpage.cpp skrooge-2.4.94/skgbasegui/skgtabpage.cpp --- skrooge-2.4.93/skgbasegui/skgtabpage.cpp 2016-08-18 18:55:55.000000000 +0000 +++ skrooge-2.4.94/skgbasegui/skgtabpage.cpp 2016-08-21 19:58:40.000000000 +0000 @@ -140,6 +140,7 @@ void SKGTabPage::overwrite(bool iUserConfirmation) { + SKGTRACEINFUNC(10); // Is this widget linked to a bookmark ? if (!m_bookmarkID.isEmpty()) { // Yes. Is state modified ? @@ -157,6 +158,8 @@ if (currentState != oldState) { QApplication::setOverrideCursor(QCursor(Qt::ArrowCursor)); int conf = KMessageBox::Yes; + KMessageBox::ButtonCode button; + SKGTRACEL(10) << (KMessageBox::shouldBeShownYesNo(QStringLiteral("updateBookmarkOnClose"), button) ? "updateBookmarkOnClose: Ask confirmation" : "updateBookmarkOnClose: Do not ask confirmation") << endl; if (iUserConfirmation && !oldState.isEmpty()) conf = KMessageBox::questionYesNo(this, i18nc("Question", "Bookmark '%1' has been modified. Do you want to update it with the current state?", fullname), i18nc("Question", "Bookmark has been modified"), @@ -191,6 +194,9 @@ if (currentState != oldState) { QApplication::setOverrideCursor(QCursor(Qt::ArrowCursor)); int conf = KMessageBox::Yes; + KMessageBox::ButtonCode button; + SKGTRACEL(10) << (KMessageBox::shouldBeShownYesNo(QStringLiteral("updateContextOnClose"), button) ? "updateBookmarkOnClose: Ask confirmation" : "updateBookmarkOnClose: Do not ask confirmation") << endl; + if (iUserConfirmation && !oldState.isEmpty()) conf = KMessageBox::questionYesNo(this, i18nc("Question", "Page has been modified. Do you want to update it with the current state?"), i18nc("Question", "Page has been modified"), diff -Nru skrooge-2.4.93/tests/input/skgtestimportbackend/320716_1/boobank skrooge-2.4.94/tests/input/skgtestimportbackend/320716_1/boobank --- skrooge-2.4.93/tests/input/skgtestimportbackend/320716_1/boobank 2016-08-18 18:55:55.000000000 +0000 +++ skrooge-2.4.94/tests/input/skgtestimportbackend/320716_1/boobank 2016-08-21 19:58:40.000000000 +0000 @@ -4,8 +4,7 @@ echo "id;balance" echo "12345@creditcooperatif;" else - if [[ $7 = "12345@creditcooperatif" ]]; then - #Simulate: boobank -q -f csv -n XXX history "12345@creditcooperatif" + if [[ $5 = "12345@creditcooperatif" ]]; then echo "rdate;type;raw;label;amount" echo "2013-05-04;0;TOTAL;TOTAL;-50" echo "2013-05-20;1;SNCF;SNCF;-10" diff -Nru skrooge-2.4.93/tests/input/skgtestimportbackend/320716_2/boobank skrooge-2.4.94/tests/input/skgtestimportbackend/320716_2/boobank --- skrooge-2.4.93/tests/input/skgtestimportbackend/320716_2/boobank 2016-08-18 18:55:55.000000000 +0000 +++ skrooge-2.4.94/tests/input/skgtestimportbackend/320716_2/boobank 2016-08-21 19:58:40.000000000 +0000 @@ -4,8 +4,7 @@ echo "id;balance" echo "12345@creditcooperatif;" else - if [[ $7 = "12345@creditcooperatif" ]]; then - #Simulate: boobank -q -f csv -n XXX history "12345@creditcooperatif" + if [[ $5 = "12345@creditcooperatif" ]]; then if [[ $5 = "1" ]]; then echo "rdate;type;raw;label;amount" echo "2013-06-05;0;TOTAL;TOTAL;-40" diff -Nru skrooge-2.4.93/tests/input/skgtestimportbackend/329876/boobank skrooge-2.4.94/tests/input/skgtestimportbackend/329876/boobank --- skrooge-2.4.93/tests/input/skgtestimportbackend/329876/boobank 2016-08-18 18:55:55.000000000 +0000 +++ skrooge-2.4.94/tests/input/skgtestimportbackend/329876/boobank 2016-08-21 19:58:40.000000000 +0000 @@ -5,7 +5,6 @@ echo "12345@paypal;" else if [[ $7 = "12345@paypal" ]]; then - #Simulate: boobank -q -f csv -n XXX history "12345@paypal" echo "id;date;rdate;vdate;type;raw;category;label;amount" echo "2BD050916Y111831W@paypal;2014-01-05 00:00:00;2014-01-05 00:00:00;Not loaded;2;Payment To Zavvi.com;Not loaded;Zavvi.com;-3.02" echo "39B40256MU139305U@paypal;2014-01-05 00:00:00;2014-01-05 00:00:00;Not loaded;7;Transfer From Credit Card;Not loaded;Credit Card;3.02" diff -Nru skrooge-2.4.93/tests/input/skgtestimportbackend/fake1/boobank skrooge-2.4.94/tests/input/skgtestimportbackend/fake1/boobank --- skrooge-2.4.93/tests/input/skgtestimportbackend/fake1/boobank 2016-08-18 18:55:55.000000000 +0000 +++ skrooge-2.4.94/tests/input/skgtestimportbackend/fake1/boobank 2016-08-21 19:58:40.000000000 +0000 @@ -5,14 +5,14 @@ echo "12345@creditcooperatif;1523.99" echo "47896@creditcooperatif;" else - if [[ $7 = "12345@creditcooperatif" ]]; then - #Simulate: boobank -q -f csv -n XXX history "12345@creditcooperatif" + if [[ $5 = "12345@creditcooperatif" ]]; then + #Simulate: boobank -q -f csv history "47896@creditcooperatif" -s rdate,type,raw,label,amount --condition "rdate>%4" -n 99999 echo "rdate;type;raw;label;amount" echo "2013-05-04;0;TOTAL;TOTAL;-50.48" echo "2013-05-20;1;SNCF;SNCF;-17" echo "2013-05-26;1;CAF;CAF;120.25" else - #Simulate: boobank -q -f csv -n XXX history "47896@creditcooperatif" + #Simulate: boobank -q -f csv history "47896@creditcooperatif" -s rdate,type,raw,label,amount --condition "rdate>%4" -n 99999 echo "rdate;type;raw;label;amount" echo "2013-05-04;0;TOTAL;TOTAL;-10" echo "2013-05-20;1;SNCF;SNCF;-20"