/* -*- 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include namespace basegfx::utils { namespace { double distance( const double& nX, const double& nY, const ::basegfx::B2DVector& rNormal, const double& nC ) { return nX*rNormal.getX() + nY*rNormal.getY() - nC; } void moveLineOutsideRect( ::basegfx::B2DPoint& io_rStart, ::basegfx::B2DPoint& io_rEnd, const ::basegfx::B2DVector& rMoveDirection, const ::basegfx::B2DRange& rFitTarget ) { // calc c for normal line form equation n x - c = 0 const double nC( rMoveDirection.scalar( io_rStart ) ); // calc maximum orthogonal distance for all four bound // rect corners to the line const double nMaxDistance( std::max( 0.0, std::max( distance(rFitTarget.getMinX(), rFitTarget.getMinY(), rMoveDirection, nC), std::max( distance(rFitTarget.getMinX(), rFitTarget.getMaxY(), rMoveDirection, nC), std::max( distance(rFitTarget.getMaxX(), rFitTarget.getMinY(), rMoveDirection, nC), distance(rFitTarget.getMaxX(), rFitTarget.getMaxY(), rMoveDirection, nC) ) ) ) ) ); // now move line points, such that the bound rect // points are all either 'on' or on the negative side // of the half-plane io_rStart += nMaxDistance*rMoveDirection; io_rEnd += nMaxDistance*rMoveDirection; } } void infiniteLineFromParallelogram( ::basegfx::B2DPoint& io_rLeftTop, ::basegfx::B2DPoint& io_rLeftBottom, ::basegfx::B2DPoint& io_rRightTop, ::basegfx::B2DPoint& io_rRightBottom, const ::basegfx::B2DRange& rFitTarget ) { // For the top and bottom border line of the // parallelogram, we determine the distance to all four // corner points of the bound rect (tl, tr, bl, br). When // using the unit normal form for lines (n x - c = 0), and // choosing n to point 'outwards' the parallelogram, then // all bound rect corner points having positive distance // to the line lie outside the extended gradient rect, and // thus, the corresponding border line must be moved the // maximum distance outwards. // don't use the top and bottom border line direction, and // calculate the normal from them. Instead, use the // vertical lines (lt - lb or rt - rb), as they more // faithfully represent the direction of the // to-be-generated infinite line ::basegfx::B2DVector aDirectionVertical( io_rLeftTop - io_rLeftBottom ); aDirectionVertical.normalize(); const ::basegfx::B2DVector aNormalTop( aDirectionVertical ); const ::basegfx::B2DVector aNormalBottom( -aDirectionVertical ); // now extend parallelogram, such that the bound rect // point are included moveLineOutsideRect( io_rLeftTop, io_rRightTop, aNormalTop, rFitTarget ); moveLineOutsideRect( io_rLeftBottom, io_rRightBottom, aNormalBottom, rFitTarget ); } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ alue='libreoffice-3-4-2'>libreoffice-3-4-2 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
@@ -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/uiconfig/ui.po b/source/sl/desktop/uiconfig/ui.po
index 458e6f00a7e..2dc6cdb526d 100644
--- a/source/sl/desktop/uiconfig/ui.po
+++ b/source/sl/desktop/uiconfig/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-12-01 23:02+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/dictionaries/af_ZA.po b/source/sl/dictionaries/af_ZA.po
index c8a4cd230ab..63f84f445a1 100644
--- a/source/sl/dictionaries/af_ZA.po
+++ b/source/sl/dictionaries/af_ZA.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: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/dictionaries/an_ES.po b/source/sl/dictionaries/an_ES.po
index dfaa9c22fb8..c204b69eddf 100644
--- a/source/sl/dictionaries/an_ES.po
+++ b/source/sl/dictionaries/an_ES.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: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/dictionaries/ar.po b/source/sl/dictionaries/ar.po
index 29ef052e8f2..efda7a9f37c 100644
--- a/source/sl/dictionaries/ar.po
+++ b/source/sl/dictionaries/ar.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: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/dictionaries/be_BY.po b/source/sl/dictionaries/be_BY.po
index 58ffddf3122..156ee424144 100644
--- a/source/sl/dictionaries/be_BY.po
+++ b/source/sl/dictionaries/be_BY.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/bg_BG.po b/source/sl/dictionaries/bg_BG.po
index 16648635f18..8a5940fb93c 100644
--- a/source/sl/dictionaries/bg_BG.po
+++ b/source/sl/dictionaries/bg_BG.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/bn_BD.po b/source/sl/dictionaries/bn_BD.po
index 7b0bbe2b7cb..e8fd92b485e 100644
--- a/source/sl/dictionaries/bn_BD.po
+++ b/source/sl/dictionaries/bn_BD.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/br_FR.po b/source/sl/dictionaries/br_FR.po
index 8e5d19d0d08..75f85d14238 100644
--- a/source/sl/dictionaries/br_FR.po
+++ b/source/sl/dictionaries/br_FR.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/ca.po b/source/sl/dictionaries/ca.po
index df481fe6ef2..76e7c9bbafa 100644
--- a/source/sl/dictionaries/ca.po
+++ b/source/sl/dictionaries/ca.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/cs_CZ.po b/source/sl/dictionaries/cs_CZ.po
index 0a21a76bba1..ecd00648fa6 100644
--- a/source/sl/dictionaries/cs_CZ.po
+++ b/source/sl/dictionaries/cs_CZ.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/da_DK.po b/source/sl/dictionaries/da_DK.po
index aedeb9700ab..b03e477b0a8 100644
--- a/source/sl/dictionaries/da_DK.po
+++ b/source/sl/dictionaries/da_DK.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/de.po b/source/sl/dictionaries/de.po
index 1097444dc5d..f9bde996b55 100644
--- a/source/sl/dictionaries/de.po
+++ b/source/sl/dictionaries/de.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/el_GR.po b/source/sl/dictionaries/el_GR.po
index fa2280adb47..358a96f09a5 100644
--- a/source/sl/dictionaries/el_GR.po
+++ b/source/sl/dictionaries/el_GR.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/en.po b/source/sl/dictionaries/en.po
index 5c7e8a65e6e..a03ac8b46ce 100644
--- a/source/sl/dictionaries/en.po
+++ b/source/sl/dictionaries/en.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/en/dialog.po b/source/sl/dictionaries/en/dialog.po
index 6529608de22..d69190fdc41 100644
--- a/source/sl/dictionaries/en/dialog.po
+++ b/source/sl/dictionaries/en/dialog.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: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/dictionaries/en/dialog/registry/data/org/openoffice/Office.po b/source/sl/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
index 7b745e3d005..561bdc529ee 100644
--- a/source/sl/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
+++ b/source/sl/dictionaries/en/dialog/registry/data/org/openoffice/Office.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: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/dictionaries/es.po b/source/sl/dictionaries/es.po
index ce47ef14767..4de969e4665 100644
--- a/source/sl/dictionaries/es.po
+++ b/source/sl/dictionaries/es.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/et_EE.po b/source/sl/dictionaries/et_EE.po
index d7c92e766ee..f997635a698 100644
--- a/source/sl/dictionaries/et_EE.po
+++ b/source/sl/dictionaries/et_EE.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/fr_FR.po b/source/sl/dictionaries/fr_FR.po
index d18b772b92a..79fbe1df123 100644
--- a/source/sl/dictionaries/fr_FR.po
+++ b/source/sl/dictionaries/fr_FR.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/gd_GB.po b/source/sl/dictionaries/gd_GB.po
index 58af1bdeb0a..534bebde15c 100644
--- a/source/sl/dictionaries/gd_GB.po
+++ b/source/sl/dictionaries/gd_GB.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/gl.po b/source/sl/dictionaries/gl.po
index c4bf2e34b2b..db56c195235 100644
--- a/source/sl/dictionaries/gl.po
+++ b/source/sl/dictionaries/gl.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:55+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/dictionaries/gu_IN.po b/source/sl/dictionaries/gu_IN.po
index cd63b1b5846..688d0fb46a0 100644
--- a/source/sl/dictionaries/gu_IN.po
+++ b/source/sl/dictionaries/gu_IN.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/he_IL.po b/source/sl/dictionaries/he_IL.po
index bc178a40cf4..a5adad587b1 100644
--- a/source/sl/dictionaries/he_IL.po
+++ b/source/sl/dictionaries/he_IL.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/hi_IN.po b/source/sl/dictionaries/hi_IN.po
index 68d2e79a863..5497397a840 100644
--- a/source/sl/dictionaries/hi_IN.po
+++ b/source/sl/dictionaries/hi_IN.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/hr_HR.po b/source/sl/dictionaries/hr_HR.po
index 077da5ea22d..b0b1e1aa61c 100644
--- a/source/sl/dictionaries/hr_HR.po
+++ b/source/sl/dictionaries/hr_HR.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/hu_HU.po b/source/sl/dictionaries/hu_HU.po
index 3446756c2da..cd4a1c08dd6 100644
--- a/source/sl/dictionaries/hu_HU.po
+++ b/source/sl/dictionaries/hu_HU.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/hu_HU/dialog.po b/source/sl/dictionaries/hu_HU/dialog.po
index d6bcddfb97e..5d8886d5b8e 100644
--- a/source/sl/dictionaries/hu_HU/dialog.po
+++ b/source/sl/dictionaries/hu_HU/dialog.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: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/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po b/source/sl/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
index 76349caf5c9..870c3b12348 100644
--- a/source/sl/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/sl/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.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: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/dictionaries/it_IT.po b/source/sl/dictionaries/it_IT.po
index 71676097447..5ffba658a94 100644
--- a/source/sl/dictionaries/it_IT.po
+++ b/source/sl/dictionaries/it_IT.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/ku_TR.po b/source/sl/dictionaries/ku_TR.po
index 55b9237b292..9452d1643a1 100644
--- a/source/sl/dictionaries/ku_TR.po
+++ b/source/sl/dictionaries/ku_TR.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/lt_LT.po b/source/sl/dictionaries/lt_LT.po
index d685223a530..e7ed8282899 100644
--- a/source/sl/dictionaries/lt_LT.po
+++ b/source/sl/dictionaries/lt_LT.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/lv_LV.po b/source/sl/dictionaries/lv_LV.po
index abe143f2d69..c8e05bc5963 100644
--- a/source/sl/dictionaries/lv_LV.po
+++ b/source/sl/dictionaries/lv_LV.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/ne_NP.po b/source/sl/dictionaries/ne_NP.po
index 20c1f543188..e42b8d6f8f6 100644
--- a/source/sl/dictionaries/ne_NP.po
+++ b/source/sl/dictionaries/ne_NP.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/nl_NL.po b/source/sl/dictionaries/nl_NL.po
index 59eae6803f7..57e0eaf09cd 100644
--- a/source/sl/dictionaries/nl_NL.po
+++ b/source/sl/dictionaries/nl_NL.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/no.po b/source/sl/dictionaries/no.po
index ffe621cf1c9..684ab3b626e 100644
--- a/source/sl/dictionaries/no.po
+++ b/source/sl/dictionaries/no.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/oc_FR.po b/source/sl/dictionaries/oc_FR.po
index d2fb66357d4..0b33d3bf08c 100644
--- a/source/sl/dictionaries/oc_FR.po
+++ b/source/sl/dictionaries/oc_FR.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/pl_PL.po b/source/sl/dictionaries/pl_PL.po
index 4b6c4117cc4..43c102c5471 100644
--- a/source/sl/dictionaries/pl_PL.po
+++ b/source/sl/dictionaries/pl_PL.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/pt_BR.po b/source/sl/dictionaries/pt_BR.po
index 34d39cdbf67..171f9109d8a 100644
--- a/source/sl/dictionaries/pt_BR.po
+++ b/source/sl/dictionaries/pt_BR.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:47+0100\n"
"PO-Revision-Date: 2012-11-30 21:53+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/dictionaries/pt_BR/dialog.po b/source/sl/dictionaries/pt_BR/dialog.po
index 384fa63ed65..25f07467029 100644
--- a/source/sl/dictionaries/pt_BR/dialog.po
+++ b/source/sl/dictionaries/pt_BR/dialog.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:47+0100\n"
"PO-Revision-Date: 2012-11-30 02:18+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/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po b/source/sl/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
index 2d102bafe4a..a111d742ef6 100644
--- a/source/sl/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
+++ b/source/sl/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.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:47+0100\n"
"PO-Revision-Date: 2012-11-30 02:19+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/dictionaries/pt_PT.po b/source/sl/dictionaries/pt_PT.po
index 3b50ef8e3d3..4f9792512e0 100644
--- a/source/sl/dictionaries/pt_PT.po
+++ b/source/sl/dictionaries/pt_PT.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/ro.po b/source/sl/dictionaries/ro.po
index 677981d3fba..59fed74e21b 100644
--- a/source/sl/dictionaries/ro.po
+++ b/source/sl/dictionaries/ro.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/ru_RU.po b/source/sl/dictionaries/ru_RU.po
index 43c837be7f1..4947a339fa0 100644
--- a/source/sl/dictionaries/ru_RU.po
+++ b/source/sl/dictionaries/ru_RU.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/ru_RU/dialog.po b/source/sl/dictionaries/ru_RU/dialog.po
index 92f2ffb6fe7..021423c3afb 100644
--- a/source/sl/dictionaries/ru_RU/dialog.po
+++ b/source/sl/dictionaries/ru_RU/dialog.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: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/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po b/source/sl/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
index 99c246f8f2b..3479cc2d481 100644
--- a/source/sl/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/sl/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.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: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/dictionaries/si_LK.po b/source/sl/dictionaries/si_LK.po
index 0ededb3b2ca..ae9b44f31a6 100644
--- a/source/sl/dictionaries/si_LK.po
+++ b/source/sl/dictionaries/si_LK.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/sk_SK.po b/source/sl/dictionaries/sk_SK.po
index 4aa31694155..8cc2bdae6f5 100644
--- a/source/sl/dictionaries/sk_SK.po
+++ b/source/sl/dictionaries/sk_SK.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/sl_SI.po b/source/sl/dictionaries/sl_SI.po
index 8fec65fb787..d3257e72687 100644
--- a/source/sl/dictionaries/sl_SI.po
+++ b/source/sl/dictionaries/sl_SI.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/sr.po b/source/sl/dictionaries/sr.po
index 6cd552ead2f..2816aa7bbb8 100644
--- a/source/sl/dictionaries/sr.po
+++ b/source/sl/dictionaries/sr.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/sv_SE.po b/source/sl/dictionaries/sv_SE.po
index da55bbfbb41..9da563e976f 100644
--- a/source/sl/dictionaries/sv_SE.po
+++ b/source/sl/dictionaries/sv_SE.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/sw_TZ.po b/source/sl/dictionaries/sw_TZ.po
index 5fcfc9aa621..1fcca125e07 100644
--- a/source/sl/dictionaries/sw_TZ.po
+++ b/source/sl/dictionaries/sw_TZ.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/te_IN.po b/source/sl/dictionaries/te_IN.po
index a63d0fb3b0e..4d1221881a0 100644
--- a/source/sl/dictionaries/te_IN.po
+++ b/source/sl/dictionaries/te_IN.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/th_TH.po b/source/sl/dictionaries/th_TH.po
index d3e6e9ccc67..4a61152c773 100644
--- a/source/sl/dictionaries/th_TH.po
+++ b/source/sl/dictionaries/th_TH.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/uk_UA.po b/source/sl/dictionaries/uk_UA.po
index 152c4c7b67e..dfaa42ab2f8 100644
--- a/source/sl/dictionaries/uk_UA.po
+++ b/source/sl/dictionaries/uk_UA.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/vi.po b/source/sl/dictionaries/vi.po
index 835a02e2486..14d1fcc9d62 100644
--- a/source/sl/dictionaries/vi.po
+++ b/source/sl/dictionaries/vi.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/dictionaries/zu_ZA.po b/source/sl/dictionaries/zu_ZA.po
index 4177403120c..d424c01f315 100644
--- a/source/sl/dictionaries/zu_ZA.po
+++ b/source/sl/dictionaries/zu_ZA.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/editeng/source/accessibility.po b/source/sl/editeng/source/accessibility.po
index aaed71dd42d..bcffe2208d3 100644
--- a/source/sl/editeng/source/accessibility.po
+++ b/source/sl/editeng/source/accessibility.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/editeng/source/editeng.po b/source/sl/editeng/source/editeng.po
index c3eccaf9686..5793f85932c 100644
--- a/source/sl/editeng/source/editeng.po
+++ b/source/sl/editeng/source/editeng.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/editeng/source/items.po b/source/sl/editeng/source/items.po
index 42bbcd64e35..019863b6a7b 100644
--- a/source/sl/editeng/source/items.po
+++ b/source/sl/editeng/source/items.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/editeng/source/misc.po b/source/sl/editeng/source/misc.po
index 72267de3e0c..63212241ff4 100644
--- a/source/sl/editeng/source/misc.po
+++ b/source/sl/editeng/source/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:04+0100\n"
+"POT-Creation-Date: 2012-12-03 21:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/editeng/source/outliner.po b/source/sl/editeng/source/outliner.po
index ff017980bd3..4184cf4b3bf 100644
--- a/source/sl/editeng/source/outliner.po
+++ b/source/sl/editeng/source/outliner.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/extensions/source/abpilot.po b/source/sl/extensions/source/abpilot.po
index 2bf776f2723..6d841aa8b6b 100644
--- a/source/sl/extensions/source/abpilot.po
+++ b/source/sl/extensions/source/abpilot.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 22:47+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/extensions/source/bibliography.po b/source/sl/extensions/source/bibliography.po
index 635f693c28f..3925e1f3a8f 100644
--- a/source/sl/extensions/source/bibliography.po
+++ b/source/sl/extensions/source/bibliography.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 22:47+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/extensions/source/dbpilots.po b/source/sl/extensions/source/dbpilots.po
index 8c6b6c9211b..cc26fec2b06 100644
--- a/source/sl/extensions/source/dbpilots.po
+++ b/source/sl/extensions/source/dbpilots.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 22:47+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/extensions/source/propctrlr.po b/source/sl/extensions/source/propctrlr.po
index ab91c3eadbd..703dbe7a264 100644
--- a/source/sl/extensions/source/propctrlr.po
+++ b/source/sl/extensions/source/propctrlr.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 23:24+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/extensions/source/scanner.po b/source/sl/extensions/source/scanner.po
index bdd4e4d91eb..cbf091a529e 100644
--- a/source/sl/extensions/source/scanner.po
+++ b/source/sl/extensions/source/scanner.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 22:47+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/extensions/source/update/check.po b/source/sl/extensions/source/update/check.po
index ec2f47626bd..79803be6a4f 100644
--- a/source/sl/extensions/source/update/check.po
+++ b/source/sl/extensions/source/update/check.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 22:47+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/extensions/source/update/check/org/openoffice/Office.po b/source/sl/extensions/source/update/check/org/openoffice/Office.po
index 3d4f55ad122..1b607104150 100644
--- a/source/sl/extensions/source/update/check/org/openoffice/Office.po
+++ b/source/sl/extensions/source/update/check/org/openoffice/Office.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 22:47+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/filter/source/config/fragments/filters.po b/source/sl/filter/source/config/fragments/filters.po
index ce15d5578b5..842d3ba8356 100644
--- a/source/sl/filter/source/config/fragments/filters.po
+++ b/source/sl/filter/source/config/fragments/filters.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/filter/source/config/fragments/internalgraphicfilters.po b/source/sl/filter/source/config/fragments/internalgraphicfilters.po
index 5a0a0000fa8..a5a2acaf07a 100644
--- a/source/sl/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/sl/filter/source/config/fragments/internalgraphicfilters.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:47+0100\n"
"PO-Revision-Date: 2012-11-20 22:47+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/filter/source/config/fragments/types.po b/source/sl/filter/source/config/fragments/types.po
index d25ff9be976..428ea7c4740 100644
--- a/source/sl/filter/source/config/fragments/types.po
+++ b/source/sl/filter/source/config/fragments/types.po