/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef LO_CLANG_SHARED_PLUGINS #include #include #include #include "clang/AST/Attr.h" #include "clang/Sema/SemaInternal.h" // warn_unused_function #include "plugin.hxx" namespace { bool isFriendDecl(Decl const * decl) { return decl->getFriendObjectKind() != Decl::FOK_None; } Decl const * getPreviousNonFriendDecl(Decl const * decl) { for (;;) { decl = decl->getPreviousDecl(); if (decl == nullptr || !isFriendDecl(decl)) { return decl; } } } bool isSpecialMemberFunction(FunctionDecl const * decl) { if (auto const ctor = dyn_cast(decl)) { return ctor->isDefaultConstructor() || ctor->isCopyOrMoveConstructor(); } if (isa(decl)) { return true; } if (auto const meth = dyn_cast(decl)) { return meth->isCopyAssignmentOperator() || meth->isMoveAssignmentOperator(); } return false; } class UnrefFun: public loplugin::FilteringPlugin { public: explicit UnrefFun(loplugin::InstantiationData const & data): FilteringPlugin(data) {} void run() override { TraverseDecl(compiler.getASTContext().getTranslationUnitDecl()); } bool PreTraverseFriendDecl(FriendDecl * decl) { friendFunction.push( dyn_cast_or_null(decl->getFriendDecl())); return true; } bool PostTraverseFriendDecl(FriendDecl *, bool ) { friendFunction.pop(); return true; } bool TraverseFriendDecl(FriendDecl * decl) { PreTraverseFriendDecl(decl); auto const ret = RecursiveASTVisitor::TraverseFriendDecl(decl); PostTraverseFriendDecl(decl, ret); return ret; } bool VisitFunctionDecl(FunctionDecl const * decl); private: std::stack friendFunction; }; bool UnrefFun::VisitFunctionDecl(FunctionDecl const * decl) { if (ignoreLocation(decl)) { return true; } //TODO, filtering out any functions relating to (class) templates for now: CXXRecordDecl const * r = dyn_cast(decl->getDeclContext()); if (r != nullptr && (r->getTemplateSpecializationKind() != TSK_Undeclared || r->isDependentContext())) { return true; } if (!friendFunction.empty() && decl == friendFunction.top()) { if (auto const lex = dyn_cast(decl->getLexicalDeclContext())) { if (lex->isDependentContext()) { return true; } } } if (!(decl->isThisDeclarationADefinition() || isFriendDecl(decl) || decl->isFunctionTemplateSpecialization())) { Decl const * prev = getPreviousNonFriendDecl(decl); if (prev != nullptr/* && prev != decl->getPrimaryTemplate()*/) { // Workaround for redeclarations that introduce visibility attributes // (as is done with // // SAL_DLLPUBLIC_EXPORT GType lok_doc_view_get_type(); // // in libreofficekit/source/gtk/lokdocview.cxx): if (decl->getAttr() != nullptr && prev->getAttr() == nullptr) { return true; } report( DiagnosticsEngine::Warning, "redundant function%0 redeclaration", decl->getLocation()) << ((decl->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate) ? " template" : "") << decl->getSourceRange(); report( DiagnosticsEngine::Note, "previous declaration is here", prev->getLocation()) << prev->getSourceRange(); return true; } } FunctionDecl const * canon = decl->getCanonicalDecl(); //TODO: is that the first? if (canon->isDeleted() || canon->isReferenced() || !(canon->isDefined() ? decl->isThisDeclarationADefinition() : decl->isFirstDecl()) || !compiler.getSourceManager().isInMainFile(canon->getLocation()) || isInUnoIncludeFile(canon) || canon->isMain() || canon->isMSVCRTEntryPoint() || (decl->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate && (decl->getDescribedFunctionTemplate()->spec_begin() != decl->getDescribedFunctionTemplate()->spec_end())) || (compiler.getDiagnostics().getDiagnosticLevel( diag::warn_unused_function, decl->getLocation()) < DiagnosticsEngine::Warning)) { return true; } if (canon->isExplicitlyDefaulted() && isSpecialMemberFunction(canon)) { // If a special member function is explicitly defaulted on the first declaration, assume // that its presence is always due to some interface design consideration, not to explicitly // request a definition that might be worth to flag as unused (and C++20 may extend // defaultability beyond special member functions to comparison operators, therefore // explicitly check here for special member functions only): return true; } LinkageInfo info(canon->getLinkageAndVisibility()); if (info.getLinkage() == ExternalLinkage && loplugin::hasCLanguageLinkageType(canon) && canon->isDefined() && ((decl == canon && info.getVisibility() == DefaultVisibility) || ((canon->hasAttr() || canon->hasAttr()) && info.getVisibility() == HiddenVisibility))) { return true; } auto loc = decl->getLocation(); if (compiler.getSourceManager().isMacroBodyExpansion(loc) && (Lexer::getImmediateMacroName( loc, compiler.getSourceManager(), compiler.getLangOpts()) == "MDDS_MTV_DEFINE_ELEMENT_CALLBACKS")) { return true; } report( DiagnosticsEngine::Warning, (canon->isDefined() ? (canon->isExternallyVisible() ? "Unreferenced externally visible function%0 definition" : "Unreferenced externally invisible function%0 definition") : "Unreferenced function%0 declaration"), decl->getLocation()) << (decl->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate ? " template" : "") << decl->getSourceRange(); if (canon->isDefined() && !decl->isFirstDecl()) { report( DiagnosticsEngine::Note, "first declaration is here", canon->getLocation()) << canon->getSourceRange(); } return true; } loplugin::Plugin::Registration unreffun("unreffun"); } #endif // LO_CLANG_SHARED_PLUGINS /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ibreoffice-3-6-6 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2012-12-04 11:02:32 +0100
committerAndras Timar <atimar@suse.com>2012-12-04 11:02:32 +0100
commit29912248a458e96bf58166bf780bef9f535002aa (patch)
tree595d070db5c3992c73c52bdd1d0575ddaa507b5d
parenta24d6519ec38959686a76da10b9f0de190c20355 (diff)
Slovenian update/fixes libreoffice-4-0-branch-point
Change-Id: I9728e1a274b3aede1db24c8c41e600759be1ad16
-rw-r--r--source/sl/accessibility/source/helper.po2
-rw-r--r--source/sl/android/sdremote/res/values.po17
-rw-r--r--source/sl/avmedia/source/framework.po2
-rw-r--r--source/sl/avmedia/source/viewer.po2
-rw-r--r--source/sl/basctl/source/basicide.po2
-rw-r--r--source/sl/basctl/source/dlged.po2
-rw-r--r--source/sl/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/sl/basic/source/classes.po2
-rw-r--r--source/sl/basic/source/sbx.po2
-rw-r--r--source/sl/chart2/source/controller/dialogs.po2
-rw-r--r--source/sl/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/connectivity/source/resource.po2
-rw-r--r--source/sl/cui/source/customize.po2
-rw-r--r--source/sl/cui/source/dialogs.po2
-rw-r--r--source/sl/cui/source/options.po16
-rw-r--r--source/sl/cui/source/tabpages.po2
-rw-r--r--source/sl/cui/uiconfig/ui.po49
-rw-r--r--source/sl/dbaccess/source/core/resource.po2
-rw-r--r--source/sl/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/sl/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/sl/dbaccess/source/ui/app.po2
-rw-r--r--source/sl/dbaccess/source/ui/browser.po2
-rw-r--r--source/sl/dbaccess/source/ui/control.po2
-rw-r--r--source/sl/dbaccess/source/ui/dlg.po2
-rw-r--r--source/sl/dbaccess/source/ui/inc.po2
-rw-r--r--source/sl/dbaccess/source/ui/misc.po2
-rw-r--r--source/sl/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/sl/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/sl/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/sl/dbaccess/source/ui/uno.po2
-rw-r--r--source/sl/desktop/source/app.po2
-rw-r--r--source/sl/desktop/source/deployment/gui.po2
-rw-r--r--source/sl/desktop/source/deployment/manager.po2
-rw-r--r--source/sl/desktop/source/deployment/misc.po2
-rw-r--r--source/sl/desktop/source/deployment/registry.po2
-rw-r--r--source/sl/desktop/source/deployment/registry/component.po2
-rw-r--r--source/sl/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/sl/desktop/source/deployment/registry/help.po2
-rw-r--r--source/sl/desktop/source/deployment/registry/package.po2
-rw-r--r--source/sl/desktop/source/deployment/registry/script.po2
-rw-r--r--source/sl/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/sl/desktop/source/deployment/unopkg.po2
-rw-r--r--source/sl/desktop/uiconfig/ui.po2
-rw-r--r--source/sl/dictionaries/af_ZA.po2
-rw-r--r--source/sl/dictionaries/an_ES.po2
-rw-r--r--source/sl/dictionaries/ar.po2
-rw-r--r--source/sl/dictionaries/be_BY.po2
-rw-r--r--source/sl/dictionaries/bg_BG.po2
-rw-r--r--source/sl/dictionaries/bn_BD.po2
-rw-r--r--source/sl/dictionaries/br_FR.po2
-rw-r--r--source/sl/dictionaries/ca.po2
-rw-r--r--source/sl/dictionaries/cs_CZ.po2
-rw-r--r--source/sl/dictionaries/da_DK.po2
-rw-r--r--source/sl/dictionaries/de.po2
-rw-r--r--source/sl/dictionaries/el_GR.po2
-rw-r--r--source/sl/dictionaries/en.po2
-rw-r--r--source/sl/dictionaries/en/dialog.po2
-rw-r--r--source/sl/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sl/dictionaries/es.po2
-rw-r--r--source/sl/dictionaries/et_EE.po2
-rw-r--r--source/sl/dictionaries/fr_FR.po2
-rw-r--r--source/sl/dictionaries/gd_GB.po2
-rw-r--r--source/sl/dictionaries/gl.po2
-rw-r--r--source/sl/dictionaries/gu_IN.po2
-rw-r--r--source/sl/dictionaries/he_IL.po2
-rw-r--r--source/sl/dictionaries/hi_IN.po2
-rw-r--r--source/sl/dictionaries/hr_HR.po2
-rw-r--r--source/sl/dictionaries/hu_HU.po2
-rw-r--r--source/sl/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/sl/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sl/dictionaries/it_IT.po2
-rw-r--r--source/sl/dictionaries/ku_TR.po2
-rw-r--r--source/sl/dictionaries/lt_LT.po2
-rw-r--r--source/sl/dictionaries/lv_LV.po2
-rw-r--r--source/sl/dictionaries/ne_NP.po2
-rw-r--r--source/sl/dictionaries/nl_NL.po2
-rw-r--r--source/sl/dictionaries/no.po2
-rw-r--r--source/sl/dictionaries/oc_FR.po2
-rw-r--r--source/sl/dictionaries/pl_PL.po2
-rw-r--r--source/sl/dictionaries/pt_BR.po2
-rw-r--r--source/sl/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/sl/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sl/dictionaries/pt_PT.po2
-rw-r--r--source/sl/dictionaries/ro.po2
-rw-r--r--source/sl/dictionaries/ru_RU.po2
-rw-r--r--source/sl/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/sl/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sl/dictionaries/si_LK.po2
-rw-r--r--source/sl/dictionaries/sk_SK.po2
-rw-r--r--source/sl/dictionaries/sl_SI.po2
-rw-r--r--source/sl/dictionaries/sr.po2
-rw-r--r--source/sl/dictionaries/sv_SE.po2
-rw-r--r--source/sl/dictionaries/sw_TZ.po2
-rw-r--r--source/sl/dictionaries/te_IN.po2
-rw-r--r--source/sl/dictionaries/th_TH.po2
-rw-r--r--source/sl/dictionaries/uk_UA.po2
-rw-r--r--source/sl/dictionaries/vi.po2
-rw-r--r--source/sl/dictionaries/zu_ZA.po2
-rw-r--r--source/sl/editeng/source/accessibility.po2
-rw-r--r--source/sl/editeng/source/editeng.po2
-rw-r--r--source/sl/editeng/source/items.po2
-rw-r--r--source/sl/editeng/source/misc.po2
-rw-r--r--source/sl/editeng/source/outliner.po2
-rw-r--r--source/sl/extensions/source/abpilot.po2
-rw-r--r--source/sl/extensions/source/bibliography.po2
-rw-r--r--source/sl/extensions/source/dbpilots.po2
-rw-r--r--source/sl/extensions/source/propctrlr.po2
-rw-r--r--source/sl/extensions/source/scanner.po2
-rw-r--r--source/sl/extensions/source/update/check.po2
-rw-r--r--source/sl/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/sl/filter/source/config/fragments/filters.po2
-rw-r--r--source/sl/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/sl/filter/source/config/fragments/types.po2
-rw-r--r--source/sl/filter/source/flash.po2
-rw-r--r--source/sl/filter/source/graphicfilter/eps.po2
-rw-r--r--source/sl/filter/source/pdf.po2
-rw-r--r--source/sl/filter/source/t602.po2
-rw-r--r--source/sl/filter/source/xsltdialog.po2
-rw-r--r--source/sl/filter/uiconfig/ui.po2
-rw-r--r--source/sl/forms/source/resource.po2
-rw-r--r--source/sl/formula/source/core/resource.po2
-rw-r--r--source/sl/formula/source/ui/dlg.po2
-rw-r--r--source/sl/fpicker/source/office.po2
-rw-r--r--source/sl/framework/source/classes.po2
-rw-r--r--source/sl/framework/source/services.po2
-rw-r--r--source/sl/helpcontent2/source/auxiliary.po2
-rw-r--r--source/sl/helpcontent2/source/text/sbasic/guide.po2
-rw-r--r--source/sl/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/sl/helpcontent2/source/text/sbasic/shared/01.po2
-rw-r--r--source/sl/helpcontent2/source/text/sbasic/shared/02.po2
-rw-r--r--source/sl/helpcontent2/source/text/scalc.po2
-rw-r--r--source/sl/helpcontent2/source/text/scalc/00.po2
-rw-r--r--source/sl/helpcontent2/source/text/scalc/01.po65
-rw-r--r--source/sl/helpcontent2/source/text/scalc/02.po2
-rw-r--r--source/sl/helpcontent2/source/text/scalc/04.po2
-rw-r--r--source/sl/helpcontent2/source/text/scalc/05.po2
-rw-r--r--source/sl/helpcontent2/source/text/scalc/guide.po2
-rw-r--r--source/sl/helpcontent2/source/text/schart.po2
-rw-r--r--source/sl/helpcontent2/source/text/schart/00.po2
-rw-r--r--source/sl/helpcontent2/source/text/schart/01.po2
-rw-r--r--source/sl/helpcontent2/source/text/schart/02.po2
-rw-r--r--source/sl/helpcontent2/source/text/schart/04.po2
-rw-r--r--source/sl/helpcontent2/source/text/sdraw.po2
-rw-r--r--source/sl/helpcontent2/source/text/sdraw/00.po2
-rw-r--r--source/sl/helpcontent2/source/text/sdraw/01.po2
-rw-r--r--source/sl/helpcontent2/source/text/sdraw/04.po2
-rw-r--r--source/sl/helpcontent2/source/text/sdraw/guide.po2
-rw-r--r--source/sl/helpcontent2/source/text/shared.po2
-rw-r--r--source/sl/helpcontent2/source/text/shared/00.po2
-rw-r--r--source/sl/helpcontent2/source/text/shared/01.po27
-rw-r--r--source/sl/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/sl/helpcontent2/source/text/shared/04.po2
-rw-r--r--source/sl/helpcontent2/source/text/shared/05.po2
-rw-r--r--source/sl/helpcontent2/source/text/shared/07.po2
-rw-r--r--source/sl/helpcontent2/source/text/shared/autokorr.po2
-rw-r--r--source/sl/helpcontent2/source/text/shared/autopi.po2
-rw-r--r--source/sl/helpcontent2/source/text/shared/explorer/database.po2
-rw-r--r--source/sl/helpcontent2/source/text/shared/guide.po2
-rw-r--r--source/sl/helpcontent2/source/text/shared/optionen.po14
-rw-r--r--source/sl/helpcontent2/source/text/simpress.po2
-rw-r--r--source/sl/helpcontent2/source/text/simpress/00.po2
-rw-r--r--source/sl/helpcontent2/source/text/simpress/01.po2
-rw-r--r--source/sl/helpcontent2/source/text/simpress/02.po2
-rw-r--r--source/sl/helpcontent2/source/text/simpress/04.po2
-rw-r--r--source/sl/helpcontent2/source/text/simpress/guide.po2
-rw-r--r--source/sl/helpcontent2/source/text/smath.po2
-rw-r--r--source/sl/helpcontent2/source/text/smath/00.po2
-rw-r--r--source/sl/helpcontent2/source/text/smath/01.po2
-rw-r--r--source/sl/helpcontent2/source/text/smath/02.po2
-rw-r--r--source/sl/helpcontent2/source/text/smath/04.po2
-rw-r--r--source/sl/helpcontent2/source/text/smath/guide.po2
-rw-r--r--source/sl/helpcontent2/source/text/swriter.po1794
-rw-r--r--source/sl/helpcontent2/source/text/swriter/00.po2
-rw-r--r--source/sl/helpcontent2/source/text/swriter/01.po88
-rw-r--r--source/sl/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/sl/helpcontent2/source/text/swriter/04.po2
-rw-r--r--source/sl/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/sl/helpcontent2/source/text/swriter/librelogo.po2305
-rw-r--r--source/sl/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--source/sl/librelogo/source/pythonpath.po2
-rw-r--r--source/sl/mysqlc/source.po2
-rw-r--r--source/sl/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/sl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po2
-rw-r--r--source/sl/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/sl/nlpsolver/src/locale.po2
-rw-r--r--source/sl/officecfg/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sl/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/sl/padmin/source.po16
-rw-r--r--source/sl/readlicense_oo/docs.po2
-rw-r--r--source/sl/reportbuilder/java/com/sun/star/report/function/metadata.po2
-rw-r--r--source/sl/reportbuilder/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sl/reportbuilder/registry/data/org/openoffice/Office/UI.po2
-rw-r--r--source/sl/reportbuilder/registry/data/org/openoffice/TypeDetection.po2
-rw-r--r--source/sl/reportbuilder/util.po2
-rw-r--r--source/sl/reportdesign/source/core/resource.po2
-rw-r--r--source/sl/reportdesign/source/ui/dlg.po2
-rw-r--r--source/sl/reportdesign/source/ui/inspection.po2
-rw-r--r--source/sl/reportdesign/source/ui/report.po2
-rw-r--r--source/sl/sc/source/core/src.po2
-rw-r--r--source/sl/sc/source/ui/cctrl.po2
-rw-r--r--source/sl/sc/source/ui/dbgui.po2
-rw-r--r--source/sl/sc/source/ui/docshell.po2
-rw-r--r--source/sl/sc/source/ui/drawfunc.po2
-rw-r--r--source/sl/sc/source/ui/formdlg.po2
-rw-r--r--source/sl/sc/source/ui/miscdlgs.po2
-rw-r--r--source/sl/sc/source/ui/navipi.po2
-rw-r--r--source/sl/sc/source/ui/optdlg.po2
-rw-r--r--source/sl/sc/source/ui/pagedlg.po2
-rw-r--r--source/sl/sc/source/ui/src.po49
-rw-r--r--source/sl/sc/source/ui/styleui.po16
-rw-r--r--source/sl/sc/uiconfig/scalc/ui.po20
-rw-r--r--source/sl/scaddins/source/analysis.po2
-rw-r--r--source/sl/scaddins/source/datefunc.po2
-rw-r--r--source/sl/sccomp/source/solver.po2
-rw-r--r--source/sl/scp2/source/accessories.po8
-rw-r--r--source/sl/scp2/source/activex.po2
-rw-r--r--source/sl/scp2/source/base.po2
-rw-r--r--source/sl/scp2/source/calc.po2
-rw-r--r--source/sl/scp2/source/draw.po2
-rw-r--r--source/sl/scp2/source/extensions.po2
-rw-r--r--source/sl/scp2/source/gnome.po2
-rw-r--r--source/sl/scp2/source/graphicfilter.po2
-rw-r--r--source/sl/scp2/source/impress.po2
-rw-r--r--source/sl/scp2/source/javafilter.po2
-rw-r--r--source/sl/scp2/source/kde.po2
-rw-r--r--source/sl/scp2/source/math.po2
-rw-r--r--source/sl/scp2/source/onlineupdate.po2
-rw-r--r--source/sl/scp2/source/ooo.po19
-rw-r--r--source/sl/scp2/source/python.po2
-rw-r--r--source/sl/scp2/source/quickstart.po2
-rw-r--r--source/sl/scp2/source/sdkoo.po2
-rw-r--r--source/sl/scp2/source/smoketest.po2
-rw-r--r--source/sl/scp2/source/stdlibs.po2
-rw-r--r--source/sl/scp2/source/tde.po2
-rw-r--r--source/sl/scp2/source/winexplorerext.po2
-rw-r--r--source/sl/scp2/source/writer.po2
-rw-r--r--source/sl/scp2/source/xsltfilter.po2
-rw-r--r--source/sl/sd/source/core.po2
-rw-r--r--source/sl/sd/source/filter/html.po2
-rw-r--r--source/sl/sd/source/ui/accessibility.po2
-rw-r--r--source/sl/sd/source/ui/animations.po2
-rw-r--r--source/sl/sd/source/ui/annotations.po2
-rw-r--r--source/sl/sd/source/ui/app.po2
-rw-r--r--source/sl/sd/source/ui/dlg.po2
-rw-r--r--source/sl/sd/source/ui/slideshow.po2
-rw-r--r--source/sl/sd/source/ui/table.po2
-rw-r--r--source/sl/sd/source/ui/view.po2
-rw-r--r--source/sl/sd/uiconfig/sdraw/ui.po2
-rw-r--r--source/sl/sd/uiconfig/simpress/ui.po2
-rw-r--r--source/sl/sdext/source/minimizer.po2
-rw-r--r--source/sl/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sl/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/sl/setup_native/source/mac.po2
-rw-r--r--source/sl/sfx2/source/appl.po2
-rw-r--r--source/sl/sfx2/source/bastyp.po2
-rw-r--r--source/sl/sfx2/source/dialog.po2
-rw-r--r--source/sl/sfx2/source/doc.po2
-rw-r--r--source/sl/sfx2/source/menu.po2
-rw-r--r--source/sl/sfx2/source/view.po2
-rw-r--r--source/sl/sfx2/uiconfig/ui.po2
-rw-r--r--source/sl/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/sl/starmath/source.po2
-rw-r--r--source/sl/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/sl/svl/source/items.po2
-rw-r--r--source/sl/svl/source/misc.po2
-rw-r--r--source/sl/svtools/source/contnr.po2
-rw-r--r--source/sl/svtools/source/control.po2
-rw-r--r--source/sl/svtools/source/dialogs.po2
-rw-r--r--source/sl/svtools/source/java.po2
-rw-r--r--source/sl/svtools/source/misc.po2
-rw-r--r--source/sl/svtools/source/toolpanel.po2
-rw-r--r--source/sl/svtools/uiconfig/ui.po2
-rw-r--r--source/sl/svx/inc.po2
-rw-r--r--source/sl/svx/source/accessibility.po2
-rw-r--r--source/sl/svx/source/core.po2
-rw-r--r--source/sl/svx/source/dialog.po8
-rw-r--r--source/sl/svx/source/engine3d.po2
-rw-r--r--source/sl/svx/source/fmcomp.po2
-rw-r--r--source/sl/svx/source/form.po2
-rw-r--r--source/sl/svx/source/gallery2.po2
-rw-r--r--source/sl/svx/source/items.po2
-rw-r--r--source/sl/svx/source/src.po2
-rw-r--r--source/sl/svx/source/stbctrls.po2
-rw-r--r--source/sl/svx/source/svdraw.po8
-rw-r--r--source/sl/svx/source/table.po2
-rw-r--r--source/sl/svx/source/tbxctrls.po2
-rw-r--r--source/sl/svx/source/toolbars.po2
-rw-r--r--source/sl/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/sl/sw/source/core/layout.po2
-rw-r--r--source/sl/sw/source/core/undo.po2
-rw-r--r--source/sl/sw/source/core/unocore.po2
-rw-r--r--source/sl/sw/source/ui/app.po41
-rw-r--r--source/sl/sw/source/ui/chrdlg.po2
-rw-r--r--source/sl/sw/source/ui/config.po2
-rw-r--r--source/sl/sw/source/ui/dbui.po2
-rw-r--r--source/sl/sw/source/ui/dialog.po2
-rw-r--r--source/sl/sw/source/ui/dochdl.po2
-rw-r--r--source/sl/sw/source/ui/docvw.po2
-rw-r--r--source/sl/sw/source/ui/envelp.po2
-rw-r--r--source/sl/sw/source/ui/fldui.po8
-rw-r--r--source/sl/sw/source/ui/fmtui.po2
-rw-r--r--source/sl/sw/source/ui/frmdlg.po2
-rw-r--r--source/sl/sw/source/ui/globdoc.po2
-rw-r--r--source/sl/sw/source/ui/index.po2
-rw-r--r--source/sl/sw/source/ui/lingu.po2
-rw-r--r--source/sl/sw/source/ui/misc.po2
-rw-r--r--source/sl/sw/source/ui/ribbar.po2
-rw-r--r--source/sl/sw/source/ui/shells.po2
-rw-r--r--source/sl/sw/source/ui/smartmenu.po2
-rw-r--r--source/sl/sw/source/ui/table.po2
-rw-r--r--source/sl/sw/source/ui/uiview.po2
-rw-r--r--source/sl/sw/source/ui/utlui.po2
-rw-r--r--source/sl/sw/source/ui/web.po2
-rw-r--r--source/sl/sw/source/ui/wrtsh.po2
-rw-r--r--source/sl/sw/uiconfig/sw/ui.po2
-rw-r--r--source/sl/sw/uiconfig/swriter/ui.po23
-rw-r--r--source/sl/swext/mediawiki/help.po2
-rw-r--r--source/sl/swext/mediawiki/src.po2
-rw-r--r--source/sl/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/sl/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/sl/sysui/desktop/share.po2
-rw-r--r--source/sl/tubes/uiconfig/ui.po2
-rw-r--r--source/sl/uui/source.po2
-rw-r--r--source/sl/vcl/qa/cppunit/builder.po2
-rw-r--r--source/sl/vcl/source/edit.po2
-rw-r--r--source/sl/vcl/source/src.po2
-rw-r--r--source/sl/vcl/uiconfig/ui.po2
-rw-r--r--source/sl/wizards/source/euro.po2
-rw-r--r--source/sl/wizards/source/formwizard.po2
-rw-r--r--source/sl/wizards/source/importwizard.po2
-rw-r--r--source/sl/wizards/source/template.po2
-rw-r--r--source/sl/xmlsecurity/source/component.po2
-rw-r--r--source/sl/xmlsecurity/source/dialogs.po2
347 files changed, 772 insertions, 4503 deletions
diff --git a/source/sl/accessibility/source/helper.po b/source/sl/accessibility/source/helper.po
index ebdb8ceb864..490b0dbdd1f 100644
--- a/source/sl/accessibility/source/helper.po
+++ b/source/sl/accessibility/source/helper.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/android/sdremote/res/values.po b/source/sl/android/sdremote/res/values.po
index a6e582acdfa..24a034cc80b 100644
--- a/source/sl/android/sdremote/res/values.po
+++ b/source/sl/android/sdremote/res/values.po
@@ -3,18 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
-"PO-Revision-Date: 2012-11-30 23:14+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
+"PO-Revision-Date: 2012-12-04 00:14+0200\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
-"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
+"Language-Team: sl.libreoffice.org\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Virtaal 0.7.1\n"
"X-Accelerator-Marker: ~\n"
"X-Poedit-SourceCharset: UTF-8\n"
+"X-Project-Style: openoffice\n"
#: strings.xml
msgctxt ""
@@ -97,6 +98,7 @@ msgid "Pause"
msgstr "Premor"
#: strings.xml
+#, fuzzy
msgctxt ""
"strings.xml\n"
"clock_timer_restart\n"
@@ -153,20 +155,22 @@ msgid "Change slides using volume buttons"
msgstr "Izmenjuj prosojnice z gumboma za glasnost"
#: strings.xml
+#, fuzzy
msgctxt ""
"strings.xml\n"
"options_enablewifi\n"
"string.text"
msgid "Enable wireless"
-msgstr ""
+msgstr "Omogoči brezžični dostop"
#: strings.xml
+#, fuzzy
msgctxt ""
"strings.xml\n"
"options_enablewifi_descripton\n"
"string.text"
msgid "Try to connect to the computer over wireless"
-msgstr ""
+msgstr "Z računalnikom se poskusi povezati prek brezžične povezave"
#: strings.xml
msgctxt ""
@@ -193,6 +197,7 @@ msgid "Bluetooth"
msgstr "Bluetooth"
#: strings.xml
+#, fuzzy
msgctxt ""
"strings.xml\n"
"wifi\n"
diff --git a/source/sl/avmedia/source/framework.po b/source/sl/avmedia/source/framework.po
index efec908ff62..e169a1b59aa 100644
--- a/source/sl/avmedia/source/framework.po
+++ b/source/sl/avmedia/source/framework.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/avmedia/source/viewer.po b/source/sl/avmedia/source/viewer.po
index b97b7e37667..1e1f4aae1e5 100644
--- a/source/sl/avmedia/source/viewer.po
+++ b/source/sl/avmedia/source/viewer.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/basctl/source/basicide.po b/source/sl/basctl/source/basicide.po
index 2b1adb809ad..630a7546b67 100644
--- a/source/sl/basctl/source/basicide.po
+++ b/source/sl/basctl/source/basicide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/basctl/source/dlged.po b/source/sl/basctl/source/dlged.po
index 073968805e8..514f48e3d3a 100644
--- a/source/sl/basctl/source/dlged.po
+++ b/source/sl/basctl/source/dlged.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/basctl/uiconfig/basicide/ui.po b/source/sl/basctl/uiconfig/basicide/ui.po
index 5404e397c7c..860bf117647 100644
--- a/source/sl/basctl/uiconfig/basicide/ui.po
+++ b/source/sl/basctl/uiconfig/basicide/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/basic/source/classes.po b/source/sl/basic/source/classes.po
index 8c44ec69f34..9a87e6d70cc 100644
--- a/source/sl/basic/source/classes.po
+++ b/source/sl/basic/source/classes.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/basic/source/sbx.po b/source/sl/basic/source/sbx.po
index afd9a0e7fe2..7aea75b6415 100644
--- a/source/sl/basic/source/sbx.po
+++ b/source/sl/basic/source/sbx.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/chart2/source/controller/dialogs.po b/source/sl/chart2/source/controller/dialogs.po
index 4c366e7578b..2d4c365a8b4 100644
--- a/source/sl/chart2/source/controller/dialogs.po
+++ b/source/sl/chart2/source/controller/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/ado/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
index 0ff7bc0fc4d..e1ab53f9a93 100644
--- a/source/sl/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/calc/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
index 1fae9846636..7f878a32a34 100644
--- a/source/sl/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/calc/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
index 608a815e339..f613c9fed8a 100644
--- a/source/sl/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
index 0f9a32f1d64..25eea85ca40 100644
--- a/source/sl/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/flat/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
index 53b24ba4a5a..2bed889d0e6 100644
--- a/source/sl/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/flat/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:49+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
index 9b54d957a66..86e7003b36e 100644
--- a/source/sl/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:49+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
index e360f50ee20..c3eec99576b 100644
--- a/source/sl/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:49+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/kab/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
index c0225cdfe4a..2ad528c0d96 100644
--- a/source/sl/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/kab/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:49+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/macab/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
index 99cc351ba63..5dd085a6122 100644
--- a/source/sl/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:49+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/mork/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
index d22b461d081..55c8049033d 100644
--- a/source/sl/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
index 8503a13858a..12c60bae5ff 100644
--- a/source/sl/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
index d966c9659df..6a10faae201 100644
--- a/source/sl/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
index 56b3709b169..e9857e585b6 100644
--- a/source/sl/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
index be5d9fe5064..32258ca2ff9 100644
--- a/source/sl/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po b/source/sl/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
index 4c8f90c4c11..41d2c601e42 100644
--- a/source/sl/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
+++ b/source/sl/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/connectivity/source/resource.po b/source/sl/connectivity/source/resource.po
index 697abd0617e..b2157ff9785 100644
--- a/source/sl/connectivity/source/resource.po
+++ b/source/sl/connectivity/source/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:46+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/cui/source/customize.po b/source/sl/cui/source/customize.po
index 013c90f1eff..a5a6456b1e8 100644
--- a/source/sl/cui/source/customize.po
+++ b/source/sl/cui/source/customize.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:13+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/cui/source/dialogs.po b/source/sl/cui/source/dialogs.po
index 6831cd6a6f0..eeae6216f9c 100644
--- a/source/sl/cui/source/dialogs.po
+++ b/source/sl/cui/source/dialogs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-27 00:56+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/cui/source/options.po b/source/sl/cui/source/options.po
index 1a1d69240cf..9c3bc5c5cdb 100644
--- a/source/sl/cui/source/options.po
+++ b/source/sl/cui/source/options.po
@@ -3,18 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
-"PO-Revision-Date: 2012-12-02 10:00+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
+"PO-Revision-Date: 2012-12-03 23:47+0200\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
-"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
+"Language-Team: sl.libreoffice.org\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Virtaal 0.7.1\n"
"X-Accelerator-Marker: ~\n"
"X-Poedit-SourceCharset: UTF-8\n"
+"X-Project-Style: openoffice\n"
#: fontsubs.src
msgctxt ""
@@ -2595,16 +2596,16 @@ msgid "Security"
msgstr "Varnost"
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS\n"
"11\n"
"itemlist.text"
msgid "Personalization"
-msgstr ""
+msgstr "Poosebitev"
#: treeopt.src
-#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS\n"
@@ -2614,7 +2615,6 @@ msgid "Appearance"
msgstr "Videz"
#: treeopt.src
-#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS\n"
@@ -2624,7 +2624,6 @@ msgid "Accessibility"
msgstr "Pripomočki za invalide"
#: treeopt.src
-#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS\n"
@@ -2634,7 +2633,6 @@ msgid "Advanced"
msgstr "Napredno"
#: treeopt.src
-#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS\n"
diff --git a/source/sl/cui/source/tabpages.po b/source/sl/cui/source/tabpages.po
index 49588cc386a..06ef431535e 100644
--- a/source/sl/cui/source/tabpages.po
+++ b/source/sl/cui/source/tabpages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-27 00:58+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/cui/uiconfig/ui.po b/source/sl/cui/uiconfig/ui.po
index 9a08eeb6153..eb9014f0df4 100644
--- a/source/sl/cui/uiconfig/ui.po
+++ b/source/sl/cui/uiconfig/ui.po
@@ -3,18 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
-"PO-Revision-Date: 2012-12-01 22:58+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
+"PO-Revision-Date: 2012-12-04 00:19+0200\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
-"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
+"Language-Team: sl.libreoffice.org\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Virtaal 0.7.1\n"
"X-Accelerator-Marker: ~\n"
"X-Poedit-SourceCharset: UTF-8\n"
+"X-Project-Style: openoffice\n"
#: personalization_tab.ui
#, fuzzy
@@ -24,34 +25,37 @@ msgctxt ""
"label\n"
"string.text"
msgid "No background image"
-msgstr "<brez slike ozadja>"
+msgstr "Brez slike za ozadje"
#: personalization_tab.ui
+#, fuzzy
msgctxt ""
"personalization_tab.ui\n"
"default_background\n"
"label\n"
"string.text"
msgid "Default background image"
-msgstr ""
+msgstr "Privzeta slika za ozadje"
#: personalization_tab.ui
+#, fuzzy
msgctxt ""
"personalization_tab.ui\n"
"own_background\n"
"label\n"
"string.text"
msgid "Own image"
-msgstr ""
+msgstr "Lastna slika"
#: personalization_tab.ui
+#, fuzzy
msgctxt ""
"personalization_tab.ui\n"
"select_background\n"
"label\n"
"string.text"
msgid "Select Backround Image"
-msgstr ""
+msgstr "Izberite sliko za ozadje"
#: personalization_tab.ui
#, fuzzy
@@ -61,52 +65,57 @@ msgctxt ""
"label\n"
"string.text"
msgid "Background Image"
-msgstr "Slike ozadja"
+msgstr "Slika za ozadje"
#: personalization_tab.ui
+#, fuzzy
msgctxt ""
"personalization_tab.ui\n"
"no_persona\n"
"label\n"
"string.text"
msgid "Do not use Persona"
-msgstr ""
+msgstr "Ne uporabi Persone"
#: personalization_tab.ui
+#, fuzzy
msgctxt ""
"personalization_tab.ui\n"
"default_persona\n"
"label\n"
"string.text"
msgid "Use default Persona"
-msgstr ""
+msgstr "Uporabi privzeto persono"
#: personalization_tab.ui
+#, fuzzy
msgctxt ""
"personalization_tab.ui\n"
"own_persona\n"
"label\n"
"string.text"
msgid "Use own Persona"
-msgstr ""
+msgstr "Uporabi lastno Persono"
#: personalization_tab.ui
+#, fuzzy
msgctxt ""
"personalization_tab.ui\n"
"select_persona\n"
"label\n"
"string.text"
msgid "Select Persona"
-msgstr ""
+msgstr "Izberite Persono"
#: personalization_tab.ui
+#, fuzzy
msgctxt ""
"personalization_tab.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Firefox Personas"
-msgstr ""
+msgstr "Persone Firefox"
#: insertoleobject.ui
msgctxt ""
@@ -1270,40 +1279,44 @@ msgid "Double Wave"
msgstr "Valovito dvojno"
#: select_persona_dialog.ui
+#, fuzzy
msgctxt ""
"select_persona_dialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "First visit Firefox Personas (http://www.getpersonas.com). Find Persona you like, and want to choose for LibreOffice."
-msgstr ""
+msgstr "Najprej obiščite Persone Firefox (http://www.getpersonas.com). Poiščite Persono, ki vam je všeč, in jo izberite za LibreOffice."
#: select_persona_dialog.ui
+#, fuzzy
msgctxt ""
"select_persona_dialog.ui\n"
"visit_personas\n"
"label\n"
"string.text"
msgid "Visit Firefox Personas"
-msgstr ""
+msgstr "Obišči Persone Firefox"
#: select_persona_dialog.ui
+#, fuzzy
msgctxt ""
"select_persona_dialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Then copy the URL of page that contains the Persona to clipboard, paste it to the input field below, and confirm with OK."
-msgstr ""
+msgstr "Nato kopirajte URL strani, ki vsebuje Persono, na odložišče, ga prilepite v spodnje polje in potrdite s klikom gumba V redu."
#: select_persona_dialog.ui
+#, fuzzy
msgctxt ""
"select_persona_dialog.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Persona URL:"
-msgstr ""
+msgstr "URL Persone:"
#: insertrowcolumn.ui
msgctxt ""
diff --git a/source/sl/dbaccess/source/core/resource.po b/source/sl/dbaccess/source/core/resource.po
index e44347a2497..c77a314166f 100644
--- a/source/sl/dbaccess/source/core/resource.po
+++ b/source/sl/dbaccess/source/core/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/dbaccess/source/ext/macromigration.po b/source/sl/dbaccess/source/ext/macromigration.po
index 363d10da63b..8909d2e9942 100644
--- a/source/sl/dbaccess/source/ext/macromigration.po
+++ b/source/sl/dbaccess/source/ext/macromigration.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/dbaccess/source/sdbtools/resource.po b/source/sl/dbaccess/source/sdbtools/resource.po
index 0451077bd86..a6ca2ce01aa 100644
--- a/source/sl/dbaccess/source/sdbtools/resource.po
+++ b/source/sl/dbaccess/source/sdbtools/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/dbaccess/source/ui/app.po b/source/sl/dbaccess/source/ui/app.po
index d8bf06196e3..6bc1d01ffc4 100644
--- a/source/sl/dbaccess/source/ui/app.po
+++ b/source/sl/dbaccess/source/ui/app.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/dbaccess/source/ui/browser.po b/source/sl/dbaccess/source/ui/browser.po
index eb5050b563d..90b83c7bcdc 100644
--- a/source/sl/dbaccess/source/ui/browser.po
+++ b/source/sl/dbaccess/source/ui/browser.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/dbaccess/source/ui/control.po b/source/sl/dbaccess/source/ui/control.po
index 5974364c751..15f4c717e79 100644
--- a/source/sl/dbaccess/source/ui/control.po
+++ b/source/sl/dbaccess/source/ui/control.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/dbaccess/source/ui/dlg.po b/source/sl/dbaccess/source/ui/dlg.po
index 3d4c3ec4db7..8498d520dda 100644
--- a/source/sl/dbaccess/source/ui/dlg.po
+++ b/source/sl/dbaccess/source/ui/dlg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/dbaccess/source/ui/inc.po b/source/sl/dbaccess/source/ui/inc.po
index 273f110c789..b00ee5412ac 100644
--- a/source/sl/dbaccess/source/ui/inc.po
+++ b/source/sl/dbaccess/source/ui/inc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/dbaccess/source/ui/misc.po b/source/sl/dbaccess/source/ui/misc.po
index 0c4dffe8bdc..92d4558567d 100644
--- a/source/sl/dbaccess/source/ui/misc.po
+++ b/source/sl/dbaccess/source/ui/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/dbaccess/source/ui/querydesign.po b/source/sl/dbaccess/source/ui/querydesign.po
index bc0b1c6747b..61d9471c142 100644
--- a/source/sl/dbaccess/source/ui/querydesign.po
+++ b/source/sl/dbaccess/source/ui/querydesign.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/dbaccess/source/ui/relationdesign.po b/source/sl/dbaccess/source/ui/relationdesign.po
index 0cd85fbfc10..bcb4db19ec7 100644
--- a/source/sl/dbaccess/source/ui/relationdesign.po
+++ b/source/sl/dbaccess/source/ui/relationdesign.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/dbaccess/source/ui/tabledesign.po b/source/sl/dbaccess/source/ui/tabledesign.po
index f439dd98fd4..8e5e8a0785f 100644
--- a/source/sl/dbaccess/source/ui/tabledesign.po
+++ b/source/sl/dbaccess/source/ui/tabledesign.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/dbaccess/source/ui/uno.po b/source/sl/dbaccess/source/ui/uno.po
index 294e852ed5f..3dbf2cddc31 100644
--- a/source/sl/dbaccess/source/ui/uno.po
+++ b/source/sl/dbaccess/source/ui/uno.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/desktop/source/app.po b/source/sl/desktop/source/app.po
index 0df06a7b0a8..597a90bcd03 100644
--- a/source/sl/desktop/source/app.po
+++ b/source/sl/desktop/source/app.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/desktop/source/deployment/gui.po b/source/sl/desktop/source/deployment/gui.po
index 179d40fb2ab..27ba81fb250 100644
--- a/source/sl/desktop/source/deployment/gui.po
+++ b/source/sl/desktop/source/deployment/gui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/desktop/source/deployment/manager.po b/source/sl/desktop/source/deployment/manager.po
index 7b3f3df4312..12d34441f9c 100644
--- a/source/sl/desktop/source/deployment/manager.po
+++ b/source/sl/desktop/source/deployment/manager.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/desktop/source/deployment/misc.po b/source/sl/desktop/source/deployment/misc.po
index c5a3d1f9749..8b9792b57b0 100644
--- a/source/sl/desktop/source/deployment/misc.po
+++ b/source/sl/desktop/source/deployment/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/desktop/source/deployment/registry.po b/source/sl/desktop/source/deployment/registry.po
index 3ec48221116..779b25a2764 100644
--- a/source/sl/desktop/source/deployment/registry.po
+++ b/source/sl/desktop/source/deployment/registry.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/desktop/source/deployment/registry/component.po b/source/sl/desktop/source/deployment/registry/component.po
index 6ae885d4547..0b9451dce04 100644
--- a/source/sl/desktop/source/deployment/registry/component.po
+++ b/source/sl/desktop/source/deployment/registry/component.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/desktop/source/deployment/registry/configuration.po b/source/sl/desktop/source/deployment/registry/configuration.po
index 77fefc6a661..f086711af1b 100644
--- a/source/sl/desktop/source/deployment/registry/configuration.po
+++ b/source/sl/desktop/source/deployment/registry/configuration.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/desktop/source/deployment/registry/help.po b/source/sl/desktop/source/deployment/registry/help.po
index 496c30f8492..d949d4ae2a2 100644
--- a/source/sl/desktop/source/deployment/registry/help.po
+++ b/source/sl/desktop/source/deployment/registry/help.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/desktop/source/deployment/registry/package.po b/source/sl/desktop/source/deployment/registry/package.po
index 4d677525d40..5856dcfa1e2 100644
--- a/source/sl/desktop/source/deployment/registry/package.po
+++ b/source/sl/desktop/source/deployment/registry/package.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/desktop/source/deployment/registry/script.po b/source/sl/desktop/source/deployment/registry/script.po
index 0c074ff746a..8b4aa76d84b 100644
--- a/source/sl/desktop/source/deployment/registry/script.po
+++ b/source/sl/desktop/source/deployment/registry/script.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/desktop/source/deployment/registry/sfwk.po b/source/sl/desktop/source/deployment/registry/sfwk.po
index cd603ce4ae3..81b305e41e4 100644
--- a/source/sl/desktop/source/deployment/registry/sfwk.po
+++ b/source/sl/desktop/source/deployment/registry/sfwk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 4.0\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-03 17:05+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 10:39+0100\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: sl.libreoffice.org <users@sl.libreoffice.org>\n"
diff --git a/source/sl/desktop/source/deployment/unopkg.po b/source/sl/desktop/source/deployment/unopkg.po
index 446122c44aa..bffd1e4ff19 100644
--- a/source/sl/desktop/source/deployment/unopkg.po
+++ b/source/sl/desktop/source/deployment/unopkg.po