/* * 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 . */ package com.sun.star.comp.beans; import com.sun.star.uno.UnoRuntime; /** Wrapper base class for UNO services which emulates the upcoming mode of automatic runtime Java classes to get rid of the need for queryInterface. Because it's not worth the effort to create a runtime generated wrapper for this purpose, as it might be for OOo 2.0, you still have to use UnoRuntime.queryInterface() for interfaces which are optional or come from a subclass. But for non optional interfaces you can already directly call their methods. This wrapper will only work for UNO objects via a bridge, not for direct Java objects. @since OOo 2.0.0 */ class Wrapper implements com.sun.star.lib.uno.Proxy, // see the comment in com.sun.star.lib.uno.bridges.java_remote // .java_remote_bridge.mapInterfaceTo for the consequences of this // hack com.sun.star.uno.IQueryInterface, com.sun.star.lang.XComponent { private final com.sun.star.uno.IQueryInterface xQueryInterface; private final com.sun.star.lang.XComponent xComponent; public Wrapper( com.sun.star.uno.XInterface xProxy ) { xQueryInterface = (com.sun.star.uno.IQueryInterface) xProxy; xComponent = UnoRuntime.queryInterface( com.sun.star.lang.XComponent.class, xProxy ); } // com.sun.star.uno.IQueryInterface public String getOid() { return xQueryInterface.getOid(); } public boolean isSame( Object aObject ) { return xQueryInterface.isSame( aObject ); } public Object queryInterface( com.sun.star.uno.Type aType ) { return xQueryInterface.queryInterface( aType ); } // com.sun.star.lang.XComponent public void dispose( ) { xComponent.dispose(); } public void addEventListener( /*IN*/ com.sun.star.lang.XEventListener xListener ) { xComponent.addEventListener( xListener ); } public void removeEventListener( /*IN*/ com.sun.star.lang.XEventListener xListener ) { xComponent.removeEventListener( xListener ); } } ra/lov-5.2'>distro/collabora/lov-5.2 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2013-07-15 18:42:18 +0200
committerAndras Timar <atimar@suse.com>2013-07-15 21:09:51 +0200
commit163b64b65b130ad4335ec6c1774644a50c72a4f6 (patch)
treef62c814e4369a3953d71f0e4efaefa7e38314076
parent576c36310413f55a282838588f60bc639de8dd59 (diff)
update translations for LibreOffice 4.1 rc3
Change-Id: Ic57daddcdc6829d2565319ffc3922887f4c56501
Diffstat
-rw-r--r--source/am/helpcontent2/source/auxiliary.po10
-rw-r--r--source/am/helpcontent2/source/text/sbasic/guide.po18
-rw-r--r--source/am/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/am/helpcontent2/source/text/sbasic/shared/01.po18
-rw-r--r--source/am/helpcontent2/source/text/scalc.po32
-rw-r--r--source/am/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/am/helpcontent2/source/text/scalc/02.po40
-rw-r--r--source/am/helpcontent2/source/text/scalc/05.po62
-rw-r--r--source/am/helpcontent2/source/text/schart.po8
-rw-r--r--source/am/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/am/helpcontent2/source/text/schart/01.po114
-rw-r--r--source/am/helpcontent2/source/text/schart/04.po10
-rw-r--r--source/am/helpcontent2/source/text/sdraw.po16
-rw-r--r--source/am/helpcontent2/source/text/sdraw/guide.po20
-rw-r--r--source/am/helpcontent2/source/text/shared.po28
-rw-r--r--source/am/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/am/helpcontent2/source/text/shared/02.po62
-rw-r--r--source/am/helpcontent2/source/text/shared/04.po108
-rw-r--r--source/am/helpcontent2/source/text/shared/05.po60
-rw-r--r--source/am/helpcontent2/source/text/shared/autokorr.po6
-rw-r--r--source/am/helpcontent2/source/text/shared/autopi.po206
-rw-r--r--source/am/helpcontent2/source/text/shared/explorer/database.po16
-rw-r--r--source/am/helpcontent2/source/text/shared/guide.po16
-rw-r--r--source/am/helpcontent2/source/text/shared/optionen.po13
-rw-r--r--source/am/helpcontent2/source/text/simpress.po40
-rw-r--r--source/am/helpcontent2/source/text/simpress/01.po9
-rw-r--r--source/am/helpcontent2/source/text/simpress/02.po36
-rw-r--r--source/am/helpcontent2/source/text/simpress/04.po20
-rw-r--r--source/am/helpcontent2/source/text/simpress/guide.po290
-rw-r--r--source/am/helpcontent2/source/text/smath.po12
-rw-r--r--source/am/helpcontent2/source/text/smath/00.po32
-rw-r--r--source/am/helpcontent2/source/text/smath/01.po262
-rw-r--r--source/am/helpcontent2/source/text/smath/04.po12
-rw-r--r--source/am/helpcontent2/source/text/smath/guide.po16
-rw-r--r--source/am/helpcontent2/source/text/swriter.po22
-rw-r--r--source/am/helpcontent2/source/text/swriter/01.po142
-rw-r--r--source/am/helpcontent2/source/text/swriter/02.po34
-rw-r--r--source/am/helpcontent2/source/text/swriter/04.po10
-rw-r--r--source/am/helpcontent2/source/text/swriter/guide.po116
-rw-r--r--source/am/svx/source/dialog.po8
-rw-r--r--source/am/sw/source/ui/app.po8
-rw-r--r--source/an/android/sdremote/res/values.po16
-rw-r--r--source/an/basctl/source/basicide.po24
-rw-r--r--source/an/basctl/source/dlged.po2
-rw-r--r--source/an/chart2/source/controller/dialogs.po69
-rw-r--r--source/an/chart2/uiconfig/ui.po10
-rw-r--r--source/an/connectivity/source/resource.po1
-rw-r--r--source/an/cui/source/customize.po9
-rw-r--r--source/an/cui/source/dialogs.po76
-rw-r--r--source/an/cui/source/options.po52
-rw-r--r--source/an/cui/source/tabpages.po119
-rw-r--r--source/an/cui/uiconfig/ui.po249
-rw-r--r--source/an/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/an/dbaccess/source/ui/app.po3
-rw-r--r--source/an/dbaccess/source/ui/browser.po2
-rw-r--r--source/an/dbaccess/source/ui/dlg.po28
-rw-r--r--source/an/dbaccess/source/ui/inc.po2
-rw-r--r--source/an/dbaccess/source/ui/misc.po1
-rw-r--r--source/an/dbaccess/source/ui/querydesign.po3
-rw-r--r--source/an/dbaccess/source/ui/relationdesign.po1
-rw-r--r--source/an/dbaccess/source/ui/tabledesign.po10
-rw-r--r--source/an/dbaccess/uiconfig/ui.po13
-rw-r--r--source/an/desktop/source/deployment/gui.po5
-rw-r--r--source/an/desktop/source/deployment/registry/help.po1
-rw-r--r--source/an/dictionaries/hu_HU/dialog.po1
-rw-r--r--source/an/dictionaries/is.po6
-rw-r--r--source/an/editeng/source/editeng.po2
-rw-r--r--source/an/editeng/source/items.po15
-rw-r--r--source/an/extensions/source/abpilot.po3
-rw-r--r--source/an/extensions/source/bibliography.po11
-rw-r--r--source/an/extensions/source/dbpilots.po7
-rw-r--r--source/an/extensions/source/propctrlr.po48
-rw-r--r--source/an/extensions/source/scanner.po5
-rw-r--r--source/an/extensions/source/update/check.po1
-rw-r--r--source/an/extensions/uiconfig.po6
-rw-r--r--source/an/extras/source/gallery/share.po6
-rw-r--r--source/an/filter/source/config/fragments/filters.po5
-rw-r--r--source/an/filter/source/pdf.po4
-rw-r--r--source/an/filter/source/xsltdialog.po3
-rw-r--r--source/an/filter/uiconfig/ui.po4
-rw-r--r--source/an/forms/source/resource.po3
-rw-r--r--source/an/formula/source/core/resource.po3
-rw-r--r--source/an/formula/source/ui/dlg.po14
-rw-r--r--source/an/fpicker/source/office.po3
-rw-r--r--source/an/framework/source/classes.po2
-rw-r--r--source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po32
-rw-r--r--source/an/librelogo/source/pythonpath.po12
-rw-r--r--source/an/nlpsolver/src/locale.po5
-rw-r--r--source/an/officecfg/registry/data/org/openoffice/Office.po1356
-rw-r--r--source/an/officecfg/registry/data/org/openoffice/Office/UI.po3055
-rw-r--r--source/an/officecfg/registry/data/org/openoffice/TypeDetection.po6
-rw-r--r--source/an/padmin/source.po11
-rw-r--r--source/an/padmin/uiconfig/ui.po22
-rw-r--r--source/an/reportbuilder/java/org/libreoffice/report/function/metadata.po6
-rw-r--r--source/an/reportdesign/source/ui/dlg.po34
-rw-r--r--source/an/reportdesign/source/ui/inspection.po10
-rw-r--r--source/an/reportdesign/source/ui/report.po10
-rw-r--r--source/an/sc/source/ui/dbgui.po6
-rw-r--r--source/an/sc/source/ui/drawfunc.po6
-rw-r--r--source/an/sc/source/ui/miscdlgs.po16
-rw-r--r--source/an/sc/source/ui/navipi.po3
-rw-r--r--source/an/sc/source/ui/pagedlg.po4
-rw-r--r--source/an/sc/source/ui/sidebar.po6
-rw-r--r--source/an/sc/source/ui/src.po3035
-rw-r--r--source/an/sc/uiconfig/scalc/ui.po399
-rw-r--r--source/an/scaddins/source/analysis.po49
-rw-r--r--source/an/scaddins/source/datefunc.po7
-rw-r--r--source/an/scp2/source/accessories.po3
-rw-r--r--source/an/scp2/source/calc.po3
-rw-r--r--source/an/scp2/source/draw.po2
-rw-r--r--source/an/scp2/source/graphicfilter.po1
-rw-r--r--source/an/scp2/source/impress.po2
-rw-r--r--source/an/scp2/source/math.po1
-rw-r--r--source/an/scp2/source/ooo.po4
-rw-r--r--source/an/scp2/source/writer.po3
-rw-r--r--source/an/sd/source/core.po16
-rw-r--r--source/an/sd/source/filter/html.po4
-rw-r--r--source/an/sd/source/ui/animations.po14
-rw-r--r--source/an/sd/source/ui/annotations.po1
-rw-r--r--source/an/sd/source/ui/app.po81
-rw-r--r--source/an/sd/source/ui/dlg.po54
-rw-r--r--source/an/sd/source/ui/slideshow.po1
-rw-r--r--source/an/sd/source/ui/view.po9
-rw-r--r--source/an/sd/uiconfig/sdraw/ui.po16
-rw-r--r--source/an/sd/uiconfig/simpress/ui.po13
-rw-r--r--source/an/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po2
-rw-r--r--source/an/sfx2/source/appl.po18
-rw-r--r--source/an/sfx2/source/dialog.po27
-rw-r--r--source/an/sfx2/source/doc.po23
-rw-r--r--source/an/sfx2/source/sidebar.po6
-rw-r--r--source/an/sfx2/source/view.po1
-rw-r--r--source/an/sfx2/uiconfig/ui.po30
-rw-r--r--source/an/shell/source/win32/shlxthandler/res.po8
-rw-r--r--source/an/starmath/source.po73
-rw-r--r--source/an/starmath/uiconfig/smath/ui.po1
-rw-r--r--source/an/svl/source/misc.po5
-rw-r--r--source/an/svtools/source/contnr.po9
-rw-r--r--source/an/svtools/source/control.po5
-rw-r--r--source/an/svtools/source/dialogs.po5
-rw-r--r--source/an/svtools/source/misc.po12
-rw-r--r--source/an/svtools/uiconfig/ui.po17
-rw-r--r--source/an/svx/inc.po12
-rw-r--r--source/an/svx/source/accessibility.po2
-rw-r--r--source/an/svx/source/dialog.po164
-rw-r--r--source/an/svx/source/engine3d.po5
-rw-r--r--source/an/svx/source/fmcomp.po4
-rw-r--r--source/an/svx/source/form.po31
-rw-r--r--source/an/svx/source/gallery2.po16
-rw-r--r--source/an/svx/source/items.po15
-rw-r--r--source/an/svx/source/sidebar.po6
-rw-r--r--source/an/svx/source/sidebar/area.po6
-rw-r--r--source/an/svx/source/sidebar/graphic.po6
-rw-r--r--source/an/svx/source/sidebar/line.po6
-rw-r--r--source/an/svx/source/sidebar/paragraph.po6
-rw-r--r--source/an/svx/source/sidebar/possize.po6
-rw-r--r--source/an/svx/source/sidebar/text.po6
-rw-r--r--source/an/svx/source/src.po1
-rw-r--r--source/an/svx/source/stbctrls.po2
-rw-r--r--source/an/svx/source/svdraw.po34
-rw-r--r--source/an/svx/source/tbxctrls.po8
-rw-r--r--source/an/svx/source/unodialogs/textconversiondlgs.po16
-rw-r--r--source/an/svx/uiconfig/ui.po38
-rw-r--r--source/an/sw/source/core/undo.po19
-rw-r--r--source/an/sw/source/ui/app.po47
-rw-r--r--source/an/sw/source/ui/chrdlg.po12
-rw-r--r--source/an/sw/source/ui/config.po36
-rw-r--r--source/an/sw/source/ui/dbui.po39
-rw-r--r--source/an/sw/source/ui/dialog.po17
-rw-r--r--source/an/sw/source/ui/docvw.po6
-rw-r--r--source/an/sw/source/ui/envelp.po37
-rw-r--r--source/an/sw/source/ui/fldui.po74
-rw-r--r--source/an/sw/source/ui/fmtui.po18
-rw-r--r--source/an/sw/source/ui/frmdlg.po46
-rw-r--r--source/an/sw/source/ui/globdoc.po1
-rw-r--r--source/an/sw/source/ui/index.po27
-rw-r--r--source/an/sw/source/ui/misc.po7
-rw-r--r--source/an/sw/source/ui/ribbar.po16
-rw-r--r--source/an/sw/source/ui/shells.po15
-rw-r--r--source/an/sw/source/ui/sidebar.po6
-rw-r--r--source/an/sw/source/ui/uiview.po6
-rw-r--r--source/an/sw/source/ui/utlui.po81
-rw-r--r--source/an/sw/source/ui/web.po3
-rw-r--r--source/an/sw/uiconfig/swriter/ui.po208
-rw-r--r--source/an/swext/mediawiki/help.po2
-rw-r--r--source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po1
-rw-r--r--source/an/sysui/desktop/share.po2
-rw-r--r--source/an/uui/source.po4
-rw-r--r--source/an/uui/uiconfig/ui.po10
-rw-r--r--source/an/vcl/qa/cppunit/builder.po9
-rw-r--r--source/an/vcl/source/src.po23
-rw-r--r--source/an/vcl/uiconfig/ui.po14
-rw-r--r--source/an/wizards/source/euro.po9
-rw-r--r--source/an/wizards/source/formwizard.po77
-rw-r--r--source/an/wizards/source/importwizard.po4
-rw-r--r--source/an/wizards/source/template.po7
-rw-r--r--source/an/xmlsecurity/source/dialogs.po2
-rw-r--r--source/an/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/ar/android/sdremote/res/values.po10
-rw-r--r--source/ar/cui/source/dialogs.po10
-rw-r--r--source/ar/cui/source/options.po10
-rw-r--r--source/ar/cui/uiconfig/ui.po30
-rw-r--r--source/ar/dbaccess/uiconfig/ui.po12
-rw-r--r--source/ar/desktop/source/deployment/gui.po35
-rw-r--r--source/ar/desktop/source/deployment/unopkg.po10
-rw-r--r--source/ar/desktop/uiconfig/ui.po10
-rw-r--r--source/ar/dictionaries/is.po10
-rw-r--r--source/ar/extensions/source/dbpilots.po8
-rw-r--r--source/ar/extensions/source/propctrlr.po10
-rw-r--r--source/ar/extensions/uiconfig.po10
-rw-r--r--source/ar/filter/source/pdf.po10
-rw-r--r--source/ar/filter/source/t602.po8
-rw-r--r--source/ar/formula/source/core/resource.po16
-rw-r--r--source/ar/framework/source/classes.po8
-rw-r--r--source/ar/instsetoo_native/inc_openoffice/windows/msi_languages.po22
-rw-r--r--source/ar/librelogo/source/pythonpath.po14
-rw-r--r--source/ar/nlpsolver/src/locale.po8
-rw-r--r--source/ar/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/ar/officecfg/registry/data/org/openoffice/Office/UI.po32
-rw-r--r--source/ar/readlicense_oo/docs.po8
-rw-r--r--source/ar/reportdesign/source/core/resource.po8
-rw-r--r--source/ar/reportdesign/source/ui/dlg.po16
-rw-r--r--source/ar/reportdesign/source/ui/inspection.po12
-rw-r--r--source/ar/reportdesign/source/ui/report.po32
-rw-r--r--source/ar/sc/source/ui/src.po22
-rw-r--r--source/ar/sc/source/ui/styleui.po8
-rw-r--r--source/ar/sc/uiconfig/scalc/ui.po44
-rw-r--r--source/ar/scp2/source/extensions.po10
-rw-r--r--source/ar/sd/source/core.po8
-rw-r--r--source/ar/sd/source/ui/app.po10
-rw-r--r--source/ar/sd/source/ui/dlg.po16
-rw-r--r--source/ar/sd/source/ui/table.po8
-rw-r--r--source/ar/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po10
-rw-r--r--source/ar/setup_native/source/mac.po8
-rw-r--r--source/ar/sfx2/source/dialog.po8
-rw-r--r--source/ar/sfx2/source/doc.po8
-rw-r--r--source/ar/svx/inc.po10
-rw-r--r--source/ar/svx/source/dialog.po13
-rw-r--r--source/ar/svx/uiconfig/ui.po8
-rw-r--r--source/ar/sw/source/core/undo.po10
-rw-r--r--source/ar/sw/source/ui/app.po8
-rw-r--r--source/ar/sw/source/ui/chrdlg.po12
-rw-r--r--source/ar/sw/source/ui/config.po18
-rw-r--r--source/ar/sw/source/ui/dbui.po12
-rw-r--r--source/ar/sw/source/ui/docvw.po18
-rw-r--r--source/ar/sw/source/ui/fldui.po8
-rw-r--r--source/ar/sw/source/ui/fmtui.po8
-rw-r--r--source/ar/sw/source/ui/index.po10
-rw-r--r--source/ar/sw/source/ui/shells.po8
-rw-r--r--source/ar/sw/source/ui/utlui.po28
-rw-r--r--source/ar/sw/uiconfig/swriter/ui.po21
-rw-r--r--source/ar/swext/mediawiki/help.po14
-rw-r--r--source/ar/uui/source.po8
-rw-r--r--source/ar/vcl/source/src.po10
-rw-r--r--source/ar/wizards/source/euro.po8
-rw-r--r--source/ar/wizards/source/formwizard.po14
-rw-r--r--source/ar/wizards/source/template.po10
-rw-r--r--source/as/svx/source/dialog.po28
-rw-r--r--source/ast/dictionaries/is.po10
-rw-r--r--source/ast/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po10
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office.po16
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office/UI.po186
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/TypeDetection.po16
-rw-r--r--source/ast/readlicense_oo/docs.po24
-rw-r--r--source/ast/sc/source/ui/sidebar.po184
-rw-r--r--source/ast/sc/source/ui/src.po170
-rw-r--r--source/ast/sc/uiconfig/scalc/ui.po97
-rw-r--r--source/ast/scp2/source/extensions.po8
-rw-r--r--source/ast/scp2/source/ooo.po18
-rw-r--r--source/ast/sd/source/core.po8
-rw-r--r--source/ast/sd/source/ui/app.po10
-rw-r--r--source/ast/sd/source/ui/dlg.po26
-rw-r--r--source/ast/sd/source/ui/view.po18
-rw-r--r--source/ast/sd/uiconfig/sdraw/ui.po8
-rw-r--r--source/ast/sd/uiconfig/simpress/ui.po46
-rw-r--r--source/ast/sfx2/source/appl.po8
-rw-r--r--source/ast/sfx2/source/dialog.po14
-rw-r--r--source/ast/sfx2/source/doc.po10
-rw-r--r--source/ast/sfx2/source/sidebar.po18
-rw-r--r--source/ast/sfx2/uiconfig/ui.po59
-rw-r--r--source/ast/starmath/source.po34
-rw-r--r--source/ast/svx/source/dialog.po196
-rw-r--r--source/ast/svx/source/sidebar/area.po72
-rw-r--r--source/ast/svx/source/sidebar/graphic.po32
-rw-r--r--source/ast/svx/source/sidebar/line.po68
-rw-r--r--source/ast/svx/source/sidebar/paragraph.po180
-rw-r--r--source/ast/svx/source/sidebar/possize.po44
-rw-r--r--source/ast/svx/source/sidebar/text.po74
-rw-r--r--source/ast/sw/uiconfig/swriter/ui.po20
-rw-r--r--source/ast/wizards/source/importwizard.po10
-rw-r--r--source/be/accessibility/source/helper.po2
-rw-r--r--source/be/android/sdremote/res/values.po85
-rw-r--r--source/be/avmedia/source/framework.po2
-rw-r--r--source/be/avmedia/source/viewer.po2
-rw-r--r--source/be/basctl/source/basicide.po22
-rw-r--r--source/be/basctl/source/dlged.po2
-rw-r--r--source/be/basctl/uiconfig/basicide/ui.po6
-rw-r--r--source/be/basic/source/classes.po2
-rw-r--r--source/be/basic/source/sbx.po2
-rw-r--r--source/be/chart2/source/controller/dialogs.po54
-rw-r--r--source/be/chart2/uiconfig/ui.po34
-rw-r--r--source/be/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/connectivity/source/resource.po2
-rw-r--r--source/be/cui/source/customize.po8
-rw-r--r--source/be/cui/source/dialogs.po111
-rw-r--r--source/be/cui/source/options.po44
-rw-r--r--source/be/cui/source/tabpages.po258
-rw-r--r--source/be/cui/uiconfig/ui.po1007
-rw-r--r--source/be/dbaccess/source/core/resource.po2
-rw-r--r--source/be/dbaccess/source/ext/macromigration.po4
-rw-r--r--source/be/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/be/dbaccess/source/ui/app.po3
-rw-r--r--source/be/dbaccess/source/ui/browser.po2
-rw-r--r--source/be/dbaccess/source/ui/control.po2
-rw-r--r--source/be/dbaccess/source/ui/dlg.po52
-rw-r--r--source/be/dbaccess/source/ui/inc.po2
-rw-r--r--source/be/dbaccess/source/ui/misc.po7
-rw-r--r--source/be/dbaccess/source/ui/querydesign.po3
-rw-r--r--source/be/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/be/dbaccess/source/ui/tabledesign.po4
-rw-r--r--source/be/dbaccess/source/ui/uno.po2
-rw-r--r--source/be/dbaccess/uiconfig/ui.po54
-rw-r--r--source/be/desktop/source/app.po9
-rw-r--r--source/be/desktop/source/deployment/gui.po50
-rw-r--r--source/be/desktop/source/deployment/manager.po2
-rw-r--r--source/be/desktop/source/deployment/misc.po2
-rw-r--r--source/be/desktop/source/deployment/registry.po2
-rw-r--r--source/be/desktop/source/deployment/registry/component.po2
-rw-r--r--source/be/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/be/desktop/source/deployment/registry/help.po2
-rw-r--r--source/be/desktop/source/deployment/registry/package.po2
-rw-r--r--source/be/desktop/source/deployment/registry/script.po2
-rw-r--r--source/be/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/be/desktop/source/deployment/unopkg.po6
-rw-r--r--source/be/desktop/uiconfig/ui.po4
-rw-r--r--source/be/dictionaries/af_ZA.po2
-rw-r--r--source/be/dictionaries/an_ES.po2
-rw-r--r--source/be/dictionaries/ar.po2
-rw-r--r--source/be/dictionaries/be_BY.po2
-rw-r--r--source/be/dictionaries/bg_BG.po2
-rw-r--r--source/be/dictionaries/bn_BD.po2
-rw-r--r--source/be/dictionaries/br_FR.po2
-rw-r--r--source/be/dictionaries/bs_BA.po10
-rw-r--r--source/be/dictionaries/ca.po2
-rw-r--r--source/be/dictionaries/cs_CZ.po2
-rw-r--r--source/be/dictionaries/da_DK.po2
-rw-r--r--source/be/dictionaries/de.po2
-rw-r--r--source/be/dictionaries/el_GR.po2
-rw-r--r--source/be/dictionaries/en.po2
-rw-r--r--source/be/dictionaries/en/dialog.po35
-rw-r--r--source/be/dictionaries/en/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/be/dictionaries/es.po2
-rw-r--r--source/be/dictionaries/et_EE.po2
-rw-r--r--source/be/dictionaries/fr_FR.po2
-rw-r--r--source/be/dictionaries/gd_GB.po2
-rw-r--r--source/be/dictionaries/gl.po2
-rw-r--r--source/be/dictionaries/gu_IN.po2
-rw-r--r--source/be/dictionaries/he_IL.po2
-rw-r--r--source/be/dictionaries/hi_IN.po2
-rw-r--r--source/be/dictionaries/hr_HR.po2
-rw-r--r--source/be/dictionaries/hu_HU.po2
-rw-r--r--source/be/dictionaries/hu_HU/dialog.po22
-rw-r--r--source/be/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/be/dictionaries/is.po10
-rw-r--r--source/be/dictionaries/it_IT.po2
-rw-r--r--source/be/dictionaries/ku_TR.po2
-rw-r--r--source/be/dictionaries/lt_LT.po2
-rw-r--r--source/be/dictionaries/lv_LV.po2
-rw-r--r--source/be/dictionaries/ne_NP.po2
-rw-r--r--source/be/dictionaries/nl_NL.po2
-rw-r--r--source/be/dictionaries/no.po4
-rw-r--r--source/be/dictionaries/oc_FR.po2
-rw-r--r--source/be/dictionaries/pl_PL.po2
-rw-r--r--source/be/dictionaries/pt_BR.po2
-rw-r--r--source/be/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po5
-rw-r--r--source/be/dictionaries/pt_PT.po2
-rw-r--r--source/be/dictionaries/ro.po2
-rw-r--r--source/be/dictionaries/ru_RU.po2
-rw-r--r--source/be/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/be/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po4
-rw-r--r--source/be/dictionaries/si_LK.po2
-rw-r--r--source/be/dictionaries/sk_SK.po2
-rw-r--r--source/be/dictionaries/sl_SI.po2
-rw-r--r--source/be/dictionaries/sr.po2
-rw-r--r--source/be/dictionaries/sv_SE.po2
-rw-r--r--source/be/dictionaries/sw_TZ.po2
-rw-r--r--source/be/dictionaries/te_IN.po2
-rw-r--r--source/be/dictionaries/th_TH.po2
-rw-r--r--source/be/dictionaries/uk_UA.po2
-rw-r--r--source/be/dictionaries/vi.po2
-rw-r--r--source/be/dictionaries/zu_ZA.po2
-rw-r--r--source/be/editeng/source/accessibility.po2
-rw-r--r--source/be/editeng/source/editeng.po6
-rw-r--r--source/be/editeng/source/items.po20
-rw-r--r--source/be/editeng/source/misc.po2
-rw-r--r--source/be/editeng/source/outliner.po2
-rw-r--r--source/be/extensions/source/abpilot.po2
-rw-r--r--source/be/extensions/source/bibliography.po2
-rw-r--r--source/be/extensions/source/dbpilots.po2
-rw-r--r--source/be/extensions/source/propctrlr.po10
-rw-r--r--source/be/extensions/source/scanner.po2
-rw-r--r--source/be/extensions/source/update/check.po2
-rw-r--r--source/be/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/be/extensions/uiconfig.po34
-rw-r--r--source/be/extras/source/gallery/share.po30
-rw-r--r--source/be/filter/source/config/fragments/filters.po2
-rw-r--r--source/be/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/be/filter/source/config/fragments/types.po2
-rw-r--r--source/be/filter/source/flash.po2
-rw-r--r--source/be/filter/source/graphicfilter/eps.po2
-rw-r--r--source/be/filter/source/pdf.po8
-rw-r--r--source/be/filter/source/t602.po2
-rw-r--r--source/be/filter/source/xsltdialog.po6
-rw-r--r--source/be/filter/uiconfig/ui.po8
-rw-r--r--source/be/forms/source/resource.po2
-rw-r--r--source/be/formula/source/core/resource.po10
-rw-r--r--source/be/formula/source/ui/dlg.po2
-rw-r--r--source/be/fpicker/source/office.po9
-rw-r--r--source/be/framework/source/classes.po6
-rw-r--r--source/be/framework/source/services.po2
-rw-r--r--source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po59
-rw-r--r--source/be/librelogo/source/pythonpath.po46
-rw-r--r--source/be/mysqlc/source.po2
-rw-r--r--source/be/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/be/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po47
-rw-r--r--source/be/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po8
-rw-r--r--source/be/nlpsolver/src/locale.po28
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office.po716
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po1781
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/TypeDetection.po16
-rw-r--r--source/be/padmin/source.po16
-rw-r--r--source/be/padmin/uiconfig/ui.po77
-rw-r--r--source/be/readlicense_oo/docs.po138
-rw-r--r--source/be/reportbuilder/java/org/libreoffice/report/function/metadata.po20
-rw-r--r--source/be/reportdesign/source/core/resource.po5
-rw-r--r--source/be/reportdesign/source/ui/dlg.po31
-rw-r--r--source/be/reportdesign/source/ui/inspection.po12
-rw-r--r--source/be/reportdesign/source/ui/report.po9
-rw-r--r--source/be/sc/source/core/src.po2
-rw-r--r--source/be/sc/source/ui/cctrl.po2
-rw-r--r--source/be/sc/source/ui/dbgui.po32
-rw-r--r--source/be/sc/source/ui/docshell.po2
-rw-r--r--source/be/sc/source/ui/drawfunc.po11
-rw-r--r--source/be/sc/source/ui/formdlg.po2
-rw-r--r--source/be/sc/source/ui/miscdlgs.po30
-rw-r--r--source/be/sc/source/ui/navipi.po8
-rw-r--r--source/be/sc/source/ui/optdlg.po2
-rw-r--r--source/be/sc/source/ui/pagedlg.po8
-rw-r--r--source/be/sc/source/ui/sidebar.po263
-rw-r--r--source/be/sc/source/ui/src.po1492
-rw-r--r--source/be/sc/source/ui/styleui.po8
-rw-r--r--source/be/sc/uiconfig/scalc/ui.po521
-rw-r--r--source/be/scaddins/source/analysis.po482
-rw-r--r--source/be/scaddins/source/datefunc.po15
-rw-r--r--source/be/scaddins/source/pricing.po63
-rw-r--r--source/be/sccomp/source/solver.po2
-rw-r--r--source/be/scp2/source/accessories.po834
-rw-r--r--source/be/scp2/source/activex.po2
-rw-r--r--source/be/scp2/source/base.po2
-rw-r--r--source/be/scp2/source/calc.po2
-rw-r--r--source/be/scp2/source/draw.po2
-rw-r--r--source/be/scp2/source/extensions.po37
-rw-r--r--source/be/scp2/source/gnome.po2
-rw-r--r--source/be/scp2/source/graphicfilter.po2
-rw-r--r--source/be/scp2/source/impress.po2
-rw-r--r--source/be/scp2/source/kde.po2
-rw-r--r--source/be/scp2/source/math.po2
-rw-r--r--source/be/scp2/source/onlineupdate.po2
-rw-r--r--source/be/scp2/source/ooo.po451
-rw-r--r--source/be/scp2/source/python.po2
-rw-r--r--source/be/scp2/source/quickstart.po2
-rw-r--r--source/be/scp2/source/sdkoo.po2
-rw-r--r--source/be/scp2/source/smoketest.po2
-rw-r--r--source/be/scp2/source/stdlibs.po2
-rw-r--r--source/be/scp2/source/tde.po2
-rw-r--r--source/be/scp2/source/winexplorerext.po2
-rw-r--r--source/be/scp2/source/writer.po2
-rw-r--r--source/be/scp2/source/xsltfilter.po2
-rw-r--r--source/be/sd/source/core.po17
-rw-r--r--source/be/sd/source/filter/html.po3
-rw-r--r--source/be/sd/source/ui/accessibility.po3
-rw-r--r--source/be/sd/source/ui/animations.po33
-rw-r--r--source/be/sd/source/ui/annotations.po9
-rw-r--r--source/be/sd/source/ui/app.po67
-rw-r--r--source/be/sd/source/ui/dlg.po95
-rw-r--r--source/be/sd/source/ui/slideshow.po2
-rw-r--r--source/be/sd/source/ui/table.po3
-rw-r--r--source/be/sd/source/ui/view.po32
-rw-r--r--source/be/sd/uiconfig/sdraw/ui.po57
-rw-r--r--source/be/sd/uiconfig/simpress/ui.po119
-rw-r--r--source/be/sdext/source/minimizer.po2
-rw-r--r--source/be/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/be/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po6
-rw-r--r--source/be/setup_native/source/mac.po6
-rw-r--r--source/be/sfx2/source/appl.po15
-rw-r--r--source/be/sfx2/source/bastyp.po2
-rw-r--r--source/be/sfx2/source/control.po2
-rw-r--r--source/be/sfx2/source/dialog.po24
-rw-r--r--source/be/sfx2/source/doc.po49
-rw-r--r--source/be/sfx2/source/menu.po2
-rw-r--r--source/be/sfx2/source/sidebar.po17
-rw-r--r--source/be/sfx2/source/view.po3
-rw-r--r--source/be/sfx2/uiconfig/ui.po163
-rw-r--r--source/be/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/be/starmath/source.po42
-rw-r--r--source/be/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/be/svl/source/misc.po15
-rw-r--r--source/be/svtools/source/contnr.po16
-rw-r--r--source/be/svtools/source/control.po8
-rw-r--r--source/be/svtools/source/dialogs.po4
-rw-r--r--source/be/svtools/source/java.po14
-rw-r--r--source/be/svtools/source/misc.po63
-rw-r--r--source/be/svtools/source/toolpanel.po2
-rw-r--r--source/be/svtools/uiconfig/ui.po53
-rw-r--r--source/be/svx/inc.po13
-rw-r--r--source/be/svx/source/accessibility.po2
-rw-r--r--source/be/svx/source/core.po3
-rw-r--r--source/be/svx/source/dialog.po237
-rw-r--r--source/be/svx/source/engine3d.po45
-rw-r--r--source/be/svx/source/fmcomp.po2
-rw-r--r--source/be/svx/source/form.po42
-rw-r--r--source/be/svx/source/gallery2.po26
-rw-r--r--source/be/svx/source/items.po16
-rw-r--r--source/be/svx/source/sidebar.po11
-rw-r--r--source/be/svx/source/sidebar/area.po85
-rw-r--r--source/be/svx/source/sidebar/graphic.po44
-rw-r--r--source/be/svx/source/sidebar/line.po68
-rw-r--r--source/be/svx/source/sidebar/paragraph.po180
-rw-r--r--source/be/svx/source/sidebar/possize.po56
-rw-r--r--source/be/svx/source/sidebar/text.po95
-rw-r--r--source/be/svx/source/src.po18
-rw-r--r--source/be/svx/source/stbctrls.po5
-rw-r--r--source/be/svx/source/svdraw.po78
-rw-r--r--source/be/svx/source/table.po2
-rw-r--r--source/be/svx/source/tbxctrls.po22
-rw-r--r--source/be/svx/source/toolbars.po2
-rw-r--r--source/be/svx/source/unodialogs/textconversiondlgs.po59
-rw-r--r--source/be/svx/uiconfig/ui.po220
-rw-r--r--source/be/sw/source/core/layout.po2
-rw-r--r--source/be/sw/source/core/undo.po10
-rw-r--r--source/be/sw/source/core/unocore.po2
-rw-r--r--source/be/sw/source/ui/app.po43
-rw-r--r--source/be/sw/source/ui/chrdlg.po12
-rw-r--r--source/be/sw/source/ui/config.po36
-rw-r--r--source/be/sw/source/ui/dbui.po26
-rw-r--r--source/be/sw/source/ui/dialog.po16
-rw-r--r--source/be/sw/source/ui/dochdl.po2
-rw-r--r--source/be/sw/source/ui/docvw.po2
-rw-r--r--source/be/sw/source/ui/envelp.po34
-rw-r--r--source/be/sw/source/ui/fldui.po74
-rw-r--r--source/be/sw/source/ui/fmtui.po15
-rw-r--r--source/be/sw/source/ui/frmdlg.po31
-rw-r--r--source/be/sw/source/ui/globdoc.po2
-rw-r--r--source/be/sw/source/ui/index.po31
-rw-r--r--source/be/sw/source/ui/lingu.po8
-rw-r--r--source/be/sw/source/ui/misc.po8
-rw-r--r--source/be/sw/source/ui/ribbar.po2
-rw-r--r--source/be/sw/source/ui/shells.po4
-rw-r--r--source/be/sw/source/ui/sidebar.po140
-rw-r--r--source/be/sw/source/ui/smartmenu.po2
-rw-r--r--source/be/sw/source/ui/table.po2
-rw-r--r--source/be/sw/source/ui/uiview.po2
-rw-r--r--source/be/sw/source/ui/utlui.po76
-rw-r--r--source/be/sw/source/ui/web.po2
-rw-r--r--source/be/sw/source/ui/wrtsh.po2
-rw-r--r--source/be/sw/uiconfig/swriter/ui.po360
-rw-r--r--source/be/swext/mediawiki/help.po17
-rw-r--r--source/be/swext/mediawiki/src.po2
-rw-r--r--source/be/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/be/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/be/sysui/desktop/share.po13
-rw-r--r--source/be/tubes/uiconfig/ui.po2
-rw-r--r--source/be/uui/source.po14
-rw-r--r--source/be/uui/uiconfig/ui.po22
-rw-r--r--source/be/vcl/qa/cppunit/builder.po102
-rw-r--r--source/be/vcl/source/edit.po2
-rw-r--r--source/be/vcl/source/src.po18
-rw-r--r--source/be/vcl/uiconfig/ui.po62
-rw-r--r--source/be/wizards/source/euro.po2
-rw-r--r--source/be/wizards/source/formwizard.po129
-rw-r--r--source/be/wizards/source/importwizard.po6
-rw-r--r--source/be/wizards/source/template.po2
-rw-r--r--source/be/xmlsecurity/source/component.po2
-rw-r--r--source/be/xmlsecurity/source/dialogs.po2
-rw-r--r--source/be/xmlsecurity/uiconfig/ui.po81
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/guide.po10
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/bg/helpcontent2/source/text/scalc/00.po23
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/bg/helpcontent2/source/text/scalc/guide.po138
-rw-r--r--source/bg/helpcontent2/source/text/swriter/01.po50
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/br/cui/uiconfig/ui.po10
-rw-r--r--source/ca-XV/accessibility/source/helper.po10
-rw-r--r--source/ca-XV/android/sdremote/res/values.po39
-rw-r--r--source/ca-XV/avmedia/source/framework.po2
-rw-r--r--source/ca-XV/avmedia/source/viewer.po2
-rw-r--r--source/ca-XV/basctl/source/basicide.po2
-rw-r--r--source/ca-XV/basctl/source/dlged.po2
-rw-r--r--source/ca-XV/basctl/uiconfig/basicide/ui.po2
-rw-r--r--source/ca-XV/basic/source/classes.po2
-rw-r--r--source/ca-XV/basic/source/sbx.po2
-rw-r--r--source/ca-XV/chart2/source/controller/dialogs.po12
-rw-r--r--source/ca-XV/chart2/uiconfig/ui.po34
-rw-r--r--source/ca-XV/connectivity/registry/ado/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/calc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/flat/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/kab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/macab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/mork/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/connectivity/source/resource.po2
-rw-r--r--source/ca-XV/cui/source/customize.po10
-rw-r--r--source/ca-XV/cui/source/dialogs.po8
-rw-r--r--source/ca-XV/cui/source/options.po8
-rw-r--r--source/ca-XV/cui/source/tabpages.po10
-rw-r--r--source/ca-XV/cui/uiconfig/ui.po310
-rw-r--r--source/ca-XV/dbaccess/source/core/resource.po2
-rw-r--r--source/ca-XV/dbaccess/source/ext/macromigration.po2
-rw-r--r--source/ca-XV/dbaccess/source/sdbtools/resource.po2
-rw-r--r--source/ca-XV/dbaccess/source/ui/app.po2
-rw-r--r--source/ca-XV/dbaccess/source/ui/browser.po2
-rw-r--r--source/ca-XV/dbaccess/source/ui/control.po2
-rw-r--r--source/ca-XV/dbaccess/source/ui/dlg.po2
-rw-r--r--source/ca-XV/dbaccess/source/ui/inc.po2
-rw-r--r--source/ca-XV/dbaccess/source/ui/misc.po9
-rw-r--r--source/ca-XV/dbaccess/source/ui/querydesign.po2
-rw-r--r--source/ca-XV/dbaccess/source/ui/relationdesign.po2
-rw-r--r--source/ca-XV/dbaccess/source/ui/tabledesign.po2
-rw-r--r--source/ca-XV/dbaccess/source/ui/uno.po2
-rw-r--r--source/ca-XV/dbaccess/uiconfig/ui.po43
-rw-r--r--source/ca-XV/desktop/source/app.po13
-rw-r--r--source/ca-XV/desktop/source/deployment/gui.po54
-rw-r--r--source/ca-XV/desktop/source/deployment/manager.po2
-rw-r--r--source/ca-XV/desktop/source/deployment/misc.po2
-rw-r--r--source/ca-XV/desktop/source/deployment/registry.po2
-rw-r--r--source/ca-XV/desktop/source/deployment/registry/component.po2
-rw-r--r--source/ca-XV/desktop/source/deployment/registry/configuration.po2
-rw-r--r--source/ca-XV/desktop/source/deployment/registry/help.po2
-rw-r--r--source/ca-XV/desktop/source/deployment/registry/package.po2
-rw-r--r--source/ca-XV/desktop/source/deployment/registry/script.po2
-rw-r--r--source/ca-XV/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ca-XV/desktop/source/deployment/unopkg.po11
-rw-r--r--source/ca-XV/desktop/uiconfig/ui.po10
-rw-r--r--source/ca-XV/dictionaries/af_ZA.po2
-rw-r--r--source/ca-XV/dictionaries/an_ES.po2
-rw-r--r--source/ca-XV/dictionaries/ar.po2
-rw-r--r--source/ca-XV/dictionaries/be_BY.po2
-rw-r--r--source/ca-XV/dictionaries/bg_BG.po2
-rw-r--r--source/ca-XV/dictionaries/bn_BD.po2
-rw-r--r--source/ca-XV/dictionaries/br_FR.po2
-rw-r--r--source/ca-XV/dictionaries/bs_BA.po8
-rw-r--r--source/ca-XV/dictionaries/ca.po2
-rw-r--r--source/ca-XV/dictionaries/cs_CZ.po2
-rw-r--r--source/ca-XV/dictionaries/da_DK.po2
-rw-r--r--source/ca-XV/dictionaries/de.po2
-rw-r--r--source/ca-XV/dictionaries/el_GR.po2
-rw-r--r--source/ca-XV/dictionaries/en.po2
-rw-r--r--source/ca-XV/dictionaries/en/dialog.po2
-rw-r--r--source/ca-XV/dictionaries/en/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ca-XV/dictionaries/es.po2
-rw-r--r--source/ca-XV/dictionaries/et_EE.po2
-rw-r--r--source/ca-XV/dictionaries/fr_FR.po2
-rw-r--r--source/ca-XV/dictionaries/gd_GB.po2
-rw-r--r--source/ca-XV/dictionaries/gl.po2
-rw-r--r--source/ca-XV/dictionaries/gu_IN.po2
-rw-r--r--source/ca-XV/dictionaries/he_IL.po2
-rw-r--r--source/ca-XV/dictionaries/hi_IN.po2
-rw-r--r--source/ca-XV/dictionaries/hr_HR.po2
-rw-r--r--source/ca-XV/dictionaries/hu_HU.po2
-rw-r--r--source/ca-XV/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ca-XV/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ca-XV/dictionaries/is.po10
-rw-r--r--source/ca-XV/dictionaries/it_IT.po2
-rw-r--r--source/ca-XV/dictionaries/ku_TR.po2
-rw-r--r--source/ca-XV/dictionaries/lt_LT.po2
-rw-r--r--source/ca-XV/dictionaries/lv_LV.po2
-rw-r--r--source/ca-XV/dictionaries/ne_NP.po2
-rw-r--r--source/ca-XV/dictionaries/nl_NL.po2
-rw-r--r--source/ca-XV/dictionaries/no.po5
-rw-r--r--source/ca-XV/dictionaries/oc_FR.po2
-rw-r--r--source/ca-XV/dictionaries/pl_PL.po2
-rw-r--r--source/ca-XV/dictionaries/pt_BR.po8
-rw-r--r--source/ca-XV/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ca-XV/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ca-XV/dictionaries/pt_PT.po2
-rw-r--r--source/ca-XV/dictionaries/ro.po2
-rw-r--r--source/ca-XV/dictionaries/ru_RU.po2
-rw-r--r--source/ca-XV/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ca-XV/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ca-XV/dictionaries/si_LK.po2
-rw-r--r--source/ca-XV/dictionaries/sk_SK.po2
-rw-r--r--source/ca-XV/dictionaries/sl_SI.po2
-rw-r--r--source/ca-XV/dictionaries/sr.po2
-rw-r--r--source/ca-XV/dictionaries/sv_SE.po2
-rw-r--r--source/ca-XV/dictionaries/sw_TZ.po2
-rw-r--r--source/ca-XV/dictionaries/te_IN.po2
-rw-r--r--source/ca-XV/dictionaries/th_TH.po2
-rw-r--r--source/ca-XV/dictionaries/uk_UA.po2
-rw-r--r--source/ca-XV/dictionaries/vi.po2
-rw-r--r--source/ca-XV/dictionaries/zu_ZA.po2
-rw-r--r--source/ca-XV/editeng/source/accessibility.po2
-rw-r--r--source/ca-XV/editeng/source/editeng.po12
-rw-r--r--source/ca-XV/editeng/source/items.po12
-rw-r--r--source/ca-XV/editeng/source/misc.po2
-rw-r--r--source/ca-XV/editeng/source/outliner.po2
-rw-r--r--source/ca-XV/extensions/source/abpilot.po2
-rw-r--r--source/ca-XV/extensions/source/bibliography.po2
-rw-r--r--source/ca-XV/extensions/source/dbpilots.po2
-rw-r--r--source/ca-XV/extensions/source/propctrlr.po6
-rw-r--r--source/ca-XV/extensions/source/scanner.po2
-rw-r--r--source/ca-XV/extensions/source/update/check.po2
-rw-r--r--source/ca-XV/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ca-XV/extensions/uiconfig.po34
-rw-r--r--source/ca-XV/extras/source/gallery/share.po30
-rw-r--r--source/ca-XV/filter/source/config/fragments/filters.po2
-rw-r--r--source/ca-XV/filter/source/config/fragments/internalgraphicfilters.po2
-rw-r--r--source/ca-XV/filter/source/config/fragments/types.po2
-rw-r--r--source/ca-XV/filter/source/flash.po2
-rw-r--r--source/ca-XV/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ca-XV/filter/source/pdf.po8
-rw-r--r--source/ca-XV/filter/source/t602.po2
-rw-r--r--source/ca-XV/filter/source/xsltdialog.po8
-rw-r--r--source/ca-XV/filter/uiconfig/ui.po12
-rw-r--r--source/ca-XV/forms/source/resource.po2
-rw-r--r--source/ca-XV/formula/source/core/resource.po16
-rw-r--r--source/ca-XV/formula/source/ui/dlg.po2
-rw-r--r--source/ca-XV/fpicker/source/office.po2
-rw-r--r--source/ca-XV/framework/source/classes.po10
-rw-r--r--source/ca-XV/framework/source/services.po2
-rw-r--r--source/ca-XV/helpcontent2/source/auxiliary.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/sbasic/guide.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/ca-XV/helpcontent2/source/text/sbasic/shared/01.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/sbasic/shared/02.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/scalc.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/scalc/00.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/scalc/01.po304
-rw-r--r--source/ca-XV/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/ca-XV/helpcontent2/source/text/scalc/04.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/scalc/05.po8
-rw-r--r--source/ca-XV/helpcontent2/source/text/scalc/guide.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/schart.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/schart/00.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/ca-XV/helpcontent2/source/text/schart/02.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/schart/04.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/sdraw.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/sdraw/00.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/sdraw/01.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/sdraw/04.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/sdraw/guide.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/shared.po14
-rw-r--r--source/ca-XV/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/ca-XV/helpcontent2/source/text/shared/01.po13
-rw-r--r--source/ca-XV/helpcontent2/source/text/shared/02.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/shared/04.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/shared/05.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/shared/07.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/shared/autokorr.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--source/ca-XV/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/ca-XV/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/ca-XV/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/ca-XV/helpcontent2/source/text/simpress.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/simpress/00.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/simpress/01.po14
-rw-r--r--source/ca-XV/helpcontent2/source/text/simpress/02.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/simpress/04.po13
-rw-r--r--source/ca-XV/helpcontent2/source/text/simpress/guide.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/smath.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/smath/00.po8
-rw-r--r--source/ca-XV/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/ca-XV/helpcontent2/source/text/smath/02.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/smath/04.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/smath/guide.po10
-rw-r--r--source/ca-XV/helpcontent2/source/text/swriter.po8
-rw-r--r--source/ca-XV/helpcontent2/source/text/swriter/00.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/ca-XV/helpcontent2/source/text/swriter/02.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/swriter/04.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/swriter/guide.po2
-rw-r--r--source/ca-XV/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/ca-XV/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/ca-XV/librelogo/source/pythonpath.po12
-rw-r--r--source/ca-XV/mysqlc/source.po2
-rw-r--r--source/ca-XV/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ca-XV/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po14
-rw-r--r--source/ca-XV/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ca-XV/nlpsolver/src/locale.po2
-rw-r--r--source/ca-XV/officecfg/registry/data/org/openoffice/Office.po38
-rw-r--r--source/ca-XV/officecfg/registry/data/org/openoffice/Office/UI.po192
-rw-r--r--source/ca-XV/officecfg/registry/data/org/openoffice/TypeDetection.po16
-rw-r--r--source/ca-XV/padmin/source.po8
-rw-r--r--source/ca-XV/padmin/uiconfig/ui.po64
-rw-r--r--source/ca-XV/readlicense_oo/docs.po28
-rw-r--r--source/ca-XV/reportbuilder/java/org/libreoffice/report/function/metadata.po20
-rw-r--r--source/ca-XV/reportdesign/source/core/resource.po9
-rw-r--r--source/ca-XV/reportdesign/source/ui/dlg.po2
-rw-r--r--source/ca-XV/reportdesign/source/ui/inspection.po9
-rw-r--r--source/ca-XV/reportdesign/source/ui/report.po2
-rw-r--r--source/ca-XV/sc/source/core/src.po2
-rw-r--r--source/ca-XV/sc/source/ui/cctrl.po2
-rw-r--r--source/ca-XV/sc/source/ui/dbgui.po8
-rw-r--r--source/ca-XV/sc/source/ui/docshell.po2
-rw-r--r--source/ca-XV/sc/source/ui/drawfunc.po2
-rw-r--r--source/ca-XV/sc/source/ui/formdlg.po2
-rw-r--r--source/ca-XV/sc/source/ui/miscdlgs.po2
-rw-r--r--source/ca-XV/sc/source/ui/navipi.po2
-rw-r--r--source/ca-XV/sc/source/ui/optdlg.po2
-rw-r--r--source/ca-XV/sc/source/ui/pagedlg.po2
-rw-r--r--source/ca-XV/sc/source/ui/sidebar.po186
-rw-r--r--source/ca-XV/sc/source/ui/src.po180
-rw-r--r--source/ca-XV/sc/source/ui/styleui.po8
-rw-r--r--source/ca-XV/sc/uiconfig/scalc/ui.po99
-rw-r--r--source/ca-XV/scaddins/source/analysis.po27
-rw-r--r--source/ca-XV/scaddins/source/datefunc.po2
-rw-r--r--source/ca-XV/scaddins/source/pricing.po18
-rw-r--r--source/ca-XV/sccomp/source/solver.po2
-rw-r--r--source/ca-XV/scp2/source/accessories.po445
-rw-r--r--source/ca-XV/scp2/source/activex.po2
-rw-r--r--source/ca-XV/scp2/source/base.po2
-rw-r--r--source/ca-XV/scp2/source/calc.po2
-rw-r--r--source/ca-XV/scp2/source/draw.po2
-rw-r--r--source/ca-XV/scp2/source/extensions.po10
-rw-r--r--source/ca-XV/scp2/source/gnome.po2
-rw-r--r--source/ca-XV/scp2/source/graphicfilter.po2
-rw-r--r--source/ca-XV/scp2/source/impress.po2
-rw-r--r--source/ca-XV/scp2/source/kde.po2
-rw-r--r--source/ca-XV/scp2/source/math.po2
-rw-r--r--source/ca-XV/scp2/source/onlineupdate.po2
-rw-r--r--source/ca-XV/scp2/source/ooo.po558
-rw-r--r--source/ca-XV/scp2/source/python.po2
-rw-r--r--source/ca-XV/scp2/source/quickstart.po2
-rw-r--r--source/ca-XV/scp2/source/sdkoo.po2
-rw-r--r--source/ca-XV/scp2/source/smoketest.po2
-rw-r--r--source/ca-XV/scp2/source/stdlibs.po2
-rw-r--r--source/ca-XV/scp2/source/tde.po2
-rw-r--r--source/ca-XV/scp2/source/winexplorerext.po2
-rw-r--r--source/ca-XV/scp2/source/writer.po2
-rw-r--r--source/ca-XV/scp2/source/xsltfilter.po2
-rw-r--r--source/ca-XV/sd/source/core.po10
-rw-r--r--source/ca-XV/sd/source/filter/html.po2
-rw-r--r--source/ca-XV/sd/source/ui/accessibility.po2
-rw-r--r--source/ca-XV/sd/source/ui/animations.po10
-rw-r--r--source/ca-XV/sd/source/ui/annotations.po2
-rw-r--r--source/ca-XV/sd/source/ui/app.po12
-rw-r--r--source/ca-XV/sd/source/ui/dlg.po28
-rw-r--r--source/ca-XV/sd/source/ui/slideshow.po2
-rw-r--r--source/ca-XV/sd/source/ui/table.po2
-rw-r--r--source/ca-XV/sd/source/ui/view.po19
-rw-r--r--source/ca-XV/sd/uiconfig/sdraw/ui.po10
-rw-r--r--source/ca-XV/sd/uiconfig/simpress/ui.po48
-rw-r--r--source/ca-XV/sdext/source/minimizer.po2
-rw-r--r--source/ca-XV/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ca-XV/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po11
-rw-r--r--source/ca-XV/setup_native/source/mac.po2
-rw-r--r--source/ca-XV/sfx2/source/appl.po10
-rw-r--r--source/ca-XV/sfx2/source/bastyp.po2
-rw-r--r--source/ca-XV/sfx2/source/control.po2
-rw-r--r--source/ca-XV/sfx2/source/dialog.po16
-rw-r--r--source/ca-XV/sfx2/source/doc.po14
-rw-r--r--source/ca-XV/sfx2/source/menu.po2
-rw-r--r--source/ca-XV/sfx2/source/sidebar.po18
-rw-r--r--source/ca-XV/sfx2/source/view.po2
-rw-r--r--source/ca-XV/sfx2/uiconfig/ui.po63
-rw-r--r--source/ca-XV/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ca-XV/starmath/source.po35
-rw-r--r--source/ca-XV/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ca-XV/svl/source/misc.po2
-rw-r--r--source/ca-XV/svtools/source/contnr.po2
-rw-r--r--source/ca-XV/svtools/source/control.po2
-rw-r--r--source/ca-XV/svtools/source/dialogs.po2
-rw-r--r--source/ca-XV/svtools/source/java.po16
-rw-r--r--source/ca-XV/svtools/source/misc.po18
-rw-r--r--source/ca-XV/svtools/source/toolpanel.po2
-rw-r--r--source/ca-XV/svtools/uiconfig/ui.po14
-rw-r--r--source/ca-XV/svx/inc.po2
-rw-r--r--source/ca-XV/svx/source/accessibility.po2
-rw-r--r--source/ca-XV/svx/source/core.po2
-rw-r--r--source/ca-XV/svx/source/dialog.po332
-rw-r--r--source/ca-XV/svx/source/engine3d.po13
-rw-r--r--source/ca-XV/svx/source/fmcomp.po2
-rw-r--r--source/ca-XV/svx/source/form.po2
-rw-r--r--source/ca-XV/svx/source/gallery2.po18
-rw-r--r--source/ca-XV/svx/source/items.po2
-rw-r--r--source/ca-XV/svx/source/sidebar.po10
-rw-r--r--source/ca-XV/svx/source/sidebar/area.po74
-rw-r--r--source/ca-XV/svx/source/sidebar/graphic.po34
-rw-r--r--source/ca-XV/svx/source/sidebar/line.po70
-rw-r--r--source/ca-XV/svx/source/sidebar/paragraph.po182
-rw-r--r--source/ca-XV/svx/source/sidebar/possize.po46
-rw-r--r--source/ca-XV/svx/source/sidebar/text.po76
-rw-r--r--source/ca-XV/svx/source/src.po2
-rw-r--r--source/ca-XV/svx/source/stbctrls.po10
-rw-r--r--source/ca-XV/svx/source/svdraw.po2
-rw-r--r--source/ca-XV/svx/source/table.po2
-rw-r--r--source/ca-XV/svx/source/tbxctrls.po20
-rw-r--r--source/ca-XV/svx/source/toolbars.po2
-rw-r--r--source/ca-XV/svx/source/unodialogs/textconversiondlgs.po2
-rw-r--r--source/ca-XV/svx/uiconfig/ui.po32
-rw-r--r--source/ca-XV/sw/source/core/layout.po2
-rw-r--r--source/ca-XV/sw/source/core/undo.po12
-rw-r--r--source/ca-XV/sw/source/core/unocore.po2
-rw-r--r--source/ca-XV/sw/source/ui/app.po23
-rw-r--r--source/ca-XV/sw/source/ui/chrdlg.po2
-rw-r--r--source/ca-XV/sw/source/ui/config.po8
-rw-r--r--source/ca-XV/sw/source/ui/dbui.po8
-rw-r--r--source/ca-XV/sw/source/ui/dialog.po2
-rw-r--r--source/ca-XV/sw/source/ui/dochdl.po2
-rw-r--r--source/ca-XV/sw/source/ui/docvw.po2
-rw-r--r--source/ca-XV/sw/source/ui/envelp.po10
-rw-r--r--source/ca-XV/sw/source/ui/fldui.po8
-rw-r--r--source/ca-XV/sw/source/ui/fmtui.po2
-rw-r--r--source/ca-XV/sw/source/ui/frmdlg.po2
-rw-r--r--source/ca-XV/sw/source/ui/globdoc.po2
-rw-r--r--source/ca-XV/sw/source/ui/index.po16
-rw-r--r--source/ca-XV/sw/source/ui/lingu.po12
-rw-r--r--source/ca-XV/sw/source/ui/misc.po14
-rw-r--r--source/ca-XV/sw/source/ui/ribbar.po7
-rw-r--r--source/ca-XV/sw/source/ui/shells.po2
-rw-r--r--source/ca-XV/sw/source/ui/sidebar.po106
-rw-r--r--source/ca-XV/sw/source/ui/smartmenu.po2
-rw-r--r--source/ca-XV/sw/source/ui/table.po2
-rw-r--r--source/ca-XV/sw/source/ui/uiview.po2
-rw-r--r--source/ca-XV/sw/source/ui/utlui.po14
-rw-r--r--source/ca-XV/sw/source/ui/web.po2
-rw-r--r--source/ca-XV/sw/source/ui/wrtsh.po2
-rw-r--r--source/ca-XV/sw/uiconfig/swriter/ui.po96
-rw-r--r--source/ca-XV/swext/mediawiki/help.po10
-rw-r--r--source/ca-XV/swext/mediawiki/src.po2
-rw-r--r--source/ca-XV/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ca-XV/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ca-XV/sysui/desktop/share.po2
-rw-r--r--source/ca-XV/tubes/uiconfig/ui.po2
-rw-r--r--source/ca-XV/uui/source.po10
-rw-r--r--source/ca-XV/uui/uiconfig/ui.po22
-rw-r--r--source/ca-XV/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ca-XV/vcl/source/edit.po2
-rw-r--r--source/ca-XV/vcl/source/src.po24
-rw-r--r--source/ca-XV/vcl/uiconfig/ui.po20
-rw-r--r--source/ca-XV/wizards/source/euro.po2
-rw-r--r--source/ca-XV/wizards/source/formwizard.po10
-rw-r--r--source/ca-XV/wizards/source/importwizard.po11
-rw-r--r--source/ca-XV/wizards/source/template.po2
-rw-r--r--source/ca-XV/xmlsecurity/source/component.po2
-rw-r--r--source/ca-XV/xmlsecurity/source/dialogs.po2
-rw-r--r--source/ca-XV/xmlsecurity/uiconfig/ui.po81
-rw-r--r--source/ca/accessibility/source/helper.po7
-rw-r--r--source/ca/chart2/source/controller/dialogs.po10
-rw-r--r--source/ca/chart2/uiconfig/ui.po14
-rw-r--r--source/ca/cui/uiconfig/ui.po12
-rw-r--r--source/ca/desktop/source/deployment/gui.po9
-rw-r--r--source/ca/formula/source/core/resource.po9
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ca/helpcontent2/source/text/shared/02.po15
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/ca/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/ca/helpcontent2/source/text/swriter/librelogo.po10
-rw-r--r--source/ca/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po10
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po33
-rw-r--r--source/ca/sc/source/ui/sidebar.po36
-rw-r--r--source/ca/sc/source/ui/src.po29
-rw-r--r--source/ca/sc/uiconfig/scalc/ui.po5
-rw-r--r--source/ca/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po11
-rw-r--r--source/ca/sfx2/source/appl.po8
-rw-r--r--source/ca/sfx2/source/doc.po8
-rw-r--r--source/ca/sfx2/source/sidebar.po9
-rw-r--r--source/ca/sfx2/uiconfig/ui.po48
-rw-r--r--source/ca/starmath/source.po5
-rw-r--r--source/ca/svtools/uiconfig/ui.po12
-rw-r--r--source/ca/svx/source/dialog.po191
-rw-r--r--source/ca/svx/source/sidebar/area.po39
-rw-r--r--source/ca/svx/source/sidebar/graphic.po16
-rw-r--r--source/ca/svx/source/sidebar/line.po11
-rw-r--r--source/ca/svx/source/sidebar/paragraph.po93
-rw-r--r--source/ca/svx/source/sidebar/possize.po12
-rw-r--r--source/ca/svx/source/sidebar/text.po51
-rw-r--r--source/ca/svx/source/stbctrls.po5
-rw-r--r--source/ca/svx/source/tbxctrls.po16
-rw-r--r--source/ca/sw/source/ui/sidebar.po11
-rw-r--r--source/ca/sw/source/ui/utlui.po10
-rw-r--r--source/ca/sw/uiconfig/swriter/ui.po24
-rw-r--r--source/cs/android/sdremote/res/values.po10
-rw-r--r--source/cs/chart2/source/controller/dialogs.po8
-rw-r--r--source/cs/chart2/uiconfig/ui.po12
-rw-r--r--source/cs/cui/source/options.po10
-rw-r--r--source/cs/dbaccess/source/ui/tabledesign.po8
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/cs/helpcontent2/source/text/schart/01.po22
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/cs/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/cs/sc/source/ui/src.po12
-rw-r--r--source/cs/starmath/source.po8
-rw-r--r--source/cs/svx/source/dialog.po30
-rw-r--r--source/cs/svx/source/gallery2.po10
-rw-r--r--source/cs/svx/source/items.po9
-rw-r--r--source/cs/sw/source/ui/dbui.po10
-rw-r--r--source/cs/wizards/source/formwizard.po8
-rw-r--r--source/da/dbaccess/uiconfig/ui.po10
-rw-r--r--source/da/formula/source/core/resource.po8
-rw-r--r--source/da/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/da/svx/source/dialog.po30
-rw-r--r--source/de/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po9
-rw-r--r--source/de/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/de/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/de/svx/source/dialog.po27
-rw-r--r--source/el/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/el/svx/source/dialog.po28
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/en-GB/svx/source/dialog.po28
-rw-r--r--source/eo/helpcontent2/source/text/shared/autokorr.po25
-rw-r--r--source/eo/helpcontent2/source/text/shared/guide.po16
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/eo/helpcontent2/source/text/swriter/02.po12
-rw-r--r--source/eo/helpcontent2/source/text/swriter/04.po6
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/eo/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po6
-rw-r--r--source/eo/svx/source/dialog.po26
-rw-r--r--source/es/basctl/source/basicide.po10
-rw-r--r--source/es/chart2/uiconfig/ui.po6
-rw-r--r--source/es/connectivity/source/resource.po12
-rw-r--r--source/es/cui/source/customize.po12
-rw-r--r--source/es/cui/source/dialogs.po44
-rw-r--r--source/es/cui/source/options.po14
-rw-r--r--source/es/cui/source/tabpages.po10
-rw-r--r--source/es/cui/uiconfig/ui.po30
-rw-r--r--source/es/dbaccess/source/ui/dlg.po10
-rw-r--r--source/es/dbaccess/source/ui/misc.po6
-rw-r--r--source/es/dbaccess/source/ui/querydesign.po10
-rw-r--r--source/es/dbaccess/source/ui/relationdesign.po12
-rw-r--r--source/es/dbaccess/uiconfig/ui.po10
-rw-r--r--source/es/desktop/source/deployment/gui.po8
-rw-r--r--source/es/editeng/source/misc.po12
-rw-r--r--source/es/extensions/source/propctrlr.po12
-rw-r--r--source/es/filter/source/pdf.po10
-rw-r--r--source/es/filter/source/t602.po9
-rw-r--r--source/es/helpcontent2/source/auxiliary.po10
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po24
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/01.po10
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/02.po14
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po17
-rw-r--r--source/es/helpcontent2/source/text/shared.po10
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/es/helpcontent2/source/text/shared/05.po10
-rw-r--r--source/es/helpcontent2/source/text/swriter.po10
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po22
-rw-r--r--source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--source/es/librelogo/source/pythonpath.po20
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office.po16
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po32
-rw-r--r--source/es/padmin/source.po14
-rw-r--r--source/es/readlicense_oo/docs.po10
-rw-r--r--source/es/sc/source/ui/sidebar.po34
-rw-r--r--source/es/sc/source/ui/src.po28
-rw-r--r--source/es/sc/uiconfig/scalc/ui.po33
-rw-r--r--source/es/scaddins/source/analysis.po8
-rw-r--r--source/es/scaddins/source/pricing.po14
-rw-r--r--source/es/scp2/source/accessories.po12
-rw-r--r--source/es/sd/source/ui/animations.po10
-rw-r--r--source/es/sd/source/ui/app.po10
-rw-r--r--source/es/sfx2/source/appl.po20
-rw-r--r--source/es/sfx2/source/dialog.po12
-rw-r--r--source/es/sfx2/source/menu.po13
-rw-r--r--source/es/sfx2/source/view.po16
-rw-r--r--source/es/sfx2/uiconfig/ui.po10
-rw-r--r--source/es/shell/source/win32/shlxthandler/res.po12
-rw-r--r--source/es/starmath/source.po14
-rw-r--r--source/es/svl/source/misc.po23
-rw-r--r--source/es/svtools/source/misc.po16
-rw-r--r--source/es/svx/inc.po16
-rw-r--r--source/es/svx/source/accessibility.po14
-rw-r--r--source/es/svx/source/dialog.po153
-rw-r--r--source/es/svx/source/form.po12
-rw-r--r--source/es/svx/source/gallery2.po11
-rw-r--r--source/es/svx/source/items.po12
-rw-r--r--source/es/svx/source/sidebar.po10
-rw-r--r--source/es/svx/source/sidebar/area.po34
-rw-r--r--source/es/svx/source/sidebar/graphic.po12
-rw-r--r--source/es/svx/source/sidebar/line.po64
-rw-r--r--source/es/svx/source/sidebar/paragraph.po136
-rw-r--r--source/es/svx/source/sidebar/possize.po44
-rw-r--r--source/es/svx/source/sidebar/text.po36
-rw-r--r--source/es/svx/source/stbctrls.po6
-rw-r--r--source/es/svx/source/svdraw.po10
-rw-r--r--source/es/svx/source/tbxctrls.po14
-rw-r--r--source/es/svx/uiconfig/ui.po24
-rw-r--r--source/es/sw/source/core/undo.po10
-rw-r--r--source/es/sw/source/ui/fldui.po10
-rw-r--r--source/es/sw/source/ui/misc.po10
-rw-r--r--source/es/sw/source/ui/sidebar.po14
-rw-r--r--source/es/sw/source/ui/utlui.po10
-rw-r--r--source/es/sw/uiconfig/swriter/ui.po10
-rw-r--r--source/es/uui/source.po14
-rw-r--r--source/es/vcl/source/src.po10
-rw-r--r--source/et/android/sdremote/res/values.po10
-rw-r--r--source/et/chart2/source/controller/dialogs.po8
-rw-r--r--source/et/helpcontent2/source/text/sdraw/04.po8
-rw-r--r--source/et/helpcontent2/source/text/sdraw/guide.po7
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po13
-rw-r--r--source/et/helpcontent2/source/text/simpress/04.po8
-rw-r--r--source/et/sc/source/ui/sidebar.po8
-rw-r--r--source/et/sc/source/ui/src.po8
-rw-r--r--source/et/sd/source/ui/animations.po8
-rw-r--r--source/et/sd/source/ui/dlg.po8
-rw-r--r--source/et/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po8
-rw-r--r--source/et/starmath/source.po12
-rw-r--r--source/et/svx/source/dialog.po56
-rw-r--r--source/et/svx/uiconfig/ui.po8
-rw-r--r--source/et/sw/source/core/undo.po10
-rw-r--r--source/et/sw/source/ui/config.po8
-rw-r--r--source/et/sw/uiconfig/swriter/ui.po10
-rw-r--r--source/et/vcl/source/src.po10
-rw-r--r--source/eu/cui/uiconfig/ui.po1648
-rw-r--r--source/eu/sc/source/ui/navipi.po10
-rw-r--r--source/eu/sc/source/ui/optdlg.po20
-rw-r--r--source/eu/sc/source/ui/sidebar.po74
-rw-r--r--source/eu/sc/source/ui/src.po476
-rw-r--r--source/eu/sc/uiconfig/scalc/ui.po631
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po52
-rw-r--r--source/fi/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/fi/helpcontent2/source/text/shared/explorer/database.po26
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po20
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po70
-rw-r--r--source/fi/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po16
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po27
-rw-r--r--source/fi/svx/uiconfig/ui.po10
-rw-r--r--source/fi/sw/uiconfig/swriter/ui.po10
-rw-r--r--source/ga/accessibility/source/helper.po6
-rw-r--r--source/ga/android/sdremote/res/values.po6
-rw-r--r--source/ga/avmedia/source/framework.po6
-rw-r--r--source/ga/avmedia/source/viewer.po6
-rw-r--r--source/ga/basctl/source/basicide.po6
-rw-r--r--source/ga/basctl/source/dlged.po6
-rw-r--r--source/ga/basctl/uiconfig/basicide/ui.po6
-rw-r--r--source/ga/basic/source/classes.po6
-rw-r--r--source/ga/basic/source/sbx.po6
-rw-r--r--source/ga/chart2/source/controller/dialogs.po6
-rw-r--r--source/ga/chart2/uiconfig/ui.po6
-rw-r--r--source/ga/connectivity/registry/ado/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/calc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/flat/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/kab/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/macab/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/mork/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/connectivity/source/resource.po6
-rw-r--r--source/ga/cui/source/customize.po6
-rw-r--r--source/ga/cui/source/dialogs.po6
-rw-r--r--source/ga/cui/source/options.po6
-rw-r--r--source/ga/cui/source/tabpages.po6
-rw-r--r--source/ga/cui/uiconfig/ui.po8
-rw-r--r--source/ga/dbaccess/source/core/resource.po6
-rw-r--r--source/ga/dbaccess/source/ext/macromigration.po6
-rw-r--r--source/ga/dbaccess/source/sdbtools/resource.po6
-rw-r--r--source/ga/dbaccess/source/ui/app.po6
-rw-r--r--source/ga/dbaccess/source/ui/browser.po6
-rw-r--r--source/ga/dbaccess/source/ui/control.po6
-rw-r--r--source/ga/dbaccess/source/ui/dlg.po6
-rw-r--r--source/ga/dbaccess/source/ui/inc.po6
-rw-r--r--source/ga/dbaccess/source/ui/misc.po6
-rw-r--r--source/ga/dbaccess/source/ui/querydesign.po6
-rw-r--r--source/ga/dbaccess/source/ui/relationdesign.po6
-rw-r--r--source/ga/dbaccess/source/ui/tabledesign.po6
-rw-r--r--source/ga/dbaccess/source/ui/uno.po6
-rw-r--r--source/ga/dbaccess/uiconfig/ui.po6
-rw-r--r--source/ga/desktop/source/app.po6
-rw-r--r--source/ga/desktop/source/deployment/gui.po6
-rw-r--r--source/ga/desktop/source/deployment/manager.po6
-rw-r--r--source/ga/desktop/source/deployment/misc.po6
-rw-r--r--source/ga/desktop/source/deployment/registry.po6
-rw-r--r--source/ga/desktop/source/deployment/registry/component.po6
-rw-r--r--source/ga/desktop/source/deployment/registry/configuration.po6
-rw-r--r--source/ga/desktop/source/deployment/registry/help.po6
-rw-r--r--source/ga/desktop/source/deployment/registry/package.po6
-rw-r--r--source/ga/desktop/source/deployment/registry/script.po6
-rw-r--r--source/ga/desktop/source/deployment/registry/sfwk.po6
-rw-r--r--source/ga/desktop/source/deployment/unopkg.po6
-rw-r--r--source/ga/desktop/uiconfig/ui.po6
-rw-r--r--source/ga/dictionaries/af_ZA.po6
-rw-r--r--source/ga/dictionaries/an_ES.po6
-rw-r--r--source/ga/dictionaries/ar.po6
-rw-r--r--source/ga/dictionaries/be_BY.po6
-rw-r--r--source/ga/dictionaries/bg_BG.po6
-rw-r--r--source/ga/dictionaries/bn_BD.po6
-rw-r--r--source/ga/dictionaries/br_FR.po6
-rw-r--r--source/ga/dictionaries/bs_BA.po6
-rw-r--r--source/ga/dictionaries/ca.po6
-rw-r--r--source/ga/dictionaries/cs_CZ.po6
-rw-r--r--source/ga/dictionaries/da_DK.po6
-rw-r--r--source/ga/dictionaries/de.po6
-rw-r--r--source/ga/dictionaries/el_GR.po6
-rw-r--r--source/ga/dictionaries/en.po6
-rw-r--r--source/ga/dictionaries/en/dialog.po6
-rw-r--r--source/ga/dictionaries/en/dialog/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ga/dictionaries/es.po6
-rw-r--r--source/ga/dictionaries/et_EE.po6
-rw-r--r--source/ga/dictionaries/fr_FR.po6
-rw-r--r--source/ga/dictionaries/gd_GB.po6
-rw-r--r--source/ga/dictionaries/gl.po6
-rw-r--r--source/ga/dictionaries/gu_IN.po6
-rw-r--r--source/ga/dictionaries/he_IL.po6
-rw-r--r--source/ga/dictionaries/hi_IN.po6
-rw-r--r--source/ga/dictionaries/hr_HR.po6
-rw-r--r--source/ga/dictionaries/hu_HU.po6
-rw-r--r--source/ga/dictionaries/hu_HU/dialog.po6
-rw-r--r--source/ga/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ga/dictionaries/is.po16
-rw-r--r--source/ga/dictionaries/it_IT.po6
-rw-r--r--source/ga/dictionaries/ku_TR.po6
-rw-r--r--source/ga/dictionaries/lt_LT.po6
-rw-r--r--source/ga/dictionaries/lv_LV.po6
-rw-r--r--source/ga/dictionaries/ne_NP.po6
-rw-r--r--source/ga/dictionaries/nl_NL.po6
-rw-r--r--source/ga/dictionaries/no.po6
-rw-r--r--source/ga/dictionaries/oc_FR.po6
-rw-r--r--source/ga/dictionaries/pl_PL.po6
-rw-r--r--source/ga/dictionaries/pt_BR.po6
-rw-r--r--source/ga/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ga/dictionaries/pt_PT.po6
-rw-r--r--source/ga/dictionaries/ro.po6
-rw-r--r--source/ga/dictionaries/ru_RU.po6
-rw-r--r--source/ga/dictionaries/ru_RU/dialog.po6
-rw-r--r--source/ga/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ga/dictionaries/si_LK.po6
-rw-r--r--source/ga/dictionaries/sk_SK.po6
-rw-r--r--source/ga/dictionaries/sl_SI.po6
-rw-r--r--source/ga/dictionaries/sr.po6
-rw-r--r--source/ga/dictionaries/sv_SE.po6
-rw-r--r--source/ga/dictionaries/sw_TZ.po6
-rw-r--r--source/ga/dictionaries/te_IN.po6
-rw-r--r--source/ga/dictionaries/th_TH.po6
-rw-r--r--source/ga/dictionaries/uk_UA.po6
-rw-r--r--source/ga/dictionaries/vi.po6
-rw-r--r--source/ga/dictionaries/zu_ZA.po6
-rw-r--r--source/ga/editeng/source/accessibility.po6
-rw-r--r--source/ga/editeng/source/editeng.po6
-rw-r--r--source/ga/editeng/source/items.po6
-rw-r--r--source/ga/editeng/source/misc.po6
-rw-r--r--source/ga/editeng/source/outliner.po6
-rw-r--r--source/ga/extensions/source/abpilot.po6
-rw-r--r--source/ga/extensions/source/bibliography.po6
-rw-r--r--source/ga/extensions/source/dbpilots.po6
-rw-r--r--source/ga/extensions/source/propctrlr.po6
-rw-r--r--source/ga/extensions/source/scanner.po6
-rw-r--r--source/ga/extensions/source/update/check.po6
-rw-r--r--source/ga/extensions/source/update/check/org/openoffice/Office.po6
-rw-r--r--source/ga/extensions/uiconfig.po6
-rw-r--r--source/ga/extras/source/gallery/share.po6
-rw-r--r--source/ga/filter/source/config/fragments/filters.po6
-rw-r--r--source/ga/filter/source/config/fragments/internalgraphicfilters.po6
-rw-r--r--source/ga/filter/source/config/fragments/types.po6
-rw-r--r--source/ga/filter/source/flash.po6
-rw-r--r--source/ga/filter/source/graphicfilter/eps.po6
-rw-r--r--source/ga/filter/source/pdf.po6
-rw-r--r--source/ga/filter/source/t602.po6
-rw-r--r--source/ga/filter/source/xsltdialog.po6
-rw-r--r--source/ga/filter/uiconfig/ui.po6
-rw-r--r--source/ga/forms/source/resource.po6
-rw-r--r--source/ga/formula/source/core/resource.po6
-rw-r--r--source/ga/formula/source/ui/dlg.po6
-rw-r--r--source/ga/fpicker/source/office.po6
-rw-r--r--source/ga/framework/source/classes.po6
-rw-r--r--source/ga/framework/source/services.po6
-rw-r--r--source/ga/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--source/ga/librelogo/source/pythonpath.po6
-rw-r--r--source/ga/mysqlc/source.po6
-rw-r--r--source/ga/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ga/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po8
-rw-r--r--source/ga/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po6
-rw-r--r--source/ga/nlpsolver/src/locale.po6
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/TypeDetection.po6
-rw-r--r--source/ga/padmin/source.po6
-rw-r--r--source/ga/padmin/uiconfig/ui.po6
-rw-r--r--source/ga/readlicense_oo/docs.po6
-rw-r--r--source/ga/reportbuilder/java/org/libreoffice/report/function/metadata.po6
-rw-r--r--source/ga/reportdesign/source/core/resource.po6
-rw-r--r--source/ga/reportdesign/source/ui/dlg.po6
-rw-r--r--source/ga/reportdesign/source/ui/inspection.po6
-rw-r--r--source/ga/reportdesign/source/ui/report.po6
-rw-r--r--source/ga/sc/source/core/src.po6
-rw-r--r--source/ga/sc/source/ui/cctrl.po6
-rw-r--r--source/ga/sc/source/ui/dbgui.po6
-rw-r--r--source/ga/sc/source/ui/docshell.po6
-rw-r--r--source/ga/sc/source/ui/drawfunc.po6
-rw-r--r--source/ga/sc/source/ui/formdlg.po6
-rw-r--r--source/ga/sc/source/ui/miscdlgs.po6
-rw-r--r--source/ga/sc/source/ui/navipi.po6
-rw-r--r--source/ga/sc/source/ui/optdlg.po6
-rw-r--r--source/ga/sc/source/ui/pagedlg.po6
-rw-r--r--source/ga/sc/source/ui/sidebar.po6
-rw-r--r--source/ga/sc/source/ui/src.po6
-rw-r--r--source/ga/sc/source/ui/styleui.po6
-rw-r--r--source/ga/sc/uiconfig/scalc/ui.po8
-rw-r--r--source/ga/scaddins/source/analysis.po6
-rw-r--r--source/ga/scaddins/source/datefunc.po6
-rw-r--r--source/ga/scaddins/source/pricing.po6
-rw-r--r--source/ga/sccomp/source/solver.po6
-rw-r--r--source/ga/scp2/source/accessories.po6
-rw-r--r--source/ga/scp2/source/activex.po6
-rw-r--r--source/ga/scp2/source/base.po6
-rw-r--r--source/ga/scp2/source/calc.po6
-rw-r--r--source/ga/scp2/source/draw.po6
-rw-r--r--source/ga/scp2/source/extensions.po6
-rw-r--r--source/ga/scp2/source/gnome.po6
-rw-r--r--source/ga/scp2/source/graphicfilter.po6
-rw-r--r--source/ga/scp2/source/impress.po6
-rw-r--r--source/ga/scp2/source/kde.po6
-rw-r--r--source/ga/scp2/source/math.po6
-rw-r--r--source/ga/scp2/source/onlineupdate.po6
-rw-r--r--source/ga/scp2/source/ooo.po6
-rw-r--r--source/ga/scp2/source/python.po6
-rw-r--r--source/ga/scp2/source/quickstart.po6
-rw-r--r--source/ga/scp2/source/sdkoo.po6
-rw-r--r--source/ga/scp2/source/smoketest.po6
-rw-r--r--source/ga/scp2/source/stdlibs.po6
-rw-r--r--source/ga/scp2/source/tde.po6
-rw-r--r--source/ga/scp2/source/winexplorerext.po6
-rw-r--r--source/ga/scp2/source/writer.po6
-rw-r--r--source/ga/scp2/source/xsltfilter.po6
-rw-r--r--source/ga/sd/source/core.po6
-rw-r--r--source/ga/sd/source/filter/html.po6
-rw-r--r--source/ga/sd/source/ui/accessibility.po6
-rw-r--r--source/ga/sd/source/ui/animations.po6
-rw-r--r--source/ga/sd/source/ui/annotations.po6
-rw-r--r--source/ga/sd/source/ui/app.po6
-rw-r--r--source/ga/sd/source/ui/dlg.po6
-rw-r--r--source/ga/sd/source/ui/slideshow.po6
-rw-r--r--source/ga/sd/source/ui/table.po6
-rw-r--r--source/ga/sd/source/ui/view.po6
-rw-r--r--source/ga/sd/uiconfig/sdraw/ui.po6
-rw-r--r--source/ga/sd/uiconfig/simpress/ui.po8
-rw-r--r--source/ga/sdext/source/minimizer.po6
-rw-r--r--source/ga/sdext/source/minimizer/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ga/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po6
-rw-r--r--source/ga/setup_native/source/mac.po6
-rw-r--r--source/ga/sfx2/source/appl.po6
-rw-r--r--source/ga/sfx2/source/bastyp.po6
-rw-r--r--source/ga/sfx2/source/control.po6
-rw-r--r--source/ga/sfx2/source/dialog.po6
-rw-r--r--source/ga/sfx2/source/doc.po6
-rw-r--r--source/ga/sfx2/source/menu.po6
-rw-r--r--source/ga/sfx2/source/sidebar.po6
-rw-r--r--source/ga/sfx2/source/view.po6
-rw-r--r--source/ga/sfx2/uiconfig/ui.po6
-rw-r--r--source/ga/shell/source/win32/shlxthandler/res.po6
-rw-r--r--source/ga/starmath/source.po28
-rw-r--r--source/ga/starmath/uiconfig/smath/ui.po6
-rw-r--r--source/ga/svl/source/misc.po6
-rw-r--r--source/ga/svtools/source/contnr.po6
-rw-r--r--source/ga/svtools/source/control.po6
-rw-r--r--source/ga/svtools/source/dialogs.po6
-rw-r--r--source/ga/svtools/source/java.po6
-rw-r--r--source/ga/svtools/source/misc.po6
-rw-r--r--source/ga/svtools/source/toolpanel.po6
-rw-r--r--source/ga/svtools/uiconfig/ui.po8
-rw-r--r--source/ga/svx/inc.po6
-rw-r--r--source/ga/svx/source/accessibility.po6
-rw-r--r--source/ga/svx/source/core.po6
-rw-r--r--source/ga/svx/source/dialog.po34
-rw-r--r--source/ga/svx/source/engine3d.po6
-rw-r--r--source/ga/svx/source/fmcomp.po6
-rw-r--r--source/ga/svx/source/form.po6
-rw-r--r--source/ga/svx/source/gallery2.po6
-rw-r--r--source/ga/svx/source/items.po6
-rw-r--r--source/ga/svx/source/sidebar.po6
-rw-r--r--source/ga/svx/source/sidebar/area.po6
-rw-r--r--source/ga/svx/source/sidebar/graphic.po6
-rw-r--r--source/ga/svx/source/sidebar/line.po6
-rw-r--r--source/ga/svx/source/sidebar/paragraph.po6
-rw-r--r--source/ga/svx/source/sidebar/possize.po6
-rw-r--r--source/ga/svx/source/sidebar/text.po6
-rw-r--r--source/ga/svx/source/src.po6
-rw-r--r--source/ga/svx/source/stbctrls.po6
-rw-r--r--source/ga/svx/source/svdraw.po6
-rw-r--r--source/ga/svx/source/table.po6
-rw-r--r--source/ga/svx/source/tbxctrls.po6
-rw-r--r--source/ga/svx/source/toolbars.po6
-rw-r--r--source/ga/svx/source/unodialogs/textconversiondlgs.po6
-rw-r--r--source/ga/svx/uiconfig/ui.po6
-rw-r--r--source/ga/sw/source/core/layout.po6
-rw-r--r--source/ga/sw/source/core/undo.po6
-rw-r--r--source/ga/sw/source/core/unocore.po6
-rw-r--r--source/ga/sw/source/ui/app.po6
-rw-r--r--source/ga/sw/source/ui/chrdlg.po6
-rw-r--r--source/ga/sw/source/ui/config.po6
-rw-r--r--source/ga/sw/source/ui/dbui.po6
-rw-r--r--source/ga/sw/source/ui/dialog.po6
-rw-r--r--source/ga/sw/source/ui/dochdl.po6
-rw-r--r--source/ga/sw/source/ui/docvw.po6
-rw-r--r--source/ga/sw/source/ui/envelp.po6
-rw-r--r--source/ga/sw/source/ui/fldui.po6
-rw-r--r--source/ga/sw/source/ui/fmtui.po6
-rw-r--r--source/ga/sw/source/ui/frmdlg.po6
-rw-r--r--source/ga/sw/source/ui/globdoc.po6
-rw-r--r--source/ga/sw/source/ui/index.po6
-rw-r--r--source/ga/sw/source/ui/lingu.po6
-rw-r--r--source/ga/sw/source/ui/misc.po6
-rw-r--r--source/ga/sw/source/ui/ribbar.po6
-rw-r--r--source/ga/sw/source/ui/shells.po6
-rw-r--r--source/ga/sw/source/ui/sidebar.po6
-rw-r--r--source/ga/sw/source/ui/smartmenu.po6
-rw-r--r--source/ga/sw/source/ui/table.po6
-rw-r--r--source/ga/sw/source/ui/uiview.po6
-rw-r--r--source/ga/sw/source/ui/utlui.po6
-rw-r--r--source/ga/sw/source/ui/web.po6
-rw-r--r--source/ga/sw/source/ui/wrtsh.po6
-rw-r--r--source/ga/sw/uiconfig/swriter/ui.po20
-rw-r--r--source/ga/swext/mediawiki/help.po6
-rw-r--r--source/ga/swext/mediawiki/src.po6
-rw-r--r--source/ga/swext/mediawiki/src/registry/data/org/openoffice/Office.po6
-rw-r--r--source/ga/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po6
-rw-r--r--source/ga/sysui/desktop/share.po6
-rw-r--r--source/ga/tubes/uiconfig/ui.po6
-rw-r--r--source/ga/uui/source.po6
-rw-r--r--source/ga/uui/uiconfig/ui.po6
-rw-r--r--source/ga/vcl/qa/cppunit/builder.po6
-rw-r--r--source/ga/vcl/source/edit.po6
-rw-r--r--source/ga/vcl/source/src.po6
-rw-r--r--source/ga/vcl/uiconfig/ui.po6
-rw-r--r--source/ga/wizards/source/euro.po6
-rw-r--r--source/ga/wizards/source/formwizard.po6
-rw-r--r--source/ga/wizards/source/importwizard.po10
-rw-r--r--source/ga/wizards/source/template.po6
-rw-r--r--source/ga/xmlsecurity/source/component.po6
-rw-r--r--source/ga/xmlsecurity/source/dialogs.po6
-rw-r--r--source/ga/xmlsecurity/uiconfig/ui.po6
-rw-r--r--source/gl/helpcontent2/source/auxiliary.po10
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/guide.po19
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po131
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared/01.po15
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared/02.po27
-rw-r--r--source/gl/helpcontent2/source/text/scalc/00.po11
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/gl/helpcontent2/source/text/scalc/04.po13
-rw-r--r--source/gl/helpcontent2/source/text/scalc/05.po19
-rw-r--r--source/gl/helpcontent2/source/text/schart/00.po25
-rw-r--r--source/gl/helpcontent2/source/text/schart/01.po26
-rw-r--r--source/gl/helpcontent2/source/text/shared.po22
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/gl/helpcontent2/source/text/shared/02.po94
-rw-r--r--source/gl/helpcontent2/source/text/shared/05.po13
-rw-r--r--source/gl/helpcontent2/source/text/simpress.po14
-rw-r--r--source/gl/helpcontent2/source/text/simpress/guide.po22
-rw-r--r--source/gl/helpcontent2/source/text/swriter/00.po9
-rw-r--r--source/gu/svx/source/dialog.po28
-rw-r--r--source/he/cui/source/customize.po68
-rw-r--r--source/he/cui/source/dialogs.po72
-rw-r--r--source/he/cui/uiconfig/ui.po29
-rw-r--r--source/he/desktop/source/deployment/gui.po25
-rw-r--r--source/he/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po6
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po68
-rw-r--r--source/he/readlicense_oo/docs.po13
-rw-r--r--source/he/sc/source/ui/src.po34
-rw-r--r--source/he/sc/uiconfig/scalc/ui.po12
-rw-r--r--source/he/sfx2/uiconfig/ui.po21
-rw-r--r--source/he/svx/source/dialog.po53
-rw-r--r--source/he/svx/source/engine3d.po11
-rw-r--r--source/he/svx/source/gallery2.po10
-rw-r--r--source/he/svx/source/sidebar.po10
-rw-r--r--source/he/svx/source/sidebar/area.po44
-rw-r--r--source/he/svx/source/sidebar/graphic.po14
-rw-r--r--source/he/svx/source/sidebar/paragraph.po32
-rw-r--r--source/he/sw/source/ui/app.po21
-rw-r--r--source/he/sw/source/ui/envelp.po10
-rw-r--r--source/he/sw/source/ui/lingu.po12
-rw-r--r--source/he/sw/source/ui/misc.po14
-rw-r--r--source/he/sw/source/ui/sidebar.po92
-rw-r--r--source/he/sw/uiconfig/swriter/ui.po74
-rw-r--r--source/he/xmlsecurity/uiconfig/ui.po27
-rw-r--r--source/hr/accessibility/source/helper.po12
-rw-r--r--source/hr/android/sdremote/res/values.po12
-rw-r--r--source/hr/avmedia/source/viewer.po10
-rw-r--r--source/hr/basctl/source/basicide.po30
-rw-r--r--source/hr/basctl/source/dlged.po29
-rw-r--r--source/hr/basic/source/classes.po24
-rw-r--r--source/hr/chart2/source/controller/dialogs.po20
-rw-r--r--source/hr/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/hr/connectivity/source/resource.po28
-rw-r--r--source/hr/cui/source/customize.po26
-rw-r--r--source/hr/cui/source/dialogs.po48
-rw-r--r--source/hr/cui/source/options.po56
-rw-r--r--source/hr/cui/source/tabpages.po62
-rw-r--r--source/hr/cui/uiconfig/ui.po72
-rw-r--r--source/hr/dbaccess/source/core/resource.po18
-rw-r--r--source/hr/dbaccess/source/ext/macromigration.po14
-rw-r--r--source/hr/dbaccess/source/ui/app.po34
-rw-r--r--source/hr/dbaccess/source/ui/browser.po12
-rw-r--r--source/hr/dbaccess/source/ui/control.po8
-rw-r--r--source/hr/dbaccess/source/ui/dlg.po128
-rw-r--r--source/hr/dbaccess/source/ui/inc.po14
-rw-r--r--source/hr/dbaccess/source/ui/misc.po18
-rw-r--r--source/hr/dbaccess/source/ui/querydesign.po28
-rw-r--r--source/hr/dbaccess/source/ui/tabledesign.po26
-rw-r--r--source/hr/dbaccess/source/ui/uno.po8
-rw-r--r--source/hr/dbaccess/uiconfig/ui.po10
-rw-r--r--source/hr/desktop/source/app.po30
-rw-r--r--source/hr/desktop/source/deployment/gui.po24
-rw-r--r--source/hr/desktop/source/deployment/manager.po18
-rw-r--r--source/hr/desktop/source/deployment/registry.po19
-rw-r--r--source/hr/desktop/source/deployment/registry/component.po9
-rw-r--r--source/hr/desktop/source/deployment/registry/script.po11
-rw-r--r--source/hr/desktop/source/deployment/unopkg.po10
-rw-r--r--source/hr/desktop/uiconfig/ui.po12
-rw-r--r--source/hr/dictionaries/pt_BR/dialog.po10
-rw-r--r--source/hr/editeng/source/editeng.po8
-rw-r--r--source/hr/editeng/source/items.po92
-rw-r--r--source/hr/editeng/source/misc.po9
-rw-r--r--source/hr/editeng/source/outliner.po9
-rw-r--r--source/hr/extensions/source/abpilot.po28
-rw-r--r--source/hr/extensions/source/bibliography.po18
-rw-r--r--source/hr/extensions/source/dbpilots.po18
-rw-r--r--source/hr/extensions/source/propctrlr.po48
-rw-r--r--source/hr/extensions/source/scanner.po10
-rw-r--r--source/hr/extensions/source/update/check.po24
-rw-r--r--source/hr/filter/source/config/fragments/filters.po10
-rw-r--r--source/hr/filter/source/config/fragments/types.po8
-rw-r--r--source/hr/filter/source/pdf.po62
-rw-r--r--source/hr/filter/source/xsltdialog.po12
-rw-r--r--source/hr/forms/source/resource.po25
-rw-r--r--source/hr/formula/source/core/resource.po8
-rw-r--r--source/hr/formula/source/ui/dlg.po10
-rw-r--r--source/hr/fpicker/source/office.po10
-rw-r--r--source/hr/framework/source/classes.po22
-rw-r--r--source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po228
-rw-r--r--source/hr/librelogo/source/pythonpath.po12
-rw-r--r--source/hr/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po12
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office.po56
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po528
-rw-r--r--source/hr/padmin/source.po58
-rw-r--r--source/hr/readlicense_oo/docs.po44
-rw-r--r--source/hr/reportdesign/source/core/resource.po10
-rw-r--r--source/hr/reportdesign/source/ui/dlg.po16
-rw-r--r--source/hr/reportdesign/source/ui/inspection.po10
-rw-r--r--source/hr/reportdesign/source/ui/report.po24
-rw-r--r--source/hr/sc/source/ui/dbgui.po32
-rw-r--r--source/hr/sc/source/ui/docshell.po9
-rw-r--r--source/hr/sc/source/ui/drawfunc.po18
-rw-r--r--source/hr/sc/source/ui/formdlg.po9
-rw-r--r--source/hr/sc/source/ui/miscdlgs.po22
-rw-r--r--source/hr/sc/source/ui/navipi.po14
-rw-r--r--source/hr/sc/source/ui/pagedlg.po10
-rw-r--r--source/hr/sc/source/ui/sidebar.po10
-rw-r--r--source/hr/sc/source/ui/src.po672
-rw-r--r--source/hr/sc/source/ui/styleui.po10
-rw-r--r--source/hr/sc/uiconfig/scalc/ui.po26
-rw-r--r--source/hr/scaddins/source/analysis.po22
-rw-r--r--source/hr/scp2/source/accessories.po18
-rw-r--r--source/hr/scp2/source/activex.po9
-rw-r--r--source/hr/scp2/source/calc.po10
-rw-r--r--source/hr/scp2/source/impress.po10
-rw-r--r--source/hr/scp2/source/ooo.po14
-rw-r--r--source/hr/scp2/source/smoketest.po8
-rw-r--r--source/hr/scp2/source/writer.po12
-rw-r--r--source/hr/sd/source/core.po18
-rw-r--r--source/hr/sd/source/ui/animations.po16
-rw-r--r--source/hr/sd/source/ui/annotations.po11
-rw-r--r--source/hr/sd/source/ui/app.po74
-rw-r--r--source/hr/sd/source/ui/dlg.po30
-rw-r--r--source/hr/sd/source/ui/view.po12
-rw-r--r--source/hr/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po12
-rw-r--r--source/hr/sfx2/source/appl.po18
-rw-r--r--source/hr/sfx2/source/dialog.po24
-rw-r--r--source/hr/sfx2/source/doc.po40
-rw-r--r--source/hr/sfx2/source/view.po22
-rw-r--r--source/hr/sfx2/uiconfig/ui.po16
-rw-r--r--source/hr/starmath/source.po76
-rw-r--r--source/hr/svl/source/misc.po8
-rw-r--r--source/hr/svtools/source/contnr.po10
-rw-r--r--source/hr/svtools/source/control.po21
-rw-r--r--source/hr/svtools/source/dialogs.po40
-rw-r--r--source/hr/svtools/source/java.po18
-rw-r--r--source/hr/svtools/source/misc.po24
-rw-r--r--source/hr/svtools/source/toolpanel.po11
-rw-r--r--source/hr/svtools/uiconfig/ui.po14
-rw-r--r--source/hr/svx/inc.po16
-rw-r--r--source/hr/svx/source/dialog.po60
-rw-r--r--source/hr/svx/source/engine3d.po10
-rw-r--r--source/hr/svx/source/form.po26
-rw-r--r--source/hr/svx/source/gallery2.po16
-rw-r--r--source/hr/svx/source/items.po30
-rw-r--r--source/hr/svx/source/sidebar/area.po10
-rw-r--r--source/hr/svx/source/sidebar/paragraph.po10
-rw-r--r--source/hr/svx/source/sidebar/possize.po10
-rw-r--r--source/hr/svx/source/sidebar/text.po12
-rw-r--r--source/hr/svx/source/src.po40
-rw-r--r--source/hr/svx/source/svdraw.po96
-rw-r--r--source/hr/svx/source/tbxctrls.po28
-rw-r--r--source/hr/sw/source/core/undo.po52
-rw-r--r--source/hr/sw/source/ui/app.po50
-rw-r--r--source/hr/sw/source/ui/chrdlg.po18
-rw-r--r--source/hr/sw/source/ui/config.po36
-rw-r--r--source/hr/sw/source/ui/dbui.po44
-rw-r--r--source/hr/sw/source/ui/dialog.po26
-rw-r--r--source/hr/sw/source/ui/dochdl.po10
-rw-r--r--source/hr/sw/source/ui/docvw.po18
-rw-r--r--source/hr/sw/source/ui/envelp.po24
-rw-r--r--source/hr/sw/source/ui/fldui.po20
-rw-r--r--source/hr/sw/source/ui/fmtui.po12
-rw-r--r--source/hr/sw/source/ui/frmdlg.po22
-rw-r--r--source/hr/sw/source/ui/index.po30
-rw-r--r--source/hr/sw/source/ui/lingu.po18
-rw-r--r--source/hr/sw/source/ui/misc.po12
-rw-r--r--source/hr/sw/source/ui/shells.po14
-rw-r--r--source/hr/sw/source/ui/sidebar.po8
-rw-r--r--source/hr/sw/source/ui/uiview.po12
-rw-r--r--source/hr/sw/source/ui/utlui.po114
-rw-r--r--source/hr/sw/source/ui/web.po9
-rw-r--r--source/hr/sw/source/ui/wrtsh.po10
-rw-r--r--source/hr/sw/uiconfig/swriter/ui.po50
-rw-r--r--source/hr/swext/mediawiki/help.po32
-rw-r--r--source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po24
-rw-r--r--source/hr/sysui/desktop/share.po12
-rw-r--r--source/hr/uui/source.po46
-rw-r--r--source/hr/vcl/qa/cppunit/builder.po14
-rw-r--r--source/hr/vcl/source/src.po32
-rw-r--r--source/hr/vcl/uiconfig/ui.po20
-rw-r--r--source/hr/wizards/source/euro.po46
-rw-r--r--source/hr/wizards/source/formwizard.po236
-rw-r--r--source/hr/wizards/source/importwizard.po22
-rw-r--r--source/hr/wizards/source/template.po24
-rw-r--r--source/hr/xmlsecurity/source/component.po9
-rw-r--r--source/hr/xmlsecurity/source/dialogs.po18
-rw-r--r--source/hr/xmlsecurity/uiconfig/ui.po12
-rw-r--r--source/hu/chart2/source/controller/dialogs.po8
-rw-r--r--source/hu/connectivity/source/resource.po10
-rw-r--r--source/hu/cui/source/tabpages.po8
-rw-r--r--source/hu/cui/uiconfig/ui.po14
-rw-r--r--source/hu/dbaccess/source/ui/control.po11
-rw-r--r--source/hu/dbaccess/source/ui/dlg.po10
-rw-r--r--source/hu/dbaccess/source/ui/tabledesign.po8
-rw-r--r--source/hu/extensions/source/dbpilots.po9
-rw-r--r--source/hu/extensions/source/propctrlr.po8
-rw-r--r--source/hu/extensions/uiconfig.po8
-rw-r--r--source/hu/helpcontent2/source/text/scalc/00.po14
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/hu/helpcontent2/source/text/shared.po8
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/hu/helpcontent2/source/text/shared/02.po30
-rw-r--r--source/hu/helpcontent2/source/text/shared/explorer/database.po10
-rw-r--r--source/hu/helpcontent2/source/text/shared/guide.po8
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/hu/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/hu/padmin/source.po8
-rw-r--r--source/hu/reportdesign/source/ui/dlg.po11
-rw-r--r--source/hu/reportdesign/source/ui/inspection.po8
-rw-r--r--source/hu/sc/source/ui/cctrl.po11
-rw-r--r--source/hu/sc/source/ui/sidebar.po14
-rw-r--r--source/hu/sc/source/ui/src.po24
-rw-r--r--source/hu/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/hu/scp2/source/onlineupdate.po9
-rw-r--r--source/hu/scp2/source/winexplorerext.po9
-rw-r--r--source/hu/sd/source/ui/animations.po10
-rw-r--r--source/hu/sd/source/ui/app.po14
-rw-r--r--source/hu/sd/source/ui/dlg.po8
-rw-r--r--source/hu/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/hu/sfx2/source/dialog.po10
-rw-r--r--source/hu/sfx2/source/doc.po8
-rw-r--r--source/hu/sfx2/source/sidebar.po8
-rw-r--r--source/hu/svx/source/dialog.po14
-rw-r--r--source/hu/svx/source/sidebar/paragraph.po20
-rw-r--r--source/hu/svx/source/sidebar/text.po8
-rw-r--r--source/hu/svx/source/svdraw.po13
-rw-r--r--source/hu/svx/uiconfig/ui.po8
-rw-r--r--source/hu/sw/source/core/unocore.po9
-rw-r--r--source/hu/sw/source/ui/app.po18
-rw-r--r--source/hu/vcl/source/src.po8
-rw-r--r--source/hu/wizards/source/importwizard.po12
-rw-r--r--source/id/cui/uiconfig/ui.po156
-rw-r--r--source/id/sfx2/source/appl.po12
-rw-r--r--source/id/sfx2/source/dialog.po16
-rw-r--r--source/id/sfx2/source/doc.po34
-rw-r--r--source/id/sfx2/source/sidebar.po18
-rw-r--r--source/id/sfx2/source/view.po11
-rw-r--r--source/id/sfx2/uiconfig/ui.po69
-rw-r--r--source/id/sw/source/core/undo.po12
-rw-r--r--source/id/sw/source/ui/app.po20
-rw-r--r--source/id/sw/source/ui/envelp.po7
-rw-r--r--source/id/sw/source/ui/index.po16
-rw-r--r--source/id/sw/source/ui/lingu.po11
-rw-r--r--source/id/sw/source/ui/misc.po12
-rw-r--r--source/id/sw/source/ui/sidebar.po104
-rw-r--r--source/id/sw/uiconfig/swriter/ui.po82
-rw-r--r--source/it/basctl/source/basicide.po7
-rw-r--r--source/it/basctl/uiconfig/basicide/ui.po8
-rw-r--r--source/it/basic/source/classes.po17
-rw-r--r--source/it/chart2/source/controller/dialogs.po9
-rw-r--r--source/it/cui/source/customize.po12
-rw-r--r--source/it/cui/source/options.po8
-rw-r--r--source/it/extensions/source/propctrlr.po12
-rw-r--r--source/it/formula/source/core/resource.po14
-rw-r--r--source/it/helpcontent2/source/text/sbasic/guide.po50
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po2404
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/01.po20
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/02.po100
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/it/readlicense_oo/docs.po8
-rw-r--r--source/it/sc/source/ui/dbgui.po8
-rw-r--r--source/it/sc/source/ui/sidebar.po10
-rw-r--r--source/it/sc/source/ui/src.po30
-rw-r--r--source/it/scaddins/source/analysis.po67
-rw-r--r--source/ja/cui/source/options.po10
-rw-r--r--source/ja/cui/source/tabpages.po24
-rw-r--r--source/ja/cui/uiconfig/ui.po14
-rw-r--r--source/ja/dictionaries/en/dialog.po12
-rw-r--r--source/ja/dictionaries/pt_BR/dialog.po12
-rw-r--r--source/ja/helpcontent2/source/auxiliary.po8
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po32
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po28
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po96
-rw-r--r--source/ja/helpcontent2/source/text/shared/02.po32
-rw-r--r--source/ja/helpcontent2/source/text/shared/autokorr.po13
-rw-r--r--source/ja/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/ja/helpcontent2/source/text/shared/guide.po16
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/ja/helpcontent2/source/text/smath/01.po28
-rw-r--r--source/ja/helpcontent2/source/text/smath/guide.po10
-rw-r--r--source/ja/helpcontent2/source/text/swriter/00.po16
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/ja/helpcontent2/source/text/swriter/02.po12
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/ja/sc/source/ui/src.po17
-rw-r--r--source/ja/scaddins/source/pricing.po10
-rw-r--r--source/ja/svtools/source/misc.po20
-rw-r--r--source/ja/svx/uiconfig/ui.po14
-rw-r--r--source/ja/sw/source/ui/utlui.po10
-rw-r--r--source/ja/sw/uiconfig/swriter/ui.po10
-rw-r--r--source/kk/basctl/source/basicide.po22
-rw-r--r--source/kk/basic/source/classes.po8
-rw-r--r--source/kk/chart2/source/controller/dialogs.po8
-rw-r--r--source/kk/cui/source/customize.po8
-rw-r--r--source/kk/cui/source/dialogs.po8
-rw-r--r--source/kk/cui/source/tabpages.po8
-rw-r--r--source/kk/dbaccess/source/core/resource.po16
-rw-r--r--source/kk/dbaccess/source/ui/app.po16
-rw-r--r--source/kk/dbaccess/source/ui/dlg.po21
-rw-r--r--source/kk/extensions/source/propctrlr.po16
-rw-r--r--source/kk/extras/source/gallery/share.po8
-rw-r--r--source/kk/fpicker/source/office.po12
-rw-r--r--source/kk/instsetoo_native/inc_openoffice/windows/msi_languages.po146
-rw-r--r--source/kk/librelogo/source/pythonpath.po8
-rw-r--r--source/kk/mysqlc/source.po8
-rw-r--r--source/kk/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po50
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/kk/padmin/source.po22
-rw-r--r--source/kk/readlicense_oo/docs.po154
-rw-r--r--source/kk/sc/source/ui/src.po489
-rw-r--r--source/kk/sc/uiconfig/scalc/ui.po6
-rw-r--r--source/kk/scaddins/source/analysis.po40
-rw-r--r--source/kk/sd/source/core.po26
-rw-r--r--source/kk/sd/source/ui/animations.po8
-rw-r--r--source/kk/sd/source/ui/app.po8
-rw-r--r--source/kk/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po10
-rw-r--r--source/kk/sfx2/source/doc.po8
-rw-r--r--source/kk/svx/source/dialog.po374
-rw-r--r--source/kk/svx/source/gallery2.po30
-rw-r--r--source/kk/svx/source/sidebar/area.po54
-rw-r--r--source/kk/svx/source/sidebar/graphic.po22
-rw-r--r--source/kk/svx/source/sidebar/paragraph.po76
-rw-r--r--source/kk/svx/source/sidebar/possize.po44
-rw-r--r--source/kk/svx/source/sidebar/text.po56
-rw-r--r--source/kk/svx/source/src.po38
-rw-r--r--source/kk/svx/source/svdraw.po210
-rw-r--r--source/kk/vcl/qa/cppunit/builder.po20
-rw-r--r--source/kk/vcl/source/src.po8
-rw-r--r--source/kk/vcl/uiconfig/ui.po18
-rw-r--r--source/kk/wizards/source/formwizard.po12
-rw-r--r--source/kl/svx/source/dialog.po90
-rw-r--r--source/kn/basctl/source/basicide.po5
-rw-r--r--source/kn/basctl/uiconfig/basicide/ui.po13
-rw-r--r--source/kn/chart2/source/controller/dialogs.po6
-rw-r--r--source/kn/cui/source/dialogs.po10
-rw-r--r--source/kn/cui/source/options.po10
-rw-r--r--source/kn/cui/source/tabpages.po11
-rw-r--r--source/kn/cui/uiconfig/ui.po65
-rw-r--r--source/kn/dbaccess/source/ui/app.po11
-rw-r--r--source/kn/desktop/source/app.po8
-rw-r--r--source/kn/desktop/source/deployment/gui.po6
-rw-r--r--source/kn/desktop/uiconfig/ui.po12
-rw-r--r--source/kn/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po9
-rw-r--r--source/kn/editeng/source/editeng.po8
-rw-r--r--source/kn/filter/source/config/fragments/types.po7
-rw-r--r--source/kn/formula/source/core/resource.po10
-rw-r--r--source/kn/instsetoo_native/inc_openoffice/windows/msi_languages.po20
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/kn/padmin/source.po7
-rw-r--r--source/kn/readlicense_oo/docs.po26
-rw-r--r--source/kn/sc/source/ui/src.po39
-rw-r--r--source/kn/sc/uiconfig/scalc/ui.po14
-rw-r--r--source/kn/scaddins/source/analysis.po7
-rw-r--r--source/kn/sd/source/ui/animations.po25
-rw-r--r--source/kn/sd/source/ui/app.po30
-rw-r--r--source/kn/sd/source/ui/dlg.po8
-rw-r--r--source/kn/sd/source/ui/table.po15
-rw-r--r--source/kn/sd/uiconfig/sdraw/ui.po9
-rw-r--r--source/kn/sd/uiconfig/simpress/ui.po9
-rw-r--r--source/kn/sdext/source/minimizer.po9
-rw-r--r--source/kn/sfx2/source/appl.po11
-rw-r--r--source/kn/sfx2/source/doc.po18
-rw-r--r--source/kn/sfx2/source/view.po11
-rw-r--r--source/kn/starmath/source.po27
-rw-r--r--source/kn/starmath/uiconfig/smath/ui.po10
-rw-r--r--source/kn/svtools/source/dialogs.po7
-rw-r--r--source/kn/svtools/source/misc.po14
-rw-r--r--source/kn/svx/source/accessibility.po5
-rw-r--r--source/kn/svx/source/dialog.po58
-rw-r--r--source/kn/svx/source/form.po5
-rw-r--r--source/kn/svx/source/items.po13
-rw-r--r--source/kn/svx/source/sidebar/text.po15
-rw-r--r--source/kn/svx/source/svdraw.po27
-rw-r--r--source/kn/sw/source/core/undo.po8
-rw-r--r--source/kn/sw/source/ui/app.po8
-rw-r--r--source/kn/sw/source/ui/chrdlg.po5
-rw-r--r--source/kn/sw/source/ui/envelp.po7
-rw-r--r--source/kn/sw/source/ui/utlui.po10
-rw-r--r--source/kn/sw/uiconfig/swriter/ui.po104
-rw-r--r--source/kn/swext/mediawiki/help.po8
-rw-r--r--source/kn/uui/uiconfig/ui.po13
-rw-r--r--source/kn/vcl/qa/cppunit/builder.po23
-rw-r--r--source/kn/vcl/source/src.po7
-rw-r--r--source/kn/vcl/uiconfig/ui.po28
-rw-r--r--source/kn/wizards/source/formwizard.po7
-rw-r--r--source/kn/wizards/source/importwizard.po9
-rw-r--r--source/kn/wizards/source/template.po7
-rw-r--r--source/kn/xmlsecurity/uiconfig/ui.po18
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/ky/svx/source/dialog.po90
-rw-r--r--source/ml/android/sdremote/res/values.po18
-rw-r--r--source/ml/chart2/source/controller/dialogs.po11
-rw-r--r--source/ml/chart2/uiconfig/ui.po34
-rw-r--r--source/ml/cui/source/customize.po8
-rw-r--r--source/ml/cui/source/tabpages.po10
-rw-r--r--source/ml/cui/uiconfig/ui.po306
-rw-r--r--source/ml/dbaccess/source/ui/misc.po7
-rw-r--r--source/ml/dbaccess/uiconfig/ui.po43
-rw-r--r--source/ml/desktop/source/app.po9
-rw-r--r--source/ml/desktop/source/deployment/gui.po53
-rw-r--r--source/ml/desktop/source/deployment/unopkg.po9
-rw-r--r--source/ml/desktop/uiconfig/ui.po8
-rw-r--r--source/ml/dictionaries/is.po10
-rw-r--r--source/ml/editeng/source/editeng.po10
-rw-r--r--source/ml/editeng/source/items.po11
-rw-r--r--source/ml/extensions/uiconfig.po34
-rw-r--r--source/ml/extras/source/gallery/share.po30
-rw-r--r--source/ml/filter/source/pdf.po9
-rw-r--r--source/ml/formula/source/core/resource.po15
-rw-r--r--source/ml/framework/source/classes.po9
-rw-r--r--source/ml/librelogo/source/pythonpath.po15
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/ml/padmin/uiconfig/ui.po64
-rw-r--r--source/ml/reportbuilder/java/org/libreoffice/report/function/metadata.po20
-rw-r--r--source/ml/reportdesign/source/core/resource.po7
-rw-r--r--source/ml/reportdesign/source/ui/inspection.po7
-rw-r--r--source/ml/sc/source/ui/sidebar.po14
-rw-r--r--source/ml/scaddins/source/analysis.po27
-rw-r--r--source/ml/scaddins/source/pricing.po22
-rw-r--r--source/ml/scp2/source/extensions.po8
-rw-r--r--source/ml/scp2/source/ooo.po18
-rw-r--r--source/ml/sd/source/core.po7
-rw-r--r--source/ml/sd/source/ui/animations.po10
-rw-r--r--source/ml/sd/source/ui/app.po10
-rw-r--r--source/ml/sd/source/ui/dlg.po26
-rw-r--r--source/ml/sd/source/ui/view.po19
-rw-r--r--source/ml/sd/uiconfig/sdraw/ui.po8
-rw-r--r--source/ml/sd/uiconfig/simpress/ui.po46
-rw-r--r--source/ml/sfx2/source/appl.po8
-rw-r--r--source/ml/sfx2/source/dialog.po14
-rw-r--r--source/ml/sfx2/source/doc.po10
-rw-r--r--source/ml/sfx2/source/sidebar.po18
-rw-r--r--source/ml/sfx2/uiconfig/ui.po48
-rw-r--r--source/ml/starmath/source.po33
-rw-r--r--source/ml/svtools/source/java.po14
-rw-r--r--source/ml/svtools/source/misc.po14
-rw-r--r--source/ml/svtools/uiconfig/ui.po8
-rw-r--r--source/ml/svx/source/dialog.po218
-rw-r--r--source/ml/svx/source/engine3d.po11
-rw-r--r--source/ml/svx/source/gallery2.po16
-rw-r--r--source/ml/svx/source/sidebar.po10
-rw-r--r--source/ml/svx/source/sidebar/area.po18
-rw-r--r--source/ml/sw/source/core/undo.po10
-rw-r--r--source/ml/sw/source/ui/app.po21
-rw-r--r--source/ml/sw/source/ui/envelp.po7
-rw-r--r--source/ml/sw/source/ui/index.po17
-rw-r--r--source/ml/sw/source/ui/lingu.po11
-rw-r--r--source/ml/sw/source/ui/misc.po12
-rw-r--r--source/ml/sw/source/ui/sidebar.po102
-rw-r--r--source/ml/sw/uiconfig/swriter/ui.po88
-rw-r--r--source/ml/swext/mediawiki/help.po8
-rw-r--r--source/ml/uui/source.po7
-rw-r--r--source/ml/uui/uiconfig/ui.po22
-rw-r--r--source/ml/vcl/source/src.po23
-rw-r--r--source/ml/vcl/uiconfig/ui.po18
-rw-r--r--source/ml/wizards/source/formwizard.po10
-rw-r--r--source/ml/wizards/source/importwizard.po11
-rw-r--r--source/ml/xmlsecurity/uiconfig/ui.po79
-rw-r--r--source/mr/svx/source/dialog.po38
-rw-r--r--source/nb/android/sdremote/res/values.po9
-rw-r--r--source/nb/cui/uiconfig/ui.po136
-rw-r--r--source/nb/dbaccess/source/ui/misc.po8
-rw-r--r--source/nb/dbaccess/uiconfig/ui.po34
-rw-r--r--source/nb/filter/source/pdf.po8
-rw-r--r--source/nb/formula/source/core/resource.po22
-rw-r--r--source/nb/framework/source/classes.po10
-rw-r--r--source/nb/starmath/source.po31
-rw-r--r--source/nb/vcl/source/src.po22
-rw-r--r--source/nb/vcl/uiconfig/ui.po18
-rw-r--r--source/nb/xmlsecurity/uiconfig/ui.po34
-rw-r--r--source/nl/chart2/uiconfig/ui.po16
-rw-r--r--source/nl/cui/source/options.po10
-rw-r--r--source/nl/cui/uiconfig/ui.po18
-rw-r--r--source/nl/filter/source/pdf.po10
-rw-r--r--source/nl/helpcontent2/source/text/schart/01.po20
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/nl/helpcontent2/source/text/shared/02.po24
-rw-r--r--source/nl/helpcontent2/source/text/shared/05.po15
-rw-r--r--source/nl/helpcontent2/source/text/shared/explorer/database.po18
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po12
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/nl/helpcontent2/source/text/simpress/04.po12
-rw-r--r--source/nl/helpcontent2/source/text/swriter/00.po7
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po16
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po19
-rw-r--r--source/nl/sc/source/ui/src.po16
-rw-r--r--source/nl/scp2/source/ooo.po10
-rw-r--r--source/nl/svx/source/dialog.po32
-rw-r--r--source/nl/svx/source/sidebar/area.po14
-rw-r--r--source/nl/svx/source/sidebar/graphic.po10
-rw-r--r--source/nl/svx/source/sidebar/line.po11
-rw-r--r--source/nl/svx/source/sidebar/paragraph.po12
-rw-r--r--source/nl/svx/source/sidebar/text.po10
-rw-r--r--source/nl/sw/uiconfig/swriter/ui.po16
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po12
-rw-r--r--source/pl/svx/source/dialog.po7
-rw-r--r--source/pt/extensions/source/propctrlr.po8
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/guide.po8
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po62
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared/02.po12
-rw-r--r--source/pt/helpcontent2/source/text/scalc.po8
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po94
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/pt/helpcontent2/source/text/shared/explorer/database.po10
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/pt/helpcontent2/source/text/simpress/01.po10
-rw-r--r--source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/pt/sc/source/ui/src.po8
-rw-r--r--source/pt/svx/source/src.po8
-rw-r--r--source/pt/wizards/source/formwizard.po10
-rw-r--r--source/ro/cui/source/tabpages.po12
-rw-r--r--source/ro/cui/uiconfig/ui.po36
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/ro/sfx2/uiconfig/ui.po8
-rw-r--r--source/ro/svx/source/accessibility.po10
-rw-r--r--source/ro/svx/source/dialog.po32
-rw-r--r--source/ro/svx/source/sidebar/area.po12
-rw-r--r--source/ro/svx/source/sidebar/graphic.po8
-rw-r--r--source/ro/svx/source/svdraw.po10
-rw-r--r--source/ro/xmlsecurity/uiconfig/ui.po12
-rw-r--r--source/ru/cui/uiconfig/ui.po10
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/guide.po9
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po16
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared/01.po9
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po9
-rw-r--r--source/ru/sd/source/ui/app.po7
-rw-r--r--source/ru/sw/source/ui/config.po9
-rw-r--r--source/ru/xmlsecurity/uiconfig/ui.po27
-rw-r--r--source/sa-IN/sysui/desktop/share.po8
-rw-r--r--source/sh/accessibility/source/helper.po6
-rw-r--r--source/sh/android/sdremote/res/values.po44
-rw-r--r--source/sh/avmedia/source/framework.po6
-rw-r--r--source/sh/avmedia/source/viewer.po6
-rw-r--r--source/sh/basctl/source/basicide.po26
-rw-r--r--source/sh/basctl/source/dlged.po6
-rw-r--r--source/sh/basctl/uiconfig/basicide/ui.po6
-rw-r--r--source/sh/basic/source/classes.po7
-rw-r--r--source/sh/basic/source/sbx.po6
-rw-r--r--source/sh/chart2/source/controller/dialogs.po54
-rw-r--r--source/sh/chart2/uiconfig/ui.po133
-rw-r--r--source/sh/connectivity/registry/ado/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/calc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/flat/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/kab/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/macab/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/mork/org/openoffice/Office/DataAccess.po7
-rw-r--r--source/sh/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/connectivity/source/resource.po6
-rw-r--r--source/sh/cui/source/customize.po22
-rw-r--r--source/sh/cui/source/dialogs.po92
-rw-r--r--source/sh/cui/source/options.po79
-rw-r--r--source/sh/cui/source/tabpages.po193
-rw-r--r--source/sh/cui/uiconfig/ui.po1747
-rw-r--r--source/sh/dbaccess/source/core/resource.po6
-rw-r--r--source/sh/dbaccess/source/ext/macromigration.po8
-rw-r--r--source/sh/dbaccess/source/sdbtools/resource.po6
-rw-r--r--source/sh/dbaccess/source/ui/app.po7
-rw-r--r--source/sh/dbaccess/source/ui/browser.po6
-rw-r--r--source/sh/dbaccess/source/ui/control.po6
-rw-r--r--source/sh/dbaccess/source/ui/dlg.po45
-rw-r--r--source/sh/dbaccess/source/ui/inc.po6
-rw-r--r--source/sh/dbaccess/source/ui/misc.po10
-rw-r--r--source/sh/dbaccess/source/ui/querydesign.po8
-rw-r--r--source/sh/dbaccess/source/ui/relationdesign.po6
-rw-r--r--source/sh/dbaccess/source/ui/tabledesign.po8
-rw-r--r--source/sh/dbaccess/source/ui/uno.po6
-rw-r--r--source/sh/dbaccess/uiconfig/ui.po175
-rw-r--r--source/sh/desktop/source/app.po11
-rw-r--r--source/sh/desktop/source/deployment/gui.po25
-rw-r--r--source/sh/desktop/source/deployment/manager.po6
-rw-r--r--source/sh/desktop/source/deployment/misc.po6
-rw-r--r--source/sh/desktop/source/deployment/registry.po6
-rw-r--r--source/sh/desktop/source/deployment/registry/component.po6
-rw-r--r--source/sh/desktop/source/deployment/registry/configuration.po6
-rw-r--r--source/sh/desktop/source/deployment/registry/help.po6
-rw-r--r--source/sh/desktop/source/deployment/registry/package.po6
-rw-r--r--source/sh/desktop/source/deployment/registry/script.po6
-rw-r--r--source/sh/desktop/source/deployment/registry/sfwk.po6
-rw-r--r--source/sh/desktop/source/deployment/unopkg.po10
-rw-r--r--source/sh/desktop/uiconfig/ui.po8
-rw-r--r--source/sh/dictionaries/af_ZA.po6
-rw-r--r--source/sh/dictionaries/an_ES.po6
-rw-r--r--source/sh/dictionaries/ar.po6
-rw-r--r--source/sh/dictionaries/be_BY.po6
-rw-r--r--source/sh/dictionaries/bg_BG.po6
-rw-r--r--source/sh/dictionaries/bn_BD.po6
-rw-r--r--source/sh/dictionaries/br_FR.po6
-rw-r--r--source/sh/dictionaries/bs_BA.po13
-rw-r--r--source/sh/dictionaries/ca.po6
-rw-r--r--source/sh/dictionaries/cs_CZ.po6
-rw-r--r--source/sh/dictionaries/da_DK.po6
-rw-r--r--source/sh/dictionaries/de.po6
-rw-r--r--source/sh/dictionaries/el_GR.po6
-rw-r--r--source/sh/dictionaries/en.po6
-rw-r--r--source/sh/dictionaries/en/dialog.po6
-rw-r--r--source/sh/dictionaries/en/dialog/registry/data/org/openoffice/Office.po10
-rw-r--r--source/sh/dictionaries/es.po6
-rw-r--r--source/sh/dictionaries/et_EE.po6
-rw-r--r--source/sh/dictionaries/fr_FR.po6
-rw-r--r--source/sh/dictionaries/gd_GB.po6
-rw-r--r--source/sh/dictionaries/gl.po6
-rw-r--r--source/sh/dictionaries/gu_IN.po6
-rw-r--r--source/sh/dictionaries/he_IL.po6
-rw-r--r--source/sh/dictionaries/hi_IN.po6
-rw-r--r--source/sh/dictionaries/hr_HR.po6
-rw-r--r--source/sh/dictionaries/hu_HU.po6
-rw-r--r--source/sh/dictionaries/hu_HU/dialog.po7
-rw-r--r--source/sh/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po10
-rw-r--r--source/sh/dictionaries/it_IT.po6
-rw-r--r--source/sh/dictionaries/ku_TR.po6
-rw-r--r--source/sh/dictionaries/lt_LT.po6
-rw-r--r--source/sh/dictionaries/lv_LV.po6
-rw-r--r--source/sh/dictionaries/ne_NP.po6
-rw-r--r--source/sh/dictionaries/nl_NL.po6
-rw-r--r--source/sh/dictionaries/no.po6
-rw-r--r--source/sh/dictionaries/oc_FR.po6
-rw-r--r--source/sh/dictionaries/pl_PL.po6
-rw-r--r--source/sh/dictionaries/pt_BR.po9
-rw-r--r--source/sh/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po9
-rw-r--r--source/sh/dictionaries/pt_PT.po6
-rw-r--r--source/sh/dictionaries/ro.po6
-rw-r--r--source/sh/dictionaries/ru_RU.po6
-rw-r--r--source/sh/dictionaries/ru_RU/dialog.po6
-rw-r--r--source/sh/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po10
-rw-r--r--source/sh/dictionaries/si_LK.po6
-rw-r--r--source/sh/dictionaries/sk_SK.po6
-rw-r--r--source/sh/dictionaries/sl_SI.po6
-rw-r--r--source/sh/dictionaries/sr.po6
-rw-r--r--source/sh/dictionaries/sv_SE.po6
-rw-r--r--source/sh/dictionaries/sw_TZ.po6
-rw-r--r--source/sh/dictionaries/te_IN.po6
-rw-r--r--source/sh/dictionaries/th_TH.po6
-rw-r--r--source/sh/dictionaries/uk_UA.po6
-rw-r--r--source/sh/dictionaries/vi.po6
-rw-r--r--source/sh/dictionaries/zu_ZA.po6
-rw-r--r--source/sh/editeng/source/accessibility.po6
-rw-r--r--source/sh/editeng/source/editeng.po10
-rw-r--r--source/sh/editeng/source/items.po24
-rw-r--r--source/sh/editeng/source/misc.po6
-rw-r--r--source/sh/editeng/source/outliner.po6
-rw-r--r--source/sh/extensions/source/abpilot.po7
-rw-r--r--source/sh/extensions/source/bibliography.po8
-rw-r--r--source/sh/extensions/source/dbpilots.po11
-rw-r--r--source/sh/extensions/source/propctrlr.po27
-rw-r--r--source/sh/extensions/source/scanner.po7
-rw-r--r--source/sh/extensions/source/update/check.po14
-rw-r--r--source/sh/extensions/source/update/check/org/openoffice/Office.po6
-rw-r--r--source/sh/extensions/uiconfig.po37
-rw-r--r--source/sh/extras/source/gallery/share.po28
-rw-r--r--source/sh/filter/source/config/fragments/filters.po6
-rw-r--r--source/sh/filter/source/config/fragments/internalgraphicfilters.po6
-rw-r--r--source/sh/filter/source/config/fragments/types.po14
-rw-r--r--source/sh/filter/source/flash.po6
-rw-r--r--source/sh/filter/source/graphicfilter/eps.po6
-rw-r--r--source/sh/filter/source/pdf.po18
-rw-r--r--source/sh/filter/source/t602.po6
-rw-r--r--source/sh/filter/source/xsltdialog.po12
-rw-r--r--source/sh/filter/uiconfig/ui.po25
-rw-r--r--source/sh/forms/source/resource.po6
-rw-r--r--source/sh/formula/source/core/resource.po15
-rw-r--r--source/sh/formula/source/ui/dlg.po24
-rw-r--r--source/sh/fpicker/source/office.po11
-rw-r--r--source/sh/framework/source/classes.po10
-rw-r--r--source/sh/framework/source/services.po6
-rw-r--r--source/sh/instsetoo_native/inc_openoffice/windows/msi_languages.po124
-rw-r--r--source/sh/librelogo/source/pythonpath.po69
-rw-r--r--source/sh/mysqlc/source.po6
-rw-r--r--source/sh/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sh/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po12
-rw-r--r--source/sh/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po6
-rw-r--r--source/sh/nlpsolver/src/locale.po6
-rw-r--r--source/sh/officecfg/registry/data/org/openoffice/Office.po788
-rw-r--r--source/sh/officecfg/registry/data/org/openoffice/Office/UI.po931
-rw-r--r--source/sh/officecfg/registry/data/org/openoffice/TypeDetection.po19
-rw-r--r--source/sh/padmin/source.po20
-rw-r--r--source/sh/padmin/uiconfig/ui.po268
-rw-r--r--source/sh/readlicense_oo/docs.po23
-rw-r--r--source/sh/reportbuilder/java/org/libreoffice/report/function/metadata.po23
-rw-r--r--source/sh/reportdesign/source/core/resource.po9
-rw-r--r--source/sh/reportdesign/source/ui/dlg.po27
-rw-r--r--source/sh/reportdesign/source/ui/inspection.po13
-rw-r--r--source/sh/reportdesign/source/ui/report.po9
-rw-r--r--source/sh/sc/source/core/src.po6
-rw-r--r--source/sh/sc/source/ui/cctrl.po6
-rw-r--r--source/sh/sc/source/ui/dbgui.po35
-rw-r--r--source/sh/sc/source/ui/docshell.po6
-rw-r--r--source/sh/sc/source/ui/drawfunc.po17
-rw-r--r--source/sh/sc/source/ui/formdlg.po6
-rw-r--r--source/sh/sc/source/ui/miscdlgs.po34
-rw-r--r--source/sh/sc/source/ui/navipi.po10
-rw-r--r--source/sh/sc/source/ui/optdlg.po6
-rw-r--r--source/sh/sc/source/ui/pagedlg.po12
-rw-r--r--source/sh/sc/source/ui/sidebar.po101
-rw-r--r--source/sh/sc/source/ui/src.po1665
-rw-r--r--source/sh/sc/source/ui/styleui.po11
-rw-r--r--source/sh/sc/uiconfig/scalc/ui.po584
-rw-r--r--source/sh/scaddins/source/analysis.po443
-rw-r--r--source/sh/scaddins/source/datefunc.po19
-rw-r--r--source/sh/scaddins/source/pricing.po8
-rw-r--r--source/sh/sccomp/source/solver.po6
-rw-r--r--source/sh/scp2/source/accessories.po251
-rw-r--r--source/sh/scp2/source/activex.po6
-rw-r--r--source/sh/scp2/source/base.po7
-rw-r--r--source/sh/scp2/source/calc.po6
-rw-r--r--source/sh/scp2/source/draw.po6
-rw-r--r--source/sh/scp2/source/extensions.po27
-rw-r--r--source/sh/scp2/source/gnome.po6
-rw-r--r--source/sh/scp2/source/graphicfilter.po8
-rw-r--r--source/sh/scp2/source/impress.po6
-rw-r--r--source/sh/scp2/source/kde.po6
-rw-r--r--source/sh/scp2/source/math.po6
-rw-r--r--source/sh/scp2/source/onlineupdate.po6
-rw-r--r--source/sh/scp2/source/ooo.po199
-rw-r--r--source/sh/scp2/source/python.po6
-rw-r--r--source/sh/scp2/source/quickstart.po6
-rw-r--r--source/sh/scp2/source/sdkoo.po6
-rw-r--r--source/sh/scp2/source/smoketest.po6
-rw-r--r--source/sh/scp2/source/stdlibs.po6
-rw-r--r--source/sh/scp2/source/tde.po6
-rw-r--r--source/sh/scp2/source/winexplorerext.po6
-rw-r--r--source/sh/scp2/source/writer.po6
-rw-r--r--source/sh/scp2/source/xsltfilter.po7
-rw-r--r--source/sh/sd/source/core.po20
-rw-r--r--source/sh/sd/source/filter/html.po7
-rw-r--r--source/sh/sd/source/ui/accessibility.po7
-rw-r--r--source/sh/sd/source/ui/animations.po30
-rw-r--r--source/sh/sd/source/ui/annotations.po13
-rw-r--r--source/sh/sd/source/ui/app.po68
-rw-r--r--source/sh/sd/source/ui/dlg.po134
-rw-r--r--source/sh/sd/source/ui/slideshow.po6
-rw-r--r--source/sh/sd/source/ui/table.po7
-rw-r--r--source/sh/sd/source/ui/view.po26
-rw-r--r--source/sh/sd/uiconfig/sdraw/ui.po68
-rw-r--r--source/sh/sd/uiconfig/simpress/ui.po173
-rw-r--r--source/sh/sdext/source/minimizer.po6
-rw-r--r--source/sh/sdext/source/minimizer/registry/data/org/openoffice/Office.po6
-rw-r--r--source/sh/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po9
-rw-r--r--source/sh/setup_native/source/mac.po8
-rw-r--r--source/sh/sfx2/source/appl.po20
-rw-r--r--source/sh/sfx2/source/bastyp.po6
-rw-r--r--source/sh/sfx2/source/control.po6
-rw-r--r--source/sh/sfx2/source/dialog.po23
-rw-r--r--source/sh/sfx2/source/doc.po20
-rw-r--r--source/sh/sfx2/source/menu.po6
-rw-r--r--source/sh/sfx2/source/sidebar.po21
-rw-r--r--source/sh/sfx2/source/view.po9
-rw-r--r--source/sh/sfx2/uiconfig/ui.po185
-rw-r--r--source/sh/shell/source/win32/shlxthandler/res.po6
-rw-r--r--source/sh/starmath/source.po760
-rw-r--r--source/sh/starmath/uiconfig/smath/ui.po558
-rw-r--r--source/sh/svl/source/misc.po19
-rw-r--r--source/sh/svtools/source/contnr.po10
-rw-r--r--source/sh/svtools/source/control.po14
-rw-r--r--source/sh/svtools/source/dialogs.po10
-rw-r--r--source/sh/svtools/source/java.po30
-rw-r--r--source/sh/svtools/source/misc.po82
-rw-r--r--source/sh/svtools/source/toolpanel.po6
-rw-r--r--source/sh/svtools/uiconfig/ui.po67
-rw-r--r--source/sh/svx/inc.po10
-rw-r--r--source/sh/svx/source/accessibility.po6
-rw-r--r--source/sh/svx/source/core.po6
-rw-r--r--source/sh/svx/source/dialog.po325
-rw-r--r--source/sh/svx/source/engine3d.po30
-rw-r--r--source/sh/svx/source/fmcomp.po6
-rw-r--r--source/sh/svx/source/form.po38
-rw-r--r--source/sh/svx/source/gallery2.po27
-rw-r--r--source/sh/svx/source/items.po14
-rw-r--r--source/sh/svx/source/sidebar.po13
-rw-r--r--source/sh/svx/source/sidebar/area.po47
-rw-r--r--source/sh/svx/source/sidebar/graphic.po25
-rw-r--r--source/sh/svx/source/sidebar/line.po71
-rw-r--r--source/sh/svx/source/sidebar/paragraph.po183
-rw-r--r--source/sh/svx/source/sidebar/possize.po47
-rw-r--r--source/sh/svx/source/sidebar/text.po95
-rw-r--r--source/sh/svx/source/src.po11
-rw-r--r--source/sh/svx/source/stbctrls.po8
-rw-r--r--source/sh/svx/source/svdraw.po66
-rw-r--r--source/sh/svx/source/table.po6
-rw-r--r--source/sh/svx/source/tbxctrls.po23
-rw-r--r--source/sh/svx/source/toolbars.po6
-rw-r--r--source/sh/svx/source/unodialogs/textconversiondlgs.po31
-rw-r--r--source/sh/svx/uiconfig/ui.po214
-rw-r--r--source/sh/sw/source/core/layout.po6
-rw-r--r--source/sh/sw/source/core/undo.po19
-rw-r--r--source/sh/sw/source/core/unocore.po6
-rw-r--r--source/sh/sw/source/ui/app.po81
-rw-r--r--source/sh/sw/source/ui/chrdlg.po22
-rw-r--r--source/sh/sw/source/ui/config.po95
-rw-r--r--source/sh/sw/source/ui/dbui.po28
-rw-r--r--source/sh/sw/source/ui/dialog.po20
-rw-r--r--source/sh/sw/source/ui/dochdl.po6
-rw-r--r--source/sh/sw/source/ui/docvw.po11
-rw-r--r--source/sh/sw/source/ui/envelp.po36
-rw-r--r--source/sh/sw/source/ui/fldui.po56
-rw-r--r--source/sh/sw/source/ui/fmtui.po25
-rw-r--r--source/sh/sw/source/ui/frmdlg.po33
-rw-r--r--source/sh/sw/source/ui/globdoc.po6
-rw-r--r--source/sh/sw/source/ui/index.po56
-rw-r--r--source/sh/sw/source/ui/lingu.po12
-rw-r--r--source/sh/sw/source/ui/misc.po16
-rw-r--r--source/sh/sw/source/ui/ribbar.po10
-rw-r--r--source/sh/sw/source/ui/shells.po11
-rw-r--r--source/sh/sw/source/ui/sidebar.po107
-rw-r--r--source/sh/sw/source/ui/smartmenu.po6
-rw-r--r--source/sh/sw/source/ui/table.po6
-rw-r--r--source/sh/sw/source/ui/uiview.po9
-rw-r--r--source/sh/sw/source/ui/utlui.po59
-rw-r--r--source/sh/sw/source/ui/web.po6
-rw-r--r--source/sh/sw/source/ui/wrtsh.po6
-rw-r--r--source/sh/sw/uiconfig/swriter/ui.po756
-rw-r--r--source/sh/swext/mediawiki/help.po18
-rw-r--r--source/sh/swext/mediawiki/src.po6
-rw-r--r--source/sh/swext/mediawiki/src/registry/data/org/openoffice/Office.po6
-rw-r--r--source/sh/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po6
-rw-r--r--source/sh/sysui/desktop/share.po17
-rw-r--r--source/sh/tubes/uiconfig/ui.po6
-rw-r--r--source/sh/uui/source.po15
-rw-r--r--source/sh/uui/uiconfig/ui.po79
-rw-r--r--source/sh/vcl/qa/cppunit/builder.po23
-rw-r--r--source/sh/vcl/source/edit.po6
-rw-r--r--source/sh/vcl/source/src.po44
-rw-r--r--source/sh/vcl/uiconfig/ui.po22
-rw-r--r--source/sh/wizards/source/euro.po6
-rw-r--r--source/sh/wizards/source/formwizard.po91
-rw-r--r--source/sh/wizards/source/importwizard.po15
-rw-r--r--source/sh/wizards/source/template.po6
-rw-r--r--source/sh/xmlsecurity/source/component.po6
-rw-r--r--source/sh/xmlsecurity/source/dialogs.po9
-rw-r--r--source/sh/xmlsecurity/uiconfig/ui.po353
-rw-r--r--source/sk/helpcontent2/source/auxiliary.po66
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/guide.po9
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po25
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared/01.po11
-rw-r--r--source/sk/helpcontent2/source/text/shared.po8
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po13
-rw-r--r--source/sk/helpcontent2/source/text/shared/guide.po13
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/sk/helpcontent2/source/text/simpress.po75
-rw-r--r--source/sk/helpcontent2/source/text/swriter.po7
-rw-r--r--source/sr/accessibility/source/helper.po6
-rw-r--r--source/sr/android/sdremote/res/values.po43
-rw-r--r--source/sr/avmedia/source/framework.po6
-rw-r--r--source/sr/avmedia/source/viewer.po6
-rw-r--r--source/sr/basctl/source/basicide.po26
-rw-r--r--source/sr/basctl/source/dlged.po6
-rw-r--r--source/sr/basctl/uiconfig/basicide/ui.po6
-rw-r--r--source/sr/basic/source/classes.po7
-rw-r--r--source/sr/basic/source/sbx.po6
-rw-r--r--source/sr/chart2/source/controller/dialogs.po52
-rw-r--r--source/sr/chart2/uiconfig/ui.po35
-rw-r--r--source/sr/connectivity/registry/ado/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/calc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/dbase/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/flat/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/kab/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/macab/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/mork/org/openoffice/Office/DataAccess.po7
-rw-r--r--source/sr/connectivity/registry/mozab/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/odbc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/postgresql/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/connectivity/source/resource.po6
-rw-r--r--source/sr/cui/source/customize.po22
-rw-r--r--source/sr/cui/source/dialogs.po91
-rw-r--r--source/sr/cui/source/options.po79
-rw-r--r--source/sr/cui/source/tabpages.po197
-rw-r--r--source/sr/cui/uiconfig/ui.po1687
-rw-r--r--source/sr/dbaccess/source/core/resource.po6
-rw-r--r--source/sr/dbaccess/source/ext/macromigration.po8
-rw-r--r--source/sr/dbaccess/source/sdbtools/resource.po6
-rw-r--r--source/sr/dbaccess/source/ui/app.po7
-rw-r--r--source/sr/dbaccess/source/ui/browser.po6
-rw-r--r--source/sr/dbaccess/source/ui/control.po6
-rw-r--r--source/sr/dbaccess/source/ui/dlg.po45
-rw-r--r--source/sr/dbaccess/source/ui/inc.po6
-rw-r--r--source/sr/dbaccess/source/ui/misc.po10
-rw-r--r--source/sr/dbaccess/source/ui/querydesign.po7
-rw-r--r--source/sr/dbaccess/source/ui/relationdesign.po6
-rw-r--r--source/sr/dbaccess/source/ui/tabledesign.po8
-rw-r--r--source/sr/dbaccess/source/ui/uno.po6
-rw-r--r--source/sr/dbaccess/uiconfig/ui.po45
-rw-r--r--source/sr/desktop/source/app.po11
-rw-r--r--source/sr/desktop/source/deployment/gui.po25
-rw-r--r--source/sr/desktop/source/deployment/manager.po6
-rw-r--r--source/sr/desktop/source/deployment/misc.po6
-rw-r--r--source/sr/desktop/source/deployment/registry.po6
-rw-r--r--source/sr/desktop/source/deployment/registry/component.po6
-rw-r--r--source/sr/desktop/source/deployment/registry/configuration.po6
-rw-r--r--source/sr/desktop/source/deployment/registry/help.po6
-rw-r--r--source/sr/desktop/source/deployment/registry/package.po6
-rw-r--r--source/sr/desktop/source/deployment/registry/script.po6
-rw-r--r--source/sr/desktop/source/deployment/registry/sfwk.po6
-rw-r--r--source/sr/desktop/source/deployment/unopkg.po10
-rw-r--r--source/sr/desktop/uiconfig/ui.po9
-rw-r--r--source/sr/dictionaries/af_ZA.po6
-rw-r--r--source/sr/dictionaries/an_ES.po6
-rw-r--r--source/sr/dictionaries/ar.po6
-rw-r--r--source/sr/dictionaries/be_BY.po6
-rw-r--r--source/sr/dictionaries/bg_BG.po6
-rw-r--r--source/sr/dictionaries/bn_BD.po6
-rw-r--r--source/sr/dictionaries/br_FR.po6
-rw-r--r--source/sr/dictionaries/bs_BA.po11
-rw-r--r--source/sr/dictionaries/ca.po6
-rw-r--r--source/sr/dictionaries/cs_CZ.po6
-rw-r--r--source/sr/dictionaries/da_DK.po6
-rw-r--r--source/sr/dictionaries/de.po6
-rw-r--r--source/sr/dictionaries/el_GR.po6
-rw-r--r--source/sr/dictionaries/en.po6
-rw-r--r--source/sr/dictionaries/en/dialog.po6
-rw-r--r--source/sr/dictionaries/en/dialog/registry/data/org/openoffice/Office.po9
-rw-r--r--source/sr/dictionaries/es.po6
-rw-r--r--source/sr/dictionaries/et_EE.po6
-rw-r--r--source/sr/dictionaries/fr_FR.po6
-rw-r--r--source/sr/dictionaries/gd_GB.po6
-rw-r--r--source/sr/dictionaries/gl.po6
-rw-r--r--source/sr/dictionaries/gu_IN.po6
-rw-r--r--source/sr/dictionaries/he_IL.po6
-rw-r--r--source/sr/dictionaries/hi_IN.po6
-rw-r--r--source/sr/dictionaries/hr_HR.po6
-rw-r--r--source/sr/dictionaries/hu_HU.po6
-rw-r--r--source/sr/dictionaries/hu_HU/dialog.po7
-rw-r--r--source/sr/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po9
-rw-r--r--source/sr/dictionaries/it_IT.po6
-rw-r--r--source/sr/dictionaries/ku_TR.po6
-rw-r--r--source/sr/dictionaries/lt_LT.po6
-rw-r--r--source/sr/dictionaries/lv_LV.po6
-rw-r--r--source/sr/dictionaries/ne_NP.po6
-rw-r--r--source/sr/dictionaries/nl_NL.po6
-rw-r--r--source/sr/dictionaries/no.po6
-rw-r--r--source/sr/dictionaries/oc_FR.po6
-rw-r--r--source/sr/dictionaries/pl_PL.po6
-rw-r--r--source/sr/dictionaries/pt_BR.po9
-rw-r--r--source/sr/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po8
-rw-r--r--source/sr/dictionaries/pt_PT.po6
-rw-r--r--source/sr/dictionaries/ro.po6
-rw-r--r--source/sr/dictionaries/ru_RU.po6
-rw-r--r--source/sr/dictionaries/ru_RU/dialog.po6
-rw-r--r--source/sr/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po9
-rw-r--r--source/sr/dictionaries/si_LK.po6
-rw-r--r--source/sr/dictionaries/sk_SK.po6
-rw-r--r--source/sr/dictionaries/sl_SI.po6
-rw-r--r--source/sr/dictionaries/sr.po6
-rw-r--r--source/sr/dictionaries/sv_SE.po6
-rw-r--r--source/sr/dictionaries/sw_TZ.po6
-rw-r--r--source/sr/dictionaries/te_IN.po6
-rw-r--r--source/sr/dictionaries/th_TH.po6
-rw-r--r--source/sr/dictionaries/uk_UA.po6
-rw-r--r--source/sr/dictionaries/vi.po6
-rw-r--r--source/sr/dictionaries/zu_ZA.po6
-rw-r--r--source/sr/editeng/source/accessibility.po6
-rw-r--r--source/sr/editeng/source/editeng.po10
-rw-r--r--source/sr/editeng/source/items.po24
-rw-r--r--source/sr/editeng/source/misc.po6
-rw-r--r--source/sr/editeng/source/outliner.po6
-rw-r--r--source/sr/extensions/source/abpilot.po7
-rw-r--r--source/sr/extensions/source/bibliography.po8
-rw-r--r--source/sr/extensions/source/dbpilots.po11
-rw-r--r--source/sr/extensions/source/propctrlr.po27
-rw-r--r--source/sr/extensions/source/scanner.po7
-rw-r--r--source/sr/extensions/source/update/check.po14
-rw-r--r--source/sr/extensions/source/update/check/org/openoffice/Office.po6
-rw-r--r--source/sr/extensions/uiconfig.po45
-rw-r--r--source/sr/extras/source/gallery/share.po27
-rw-r--r--source/sr/filter/source/config/fragments/filters.po6
-rw-r--r--source/sr/filter/source/config/fragments/internalgraphicfilters.po6
-rw-r--r--source/sr/filter/source/config/fragments/types.po18
-rw-r--r--source/sr/filter/source/flash.po6
-rw-r--r--source/sr/filter/source/graphicfilter/eps.po6
-rw-r--r--source/sr/filter/source/pdf.po18
-rw-r--r--source/sr/filter/source/t602.po6
-rw-r--r--source/sr/filter/source/xsltdialog.po12
-rw-r--r--source/sr/filter/uiconfig/ui.po28
-rw-r--r--source/sr/forms/source/resource.po6
-rw-r--r--source/sr/formula/source/core/resource.po15
-rw-r--r--source/sr/formula/source/ui/dlg.po24
-rw-r--r--source/sr/fpicker/source/office.po11
-rw-r--r--source/sr/framework/source/classes.po10
-rw-r--r--source/sr/framework/source/services.po6
-rw-r--r--source/sr/instsetoo_native/inc_openoffice/windows/msi_languages.po124
-rw-r--r--source/sr/librelogo/source/pythonpath.po81
-rw-r--r--source/sr/mysqlc/source.po6
-rw-r--r--source/sr/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po12
-rw-r--r--source/sr/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po6
-rw-r--r--source/sr/nlpsolver/src/locale.po6
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office.po781
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office/UI.po893
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/TypeDetection.po18
-rw-r--r--source/sr/padmin/source.po20
-rw-r--r--source/sr/padmin/uiconfig/ui.po58
-rw-r--r--source/sr/readlicense_oo/docs.po23
-rw-r--r--source/sr/reportbuilder/java/org/libreoffice/report/function/metadata.po20
-rw-r--r--source/sr/reportdesign/source/core/resource.po9
-rw-r--r--source/sr/reportdesign/source/ui/dlg.po27
-rw-r--r--source/sr/reportdesign/source/ui/inspection.po13
-rw-r--r--source/sr/reportdesign/source/ui/report.po9
-rw-r--r--source/sr/sc/source/core/src.po6
-rw-r--r--source/sr/sc/source/ui/cctrl.po6
-rw-r--r--source/sr/sc/source/ui/dbgui.po35
-rw-r--r--source/sr/sc/source/ui/docshell.po6
-rw-r--r--source/sr/sc/source/ui/drawfunc.po17
-rw-r--r--source/sr/sc/source/ui/formdlg.po6
-rw-r--r--source/sr/sc/source/ui/miscdlgs.po34
-rw-r--r--source/sr/sc/source/ui/navipi.po10
-rw-r--r--source/sr/sc/source/ui/optdlg.po6
-rw-r--r--source/sr/sc/source/ui/pagedlg.po12
-rw-r--r--source/sr/sc/source/ui/sidebar.po79
-rw-r--r--source/sr/sc/source/ui/src.po1657
-rw-r--r--source/sr/sc/source/ui/styleui.po11
-rw-r--r--source/sr/sc/uiconfig/scalc/ui.po423
-rw-r--r--source/sr/scaddins/source/analysis.po443
-rw-r--r--source/sr/scaddins/source/datefunc.po19
-rw-r--r--source/sr/scaddins/source/pricing.po14
-rw-r--r--source/sr/sccomp/source/solver.po6
-rw-r--r--source/sr/scp2/source/accessories.po251
-rw-r--r--source/sr/scp2/source/activex.po6
-rw-r--r--source/sr/scp2/source/base.po7
-rw-r--r--source/sr/scp2/source/calc.po6
-rw-r--r--source/sr/scp2/source/draw.po6
-rw-r--r--source/sr/scp2/source/extensions.po27
-rw-r--r--source/sr/scp2/source/gnome.po6
-rw-r--r--source/sr/scp2/source/graphicfilter.po8
-rw-r--r--source/sr/scp2/source/impress.po6
-rw-r--r--source/sr/scp2/source/kde.po6
-rw-r--r--source/sr/scp2/source/math.po6
-rw-r--r--source/sr/scp2/source/onlineupdate.po6
-rw-r--r--source/sr/scp2/source/ooo.po200
-rw-r--r--source/sr/scp2/source/python.po6
-rw-r--r--source/sr/scp2/source/quickstart.po6
-rw-r--r--source/sr/scp2/source/sdkoo.po6
-rw-r--r--source/sr/scp2/source/smoketest.po6
-rw-r--r--source/sr/scp2/source/stdlibs.po6
-rw-r--r--source/sr/scp2/source/tde.po6
-rw-r--r--source/sr/scp2/source/winexplorerext.po6
-rw-r--r--source/sr/scp2/source/writer.po6
-rw-r--r--source/sr/scp2/source/xsltfilter.po7
-rw-r--r--source/sr/sd/source/core.po20
-rw-r--r--source/sr/sd/source/filter/html.po7
-rw-r--r--source/sr/sd/source/ui/accessibility.po7
-rw-r--r--source/sr/sd/source/ui/animations.po30
-rw-r--r--source/sr/sd/source/ui/annotations.po13
-rw-r--r--source/sr/sd/source/ui/app.po69
-rw-r--r--source/sr/sd/source/ui/dlg.po134
-rw-r--r--source/sr/sd/source/ui/slideshow.po6
-rw-r--r--source/sr/sd/source/ui/table.po7
-rw-r--r--source/sr/sd/source/ui/view.po26
-rw-r--r--source/sr/sd/uiconfig/sdraw/ui.po81
-rw-r--r--source/sr/sd/uiconfig/simpress/ui.po192
-rw-r--r--source/sr/sdext/source/minimizer.po6
-rw-r--r--source/sr/sdext/source/minimizer/registry/data/org/openoffice/Office.po6
-rw-r--r--source/sr/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po9
-rw-r--r--source/sr/setup_native/source/mac.po8
-rw-r--r--source/sr/sfx2/source/appl.po14
-rw-r--r--source/sr/sfx2/source/bastyp.po6
-rw-r--r--source/sr/sfx2/source/control.po6
-rw-r--r--source/sr/sfx2/source/dialog.po21
-rw-r--r--source/sr/sfx2/source/doc.po19
-rw-r--r--source/sr/sfx2/source/menu.po6
-rw-r--r--source/sr/sfx2/source/sidebar.po20
-rw-r--r--source/sr/sfx2/source/view.po9
-rw-r--r--source/sr/sfx2/uiconfig/ui.po206
-rw-r--r--source/sr/shell/source/win32/shlxthandler/res.po6
-rw-r--r--source/sr/starmath/source.po760
-rw-r--r--source/sr/starmath/uiconfig/smath/ui.po616
-rw-r--r--source/sr/svl/source/misc.po19
-rw-r--r--source/sr/svtools/source/contnr.po10
-rw-r--r--source/sr/svtools/source/control.po14
-rw-r--r--source/sr/svtools/source/dialogs.po10
-rw-r--r--source/sr/svtools/source/java.po30
-rw-r--r--source/sr/svtools/source/misc.po59
-rw-r--r--source/sr/svtools/source/toolpanel.po6
-rw-r--r--source/sr/svtools/uiconfig/ui.po54
-rw-r--r--source/sr/svx/inc.po10
-rw-r--r--source/sr/svx/source/accessibility.po6
-rw-r--r--source/sr/svx/source/core.po6
-rw-r--r--source/sr/svx/source/dialog.po331
-rw-r--r--source/sr/svx/source/engine3d.po30
-rw-r--r--source/sr/svx/source/fmcomp.po6
-rw-r--r--source/sr/svx/source/form.po38
-rw-r--r--source/sr/svx/source/gallery2.po28
-rw-r--r--source/sr/svx/source/items.po14
-rw-r--r--source/sr/svx/source/sidebar.po10
-rw-r--r--source/sr/svx/source/sidebar/area.po54
-rw-r--r--source/sr/svx/source/sidebar/graphic.po21
-rw-r--r--source/sr/svx/source/sidebar/line.po63
-rw-r--r--source/sr/svx/source/sidebar/paragraph.po171
-rw-r--r--source/sr/svx/source/sidebar/possize.po48
-rw-r--r--source/sr/svx/source/sidebar/text.po90
-rw-r--r--source/sr/svx/source/src.po11
-rw-r--r--source/sr/svx/source/stbctrls.po8
-rw-r--r--source/sr/svx/source/svdraw.po66
-rw-r--r--source/sr/svx/source/table.po6
-rw-r--r--source/sr/svx/source/tbxctrls.po23
-rw-r--r--source/sr/svx/source/toolbars.po6
-rw-r--r--source/sr/svx/source/unodialogs/textconversiondlgs.po31
-rw-r--r--source/sr/svx/uiconfig/ui.po214
-rw-r--r--source/sr/sw/source/core/layout.po6
-rw-r--r--source/sr/sw/source/core/undo.po19
-rw-r--r--source/sr/sw/source/core/unocore.po6
-rw-r--r--source/sr/sw/source/ui/app.po72
-rw-r--r--source/sr/sw/source/ui/chrdlg.po22
-rw-r--r--source/sr/sw/source/ui/config.po95
-rw-r--r--source/sr/sw/source/ui/dbui.po28
-rw-r--r--source/sr/sw/source/ui/dialog.po20
-rw-r--r--source/sr/sw/source/ui/dochdl.po6
-rw-r--r--source/sr/sw/source/ui/docvw.po11
-rw-r--r--source/sr/sw/source/ui/envelp.po36
-rw-r--r--source/sr/sw/source/ui/fldui.po56
-rw-r--r--source/sr/sw/source/ui/fmtui.po25
-rw-r--r--source/sr/sw/source/ui/frmdlg.po33
-rw-r--r--source/sr/sw/source/ui/globdoc.po6
-rw-r--r--source/sr/sw/source/ui/index.po56
-rw-r--r--source/sr/sw/source/ui/lingu.po12
-rw-r--r--source/sr/sw/source/ui/misc.po18
-rw-r--r--source/sr/sw/source/ui/ribbar.po10
-rw-r--r--source/sr/sw/source/ui/shells.po11
-rw-r--r--source/sr/sw/source/ui/sidebar.po99
-rw-r--r--source/sr/sw/source/ui/smartmenu.po6
-rw-r--r--source/sr/sw/source/ui/table.po6
-rw-r--r--source/sr/sw/source/ui/uiview.po9
-rw-r--r--source/sr/sw/source/ui/utlui.po59
-rw-r--r--source/sr/sw/source/ui/web.po6
-rw-r--r--source/sr/sw/source/ui/wrtsh.po6
-rw-r--r--source/sr/sw/uiconfig/swriter/ui.po634
-rw-r--r--source/sr/swext/mediawiki/help.po18
-rw-r--r--source/sr/swext/mediawiki/src.po6
-rw-r--r--source/sr/swext/mediawiki/src/registry/data/org/openoffice/Office.po6
-rw-r--r--source/sr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po6
-rw-r--r--source/sr/sysui/desktop/share.po17
-rw-r--r--source/sr/tubes/uiconfig/ui.po6
-rw-r--r--source/sr/uui/source.po15
-rw-r--r--source/sr/uui/uiconfig/ui.po27
-rw-r--r--source/sr/vcl/qa/cppunit/builder.po23
-rw-r--r--source/sr/vcl/source/edit.po6
-rw-r--r--source/sr/vcl/source/src.po42
-rw-r--r--source/sr/vcl/uiconfig/ui.po22
-rw-r--r--source/sr/wizards/source/euro.po6
-rw-r--r--source/sr/wizards/source/formwizard.po91
-rw-r--r--source/sr/wizards/source/importwizard.po15
-rw-r--r--source/sr/wizards/source/template.po6
-rw-r--r--source/sr/xmlsecurity/source/component.po6
-rw-r--r--source/sr/xmlsecurity/source/dialogs.po9
-rw-r--r--source/sr/xmlsecurity/uiconfig/ui.po86
-rw-r--r--source/sv/cui/source/tabpages.po12
-rw-r--r--source/sv/dbaccess/uiconfig/ui.po8
-rw-r--r--source/sv/formula/source/core/resource.po10
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po344
-rw-r--r--source/sv/helpcontent2/source/text/scalc/02.po10
-rw-r--r--source/sv/helpcontent2/source/text/scalc/04.po12
-rw-r--r--source/sv/helpcontent2/source/text/scalc/05.po18
-rw-r--r--source/sv/helpcontent2/source/text/scalc/guide.po42
-rw-r--r--source/sv/helpcontent2/source/text/schart/00.po11
-rw-r--r--source/sv/helpcontent2/source/text/schart/01.po96
-rw-r--r--source/sv/helpcontent2/source/text/shared.po12
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po56
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po392
-rw-r--r--source/sv/helpcontent2/source/text/shared/02.po114
-rw-r--r--source/sv/helpcontent2/source/text/shared/04.po42
-rw-r--r--source/sv/helpcontent2/source/text/shared/05.po14
-rw-r--r--source/sv/helpcontent2/source/text/shared/autopi.po28
-rw-r--r--source/sv/helpcontent2/source/text/shared/explorer/database.po58
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po104
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po172
-rw-r--r--source/sv/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/sv/helpcontent2/source/text/simpress/01.po56
-rw-r--r--source/sv/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/sv/helpcontent2/source/text/simpress/04.po80
-rw-r--r--source/sv/helpcontent2/source/text/simpress/guide.po36
-rw-r--r--source/sv/helpcontent2/source/text/smath/00.po9
-rw-r--r--source/sv/helpcontent2/source/text/smath/01.po84
-rw-r--r--source/sv/helpcontent2/source/text/smath/guide.po9
-rw-r--r--source/sv/helpcontent2/source/text/swriter.po7
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po90
-rw-r--r--source/sv/helpcontent2/source/text/swriter/02.po24
-rw-r--r--source/sv/helpcontent2/source/text/swriter/04.po16
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po74
-rw-r--r--source/sv/helpcontent2/source/text/swriter/librelogo.po552
-rw-r--r--source/sv/librelogo/source/pythonpath.po128
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po32
-rw-r--r--source/sv/sc/source/ui/src.po14
-rw-r--r--source/sv/sd/uiconfig/simpress/ui.po16
-rw-r--r--source/sv/svx/source/dialog.po131
-rw-r--r--source/sv/svx/source/sidebar/graphic.po8
-rw-r--r--source/sv/svx/source/sidebar/paragraph.po8
-rw-r--r--source/ta/reportdesign/source/ui/dlg.po8
-rw-r--r--source/ta/sc/source/ui/src.po17144
-rw-r--r--source/ta/sc/uiconfig/scalc/ui.po8
-rw-r--r--source/tr/android/sdremote/res/values.po17
-rw-r--r--source/tr/chart2/source/controller/dialogs.po13
-rw-r--r--source/tr/chart2/uiconfig/ui.po34
-rw-r--r--source/tr/cui/source/customize.po12
-rw-r--r--source/tr/cui/source/tabpages.po12
-rw-r--r--source/tr/cui/uiconfig/ui.po311
-rw-r--r--source/tr/dbaccess/source/ui/misc.po10
-rw-r--r--source/tr/dbaccess/uiconfig/ui.po43
-rw-r--r--source/tr/desktop/source/app.po12
-rw-r--r--source/tr/desktop/source/deployment/gui.po52
-rw-r--r--source/tr/desktop/source/deployment/unopkg.po11
-rw-r--r--source/tr/desktop/uiconfig/ui.po10
-rw-r--r--source/tr/dictionaries/is.po10
-rw-r--r--source/tr/editeng/source/editeng.po10
-rw-r--r--source/tr/editeng/source/items.po14
-rw-r--r--source/tr/extensions/uiconfig.po34
-rw-r--r--source/tr/extras/source/gallery/share.po30
-rw-r--r--source/tr/filter/source/pdf.po8
-rw-r--r--source/tr/formula/source/core/resource.po15
-rw-r--r--source/tr/framework/source/classes.po12
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po11
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po11
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/tr/helpcontent2/source/text/simpress/04.po13
-rw-r--r--source/tr/helpcontent2/source/text/smath/01.po25
-rw-r--r--source/tr/helpcontent2/source/text/swriter/librelogo.po20
-rw-r--r--source/tr/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--source/tr/librelogo/source/pythonpath.po8
-rw-r--r--source/tr/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po12
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office.po16
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po188
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/TypeDetection.po16
-rw-r--r--source/tr/padmin/uiconfig/ui.po64
-rw-r--r--source/tr/readlicense_oo/docs.po20
-rw-r--r--source/tr/reportbuilder/java/org/libreoffice/report/function/metadata.po18
-rw-r--r--source/tr/reportdesign/source/core/resource.po9
-rw-r--r--source/tr/reportdesign/source/ui/inspection.po9
-rw-r--r--source/tr/sc/source/ui/sidebar.po184
-rw-r--r--source/tr/sc/source/ui/src.po147
-rw-r--r--source/tr/sc/uiconfig/scalc/ui.po99
-rw-r--r--source/tr/scaddins/source/analysis.po30
-rw-r--r--source/tr/scaddins/source/pricing.po20
-rw-r--r--source/tr/scp2/source/extensions.po8
-rw-r--r--source/tr/scp2/source/ooo.po18
-rw-r--r--source/tr/sd/source/core.po8
-rw-r--r--source/tr/sd/source/filter/html.po11
-rw-r--r--source/tr/sd/source/ui/animations.po12
-rw-r--r--source/tr/sd/source/ui/app.po12
-rw-r--r--source/tr/sd/source/ui/dlg.po26
-rw-r--r--source/tr/sd/source/ui/view.po19
-rw-r--r--source/tr/sd/uiconfig/sdraw/ui.po10
-rw-r--r--source/tr/sd/uiconfig/simpress/ui.po48
-rw-r--r--source/tr/sfx2/source/appl.po10
-rw-r--r--source/tr/sfx2/source/dialog.po18
-rw-r--r--source/tr/sfx2/source/doc.po10
-rw-r--r--source/tr/sfx2/source/sidebar.po18
-rw-r--r--source/tr/sfx2/uiconfig/ui.po72
-rw-r--r--source/tr/starmath/source.po36
-rw-r--r--source/tr/svtools/source/java.po14
-rw-r--r--source/tr/svtools/source/misc.po14
-rw-r--r--source/tr/svtools/uiconfig/ui.po8
-rw-r--r--source/tr/svx/source/dialog.po222
-rw-r--r--source/tr/svx/source/engine3d.po9
-rw-r--r--source/tr/svx/source/gallery2.po16
-rw-r--r--source/tr/svx/source/sidebar.po10
-rw-r--r--source/tr/svx/source/sidebar/area.po56
-rw-r--r--source/tr/svx/source/sidebar/graphic.po22
-rw-r--r--source/tr/svx/source/sidebar/line.po58
-rw-r--r--source/tr/svx/source/sidebar/paragraph.po134
-rw-r--r--source/tr/svx/source/sidebar/possize.po42
-rw-r--r--source/tr/svx/source/sidebar/text.po74
-rw-r--r--source/tr/svx/source/stbctrls.po9
-rw-r--r--source/tr/svx/source/tbxctrls.po11
-rw-r--r--source/tr/svx/uiconfig/ui.po28
-rw-r--r--source/tr/sw/source/core/undo.po12
-rw-r--r--source/tr/sw/source/ui/app.po21
-rw-r--r--source/tr/sw/source/ui/envelp.po10
-rw-r--r--source/tr/sw/source/ui/index.po16
-rw-r--r--source/tr/sw/source/ui/lingu.po14
-rw-r--r--source/tr/sw/source/ui/misc.po12
-rw-r--r--source/tr/sw/source/ui/sidebar.po104
-rw-r--r--source/tr/sw/uiconfig/swriter/ui.po96
-rw-r--r--source/tr/swext/mediawiki/help.po8
-rw-r--r--source/tr/uui/source.po10
-rw-r--r--source/tr/uui/uiconfig/ui.po22
-rw-r--r--source/tr/vcl/qa/cppunit/builder.po22
-rw-r--r--source/tr/vcl/source/src.po22
-rw-r--r--source/tr/vcl/uiconfig/ui.po18
-rw-r--r--source/tr/wizards/source/formwizard.po10
-rw-r--r--source/tr/wizards/source/importwizard.po12
-rw-r--r--source/tr/xmlsecurity/uiconfig/ui.po80
-rw-r--r--source/ug/desktop/source/deployment/gui.po18
-rw-r--r--source/ug/sw/source/ui/sidebar.po21
-rw-r--r--source/uk/basctl/source/dlged.po9
-rw-r--r--source/uk/cui/source/tabpages.po26
-rw-r--r--source/uk/cui/uiconfig/ui.po12
-rw-r--r--source/uk/dbaccess/source/ui/app.po8
-rw-r--r--source/uk/dbaccess/source/ui/dlg.po8
-rw-r--r--source/uk/dbaccess/source/ui/tabledesign.po10
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/uk/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/uk/instsetoo_native/inc_openoffice/windows/msi_languages.po16
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po55
-rw-r--r--source/uk/readlicense_oo/docs.po12
-rw-r--r--source/uk/sc/source/ui/sidebar.po121
-rw-r--r--source/uk/sc/source/ui/src.po162
-rw-r--r--source/uk/sc/uiconfig/scalc/ui.po72
-rw-r--r--source/uk/scaddins/source/analysis.po22
-rw-r--r--source/uk/scaddins/source/pricing.po14
-rw-r--r--source/uk/sccomp/source/solver.po8
-rw-r--r--source/uk/scp2/source/extensions.po6
-rw-r--r--source/uk/scp2/source/ooo.po8
-rw-r--r--source/uk/sd/source/core.po12
-rw-r--r--source/uk/sd/source/ui/app.po10
-rw-r--r--source/uk/sd/source/ui/dlg.po12
-rw-r--r--source/uk/sd/source/ui/view.po21
-rw-r--r--source/uk/sd/uiconfig/sdraw/ui.po8
-rw-r--r--source/uk/sd/uiconfig/simpress/ui.po24
-rw-r--r--source/uk/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po8
-rw-r--r--source/uk/sfx2/source/appl.po6
-rw-r--r--source/uk/sfx2/source/dialog.po8
-rw-r--r--source/uk/sfx2/source/sidebar.po14
-rw-r--r--source/uk/sfx2/source/view.po11
-rw-r--r--source/uk/sfx2/uiconfig/ui.po58
-rw-r--r--source/uk/starmath/source.po34
-rw-r--r--source/uk/svtools/source/misc.po18
-rw-r--r--source/uk/svtools/uiconfig/ui.po8
-rw-r--r--source/uk/svx/source/dialog.po168
-rw-r--r--source/uk/svx/source/engine3d.po13
-rw-r--r--source/uk/svx/source/form.po22
-rw-r--r--source/uk/svx/source/gallery2.po17
-rw-r--r--source/uk/svx/source/sidebar/area.po30
-rw-r--r--source/uk/svx/source/sidebar/graphic.po26
-rw-r--r--source/uk/svx/source/sidebar/line.po40
-rw-r--r--source/uk/svx/source/sidebar/paragraph.po84
-rw-r--r--source/uk/svx/source/sidebar/possize.po30
-rw-r--r--source/uk/svx/source/sidebar/text.po28
-rw-r--r--source/uk/svx/source/src.po39
-rw-r--r--source/uk/svx/source/tbxctrls.po20
-rw-r--r--source/uk/svx/uiconfig/ui.po32
-rw-r--r--source/uk/sw/source/ui/app.po10
-rw-r--r--source/uk/sw/source/ui/dialog.po8
-rw-r--r--source/uk/sw/source/ui/fmtui.po11
-rw-r--r--source/uk/sw/source/ui/ribbar.po9
-rw-r--r--source/uk/sw/source/ui/sidebar.po12
-rw-r--r--source/uk/sw/source/ui/utlui.po10
-rw-r--r--source/uk/sw/uiconfig/swriter/ui.po79
-rw-r--r--source/uk/vcl/uiconfig/ui.po16
-rw-r--r--source/uk/wizards/source/formwizard.po10
-rw-r--r--source/uk/wizards/source/importwizard.po12
-rw-r--r--source/ur/svx/source/dialog.po90
-rw-r--r--source/zh-TW/cui/uiconfig/ui.po10
-rw-r--r--source/zh-TW/librelogo/source/pythonpath.po11
-rw-r--r--source/zh-TW/sw/uiconfig/swriter/ui.po10
2846 files changed, 61272 insertions, 53972 deletions
diff --git a/source/am/helpcontent2/source/auxiliary.po b/source/am/helpcontent2/source/auxiliary.po
index 7a058a05b77..7635aa04c85 100644
--- a/source/am/helpcontent2/source/auxiliary.po
+++ b/source/am/helpcontent2/source/auxiliary.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-05-09 01:21+0000\n"
+"PO-Revision-Date: 2013-06-30 21:41+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1368062485.0\n"
+"X-POOTLE-MTIME: 1372628486.0\n"
#: sbasic.tree
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"03\n"
"help_section.text"
msgid "Formulas"
-msgstr ""
+msgstr "Formulas"
#: smath.tree
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"0303\n"
"node.text"
msgid "Working with Formulas"
-msgstr ""
+msgstr "በ Formulas መስራት"
#: swriter.tree
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/guide.po b/source/am/helpcontent2/source/text/sbasic/guide.po
index 39ad7d1cdd9..f78d2b0b014 100644
--- a/source/am/helpcontent2/source/text/sbasic/guide.po
+++ b/source/am/helpcontent2/source/text/sbasic/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-06-29 18:25+0000\n"
+"PO-Revision-Date: 2013-07-07 17:24+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372530333.0\n"
+"X-POOTLE-MTIME: 1373217865.0\n"
#: control_properties.xhp
msgctxt ""
@@ -57,7 +57,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
-msgstr ""
+msgstr "በ ንድፍ ዘዴ ውስጥ የ መቆጣጠሪያ ባህሪዎችን ለ መቀየር፡ በቀኝ-ይጫኑ መቆጣጠሪያውን እና ከዛ ይምረጡ <emph>ባህሪዎች</emph>."
#: create_dialog.xhp
msgctxt ""
@@ -100,7 +100,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "Enter a name for the dialog, and click OK. To rename the dialog later, right-click the name on the tab, and choose <emph>Rename</emph>."
-msgstr "ለንግግሩ ስም ያስገቡ እና ይጫኑ እሺ ፡ ንግግሩን በኋላ ለመሰየም ፡ በቀኝ-ይጫኑ በንዑስ መስኮት tab ላይ እና ይምረጡ<emph>እንደገና መሰየሚያ</emph>."
+msgstr "ለንግግሩ ስም ያስገቡ እና ይጫኑ እሺ፡ ንግግሩን በኋላ ለመሰየም፡ በቀኝ-ይጫኑ በንዑስ መስኮት tab ላይ እና ይምረጡ<emph>እንደገና መሰየሚያ</emph>."
#: create_dialog.xhp
msgctxt ""
@@ -395,7 +395,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Opening a Dialog With Program Code"
-msgstr ""
+msgstr "ንግግር በ ፕሮግራም ኮድ መክፈቻ"
#: show_dialog.xhp
msgctxt ""
@@ -403,7 +403,7 @@ msgctxt ""
"bm_id3154140\n"
"help.text"
msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ክፍል/ንግግር መቀያየሪያ</bookmark_value><bookmark_value>ንግግር;የ ፕሮግራም ኮድ በመጠቀም ማሳያ (ምሳሌ)</bookmark_value><bookmark_value>ምሳሌዎች; ንግግር ማሳያ የ ፕሮግራም ኮድ በመጠቀም</bookmark_value>"
#: show_dialog.xhp
msgctxt ""
@@ -412,7 +412,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
-msgstr ""
+msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">ንግግር በ ፕሮግራም ኮድ መክፈቻ</link></variable>"
#: show_dialog.xhp
msgctxt ""
@@ -512,7 +512,7 @@ msgctxt ""
"par_id2924283\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog where you can add a language to the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ንግግር መክፈቻ ወደ ዝርዝር ቋንቋ ለመጨመር</ahelp>"
#: translation.xhp
msgctxt ""
@@ -592,7 +592,7 @@ msgctxt ""
"par_id6529740\n"
"help.text"
msgid "Click Add in the dialog to add a language entry."
-msgstr ""
+msgstr "ይጫኑ መጨመሪያ በ ንግግሩ ውስጥ የ ቋንቋ ማስገቢያ ለመጨመር"
#: translation.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 747bc0016cd..4a52a7f683c 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-06-29 17:30+0000\n"
+"PO-Revision-Date: 2013-07-01 02:11+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372527057.0\n"
+"X-POOTLE-MTIME: 1372644674.0\n"
#: 00000002.xhp
msgctxt ""
@@ -811,7 +811,7 @@ msgctxt ""
"67\n"
"help.text"
msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
-msgstr "<variable id=\"err63\">63 Incorrect record number</variable>"
+msgstr "<variable id=\"err63\">63 የተሳሳተ የ መዝገብ ቁጥር</variable>"
#: 00000003.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/01.po b/source/am/helpcontent2/source/text/sbasic/shared/01.po
index cb98391621d..8ce423414ac 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-06-22 17:16+0000\n"
+"PO-Revision-Date: 2013-07-06 16:37+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1371921371.0\n"
+"X-POOTLE-MTIME: 1373128659.0\n"
#: 06130000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3145786\n"
"help.text"
msgid "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>macros; Basic IDE</bookmark_value><bookmark_value>Basic IDE; macros</bookmark_value>"
#: 06130000.xhp
msgctxt ""
@@ -48,7 +48,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"makro\"><ahelp hid=\".\">Opens the <emph>Macro </emph>dialog, where you can create, edit, organize, and run $[officename] Basic macros.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"makro\"><ahelp hid=\".\">መክፈቻ የ <emph>Macro </emph>ንግግር መፍጠሪያ ማረሚያ ማደራጃ እና ማስኬጃ $[officename] Basic macros.</ahelp></variable>"
#: 06130000.xhp
msgctxt ""
@@ -57,7 +57,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Macro name"
-msgstr ""
+msgstr "የ Macro ስም"
#: 06130000.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "To delete a macro, select it, and then click <emph>Delete</emph>."
-msgstr ""
+msgstr "macro ለማጥፋት ይምረጡት እና ከዛ ይጫኑ <emph>ማጥፊያ</emph>."
#: 06130000.xhp
msgctxt ""
@@ -192,7 +192,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organize\">Opens the <emph>Macro Organizer</emph> dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/organize\">መክፈቻ የ <emph>Macro Organizer</emph> ንግግር መጨመሪያ ማረሚያ ወይንም ማጥፊያ የ ነበረውን macro modules, ንግግሮች እና መጻህፍይ ቤቶች</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -219,7 +219,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "You can drag-and-drop a module or a dialog between libraries."
-msgstr ""
+msgstr "መጎተት-እና-መጣል ይችላሉ ክፍሎችን ወይንም ንግግሮችን በ መጻህፍት ቤት መካከል"
#: 06130000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc.po b/source/am/helpcontent2/source/text/scalc.po
index 1527071c001..c2821811352 100644
--- a/source/am/helpcontent2/source/text/scalc.po
+++ b/source/am/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-23 13:18+0000\n"
+"PO-Revision-Date: 2013-07-13 14:14+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1371993501.0\n"
+"X-POOTLE-MTIME: 1373724862.0\n"
#: main0000.xhp
msgctxt ""
@@ -119,7 +119,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">እነዚህ ትእዛዞች ለ አሁኑ ሰነድ መፈጸሚያ ናቸው፡ አዲስ ሰነድ መክፈቻ ወይንም መፈጸሚያውን ማጥፊያ</ahelp>"
#: main0101.xhp
msgctxt ""
@@ -297,7 +297,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ይህ ዝርዝር የ ያዛቸው ትእዛዞች በ-መመልከቻው ላይ የሚታየውን ሰነድ ለ መቆጣጠር ነው</ahelp>"
#: main0103.xhp
msgctxt ""
@@ -348,7 +348,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">The Insert menu contains commands for inserting new elements, such as cells, rows, sheets and cell names into the current sheet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ማስገቢያ ዝርዝር የ ያዛቸው ትእዛዞች አዲስ አካሎችን ለማስገባት ነው፡ እንደ ክፍሎች ረድፎች ወረቀቶች እና የ ክፍል ስሞች ወደ አሁኑ ወረቀት</ahelp>"
#: main0104.xhp
msgctxt ""
@@ -561,7 +561,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ <emph>መሳሪያዎች </emph>ዝርዝር የ ያዛቸው ትእዛዞች ፊደሎችን ለማረም ፡ ማመሳከሪያ ወረቀቶችን ፈልጎ ለማግኘት ፡ ስህተቶችን ፈልጎ ለማግኘት እና እቅዶችን ለ መግለጽ ነው</ahelp>"
#: main0106.xhp
msgctxt ""
@@ -632,7 +632,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:WindowList\">የ ያዛቸው ትእዛዞች ለ ማዘጋጃ እና የ ሰነድ መስኮቶች ለ ማሳያ ነው</ahelp>"
#: main0112.xhp
msgctxt ""
@@ -764,7 +764,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
-msgstr ""
+msgstr "ይህ ንዑስ ዝርዝር የ ያዛቸው ዝርዝር የ እቃ መደርደሪያ ለ ሰንጠረዥ ዝግጁ ናቸው<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
#: main0202.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\">The <emph>Formatting</emph> bar contains basic commands for applying manually formatting.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\">የ <emph>አቀራረብ</emph> መደርደሪያ የ ያዘው መሰረታዊ ትእዛዞች አቀራረቡን በ እጅ ለመፈጸም ነው</ahelp>"
#: main0202.xhp
msgctxt ""
@@ -1297,7 +1297,7 @@ msgctxt ""
"par_id460828\n"
"help.text"
msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button."
-msgstr ""
+msgstr "ዝርዝር እና እቃ መደርደሪያ መደበቂያ፡ ከ ሙሉ መመልከቻው ዘዴ ለመውጣት ይጫኑ የ <emph>በ ሙሉ መመልከቻው ማብሪያ/ማጥፊያ</emph> ቁልፍ"
#: main0210.xhp
msgctxt ""
@@ -1323,7 +1323,7 @@ msgctxt ""
"par_id460929\n"
"help.text"
msgid "Shows or hides margins of the page. Margins can be dragged by the mouse, and also can be set on <emph>Page</emph> tab of <emph>Page Style</emph> dialog."
-msgstr ""
+msgstr "የ ገጽ ማስመሪያ ማሳያ ወይንም መደበቂያ፡ ማስመሪያው በ አይጥ መጎተት ይቻላል፡ እንዲሁም ማሰናዳት ይቻላል ከ <emph>ገጽ</emph> tab ከ <emph>ገጽ ዘዴ</emph> ንግግር ውስጥ"
#: main0210.xhp
msgctxt ""
@@ -1409,7 +1409,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">የ ተለመዱ ትእዛዞችን ከ እቃዎች መደርደሪያ ላይ ይጠቀሙ</ahelp>"
#: main0218.xhp
msgctxt ""
@@ -1501,7 +1501,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Calculations"
-msgstr ""
+msgstr "ስሌቶች"
#: main0503.xhp
msgctxt ""
@@ -1609,7 +1609,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "Opening and Saving Microsoft Files"
-msgstr ""
+msgstr "የ Microsoft ፋይሎች መክፈቻ እና ማስቀመጫ"
#: main0503.xhp
msgctxt ""
@@ -1618,4 +1618,4 @@ msgctxt ""
"19\n"
"help.text"
msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
-msgstr ""
+msgstr "ይጠቀሙ $[officename] ማጣሪያዎችን የ Excel ፋይሎችን ለመቀየር፡ ወይንም ለመክፈት እና ለማስቀመጥ ወደ ተለያዩ ሌሎች <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">አቀማመጥ</link>."
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index 5fd25823ca9..da11cddb9b5 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 23:18+0000\n"
+"PO-Revision-Date: 2013-06-30 21:42+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372547913.0\n"
+"X-POOTLE-MTIME: 1372628537.0\n"
#: 01120000.xhp
msgctxt ""
@@ -56804,7 +56804,7 @@ msgctxt ""
"105\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
-msgstr ""
+msgstr "ደቂቃ"
#: func_minute.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/02.po b/source/am/helpcontent2/source/text/scalc/02.po
index 42c32058951..ac894fa09fd 100644
--- a/source/am/helpcontent2/source/text/scalc/02.po
+++ b/source/am/helpcontent2/source/text/scalc/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-06-13 17:25+0200\n"
-"PO-Revision-Date: 2013-06-14 23:31+0000\n"
+"PO-Revision-Date: 2013-07-07 17:24+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1371252663.0\n"
+"X-POOTLE-MTIME: 1373217879.0\n"
#: 02130000.xhp
msgctxt ""
@@ -92,7 +92,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:NumberFormatPercent\">ለ ተመረጠው ክፍል የ ፐርሰንት አቀራረብ መፈጸሚያ</ahelp>"
#: 02140000.xhp
msgctxt ""
@@ -117,7 +117,7 @@ msgctxt ""
"bm_id3149260\n"
"help.text"
msgid "<bookmark_value>percentage calculations</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ፐርሰንት ስሌቶች</bookmark_value>"
#: 02140000.xhp
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "You can also enter a percentage sign (%) after a number in a cell:"
-msgstr ""
+msgstr "የ ፐርሰንት ምልክት መጨመር ይችላሉ (%) ከ ቁጥሩ በ ኋላ በ ክፍሉ ውስጥ:"
#: 02140000.xhp
msgctxt ""
@@ -188,7 +188,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NumberFormatStandard\" visibility=\"visible\">Applies the default number format to the selected cells.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:NumberFormatStandard\" visibility=\"visible\">ወደ ተመረጠው ክፍል ነባር የቁጥር አቀራረብ መፈጸሚያ</ahelp>"
#: 02150000.xhp
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NumberFormatIncDecimals\">Adds one decimal place to the numbers in the selected cells.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:NumberFormatIncDecimals\">በ ተመረጠው ክፍሎች ውስጥ አንድ የ ዴሲማል ቦታ ወደ ቁጥሮቹ መጨመሪያ</ahelp>"
#: 02160000.xhp
msgctxt ""
@@ -283,7 +283,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NumberFormatDecDecimals\">Removes one decimal place from the numbers in the selected cells.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:NumberFormatDecDecimals\">በ ተመረጠው ክፍሎች ውስጥ አንድ የ ዴሲማል ቦታ ከ ቁጥሮቹ ማስወገጃ</ahelp>"
#: 02170000.xhp
msgctxt ""
@@ -429,7 +429,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Click the <emph>Accept</emph> icon (green check mark) to use the formula displayed in the input line."
-msgstr ""
+msgstr "ይጫኑ የ <emph>ተቀብያለሁ</emph> ምልክት (አረህጓዴ ምልክት ማድረጊያ) ለ መጠቀም የ formula ማሳያውን በ ማስገቢያ መስመር"
#: 06040000.xhp
msgctxt ""
@@ -445,7 +445,7 @@ msgctxt ""
"bm_id3150084\n"
"help.text"
msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>formula bar; ተግባሮች</bookmark_value><bookmark_value>ተግባሮች; formula bar ምልክት</bookmark_value>"
#: 06040000.xhp
msgctxt ""
@@ -472,7 +472,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "This icon is only available when the <emph>Input line</emph> box is not active."
-msgstr ""
+msgstr "ይህ ምልክት ዝግጁ የሚሆነው የ <emph>ማስገቢያ መስመር</emph> ሳጥን ንቁ በማይሆንበት ጊዜ ነው"
#: 06040000.xhp
msgctxt ""
@@ -669,7 +669,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Click the formatting theme that you want to apply, and then click <emph>OK</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">ይጫኑ መጠቀም የሚፈልጉትን የ ገጽታ አቀራረብ እና ከዛ ይጫኑ <emph>እሺ</emph>.</ahelp>"
#: 08010000.xhp
msgctxt ""
@@ -695,7 +695,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:StatusDocPos\">Displays the number of the current sheet and the total number of sheets in the spreadsheet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:StatusDocPos\">የ አሁኑን ወረቀት ቁጥር እና በ ሰንጠረዥ ውስጥ ያሉትን ጠቅላላ ገጾች ማሳያ</ahelp>"
#: 08080000.xhp
msgctxt ""
@@ -703,7 +703,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Standard Formula, Date/Time, Error Warning"
-msgstr ""
+msgstr "መደበኛ Formula, ቀን/ሰአት፡ የ ስህተት ማስጠንቀቂያ"
#: 08080000.xhp
msgctxt ""
@@ -720,7 +720,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/scalc/02/08080000.xhp\" name=\"Standard Formula, Date/Time, Error Warning\">Standard Formula, Date/Time, Error Warning</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/02/08080000.xhp\" name=\"Standard Formula, Date/Time, Error Warning\">መደበኛ Formula, ቀን/ሰአት፡ የ ስህተት ማስጠንቀቂያ</link>"
#: 08080000.xhp
msgctxt ""
@@ -747,7 +747,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">የ ስህተት ኮዶች</link>"
#: 10050000.xhp
msgctxt ""
@@ -763,7 +763,7 @@ msgctxt ""
"bm_id3148491\n"
"help.text"
msgid "<bookmark_value>page views; increasing scales</bookmark_value><bookmark_value>increasing scales in page view</bookmark_value><bookmark_value>zooming;enlarging page views</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ገጽ መመልከቻ; መጨመሪያ መጠኖች</bookmark_value><bookmark_value>መጨመሪያ መጠኖች በ ገጽ መመልከቻ</bookmark_value><bookmark_value>ማሳያ;ማሳደጊያ ገጽ መመልከቻ</bookmark_value>"
#: 10050000.xhp
msgctxt ""
@@ -901,7 +901,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertCtrl\">ይጫኑ ከ ምልክቱ አጠገብ ያለውን ቀስት ለ መክፈት የ <emph>ማስገቢያ </emph>እቃ መደርደሪያ፡ ወደ አሁኑ ወረቀት ንድፎች እና የተለዩ ባህሪዎች ለማስገባት</ahelp>"
#: 18010000.xhp
msgctxt ""
@@ -1020,7 +1020,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsCellsCtrl\">ይጫኑ ከ ምልክቱ አጠገብ ያለውን ቀስት ለ መክፈት የ <emph>ክፍሎች ማስገቢያ </emph>እቃ መደርደሪያ፡ ወደ አሁኑ ወረቀት ክፍሎች ረድፎች እና አምዶች ለማስገባት</ahelp>"
#: 18020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/05.po b/source/am/helpcontent2/source/text/scalc/05.po
index 4f64516c89d..234b634e617 100644
--- a/source/am/helpcontent2/source/text/scalc/05.po
+++ b/source/am/helpcontent2/source/text/scalc/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-16 22:06+0000\n"
+"PO-Revision-Date: 2013-07-03 22:41+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1371420409.0\n"
+"X-POOTLE-MTIME: 1372891260.0\n"
#: 02140000.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Error Codes in %PRODUCTNAME Calc"
-msgstr ""
+msgstr "የ ስህተት ኮዶች በ %PRODUCTNAME ሰንጠረዥ"
#: 02140000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3146797\n"
"help.text"
msgid "<bookmark_value>error codes;list of</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ስህተት ኮዶች;ዝርዝር ከ</bookmark_value>"
#: 02140000.xhp
msgctxt ""
@@ -39,7 +39,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error Codes in %PRODUCTNAME Calc\">Error Codes in <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error Codes in %PRODUCTNAME Calc\">የ ስህተት ኮዶች በ <item type=\"productname\">%PRODUCTNAME</item> ሰንጠረዥ</link>"
#: 02140000.xhp
msgctxt ""
@@ -56,7 +56,7 @@ msgctxt ""
"bm_id0202201010205429\n"
"help.text"
msgid "<bookmark_value>### error message</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>### የ ስህተት መልእክት</bookmark_value>"
#: 02140000.xhp
msgctxt ""
@@ -64,7 +64,7 @@ msgctxt ""
"bm_id3154634\n"
"help.text"
msgid "<bookmark_value>invalid references; error messages</bookmark_value> <bookmark_value>error messages;invalid references</bookmark_value> <bookmark_value>#REF error message</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ዋጋ የሌለው ማመሳከሪያዎች; የ ስህተት መልእክቶች</bookmark_value> <bookmark_value>የ ስህተት መልእክቶች;ዋጋ የሌለው ማመሳከሪያዎች</bookmark_value> <bookmark_value>#REF የ ስህተት መልእክት</bookmark_value>"
#: 02140000.xhp
msgctxt ""
@@ -72,7 +72,7 @@ msgctxt ""
"bm_id3148428\n"
"help.text"
msgid "<bookmark_value>invalid names; error messages</bookmark_value> <bookmark_value>#NAME error message</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ዋጋ የሌላቸው ስሞች; የ ስህተት መልእክቶች</bookmark_value> <bookmark_value>#NAME የ ስህተት መልእክት</bookmark_value>"
#: 02140000.xhp
msgctxt ""
@@ -81,7 +81,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Error Code"
-msgstr ""
+msgstr "የ ተሳሳተ ኮድ"
#: 02140000.xhp
msgctxt ""
@@ -152,7 +152,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "Character in a formula is not valid."
-msgstr ""
+msgstr "በ formula ውስጥ ባህሪው ዋጋ የሌለው ነው"
#: 02140000.xhp
msgctxt ""
@@ -170,7 +170,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "Invalid argument"
-msgstr ""
+msgstr "ዋጋ የሌለው ክርክር"
#: 02140000.xhp
msgctxt ""
@@ -866,7 +866,7 @@ msgctxt ""
"par_id4077578\n"
"help.text"
msgid "=ISNUMBER(B1) => FALSE"
-msgstr ""
+msgstr "=ISNUMBER(B1) => FALSE"
#: empty_cells.xhp
msgctxt ""
@@ -874,7 +874,7 @@ msgctxt ""
"par_id9094515\n"
"help.text"
msgid "=ISNUMBER(C1) => FALSE (previously was TRUE)"
-msgstr ""
+msgstr "=ISNUMBER(C1) => FALSE (previously was TRUE)"
#: empty_cells.xhp
msgctxt ""
@@ -882,7 +882,7 @@ msgctxt ""
"par_id396740\n"
"help.text"
msgid "=ISNUMBER(VLOOKUP(1;A1:C1;2)) => FALSE (B1)"
-msgstr ""
+msgstr "=ISNUMBER(VLOOKUP(1;A1:C1;2)) => FALSE (B1)"
#: empty_cells.xhp
msgctxt ""
@@ -890,7 +890,7 @@ msgctxt ""
"par_id3859675\n"
"help.text"
msgid "=ISNUMBER(VLOOKUP(1;A1:C1;3)) => FALSE (C1, previously was TRUE)"
-msgstr ""
+msgstr "=ISNUMBER(VLOOKUP(1;A1:C1;3)) => FALSE (C1, previously was TRUE)"
#: empty_cells.xhp
msgctxt ""
@@ -898,7 +898,7 @@ msgctxt ""
"par_id402233\n"
"help.text"
msgid "=ISTEXT(B1) => FALSE"
-msgstr ""
+msgstr "=ISTEXT(B1) => FALSE"
#: empty_cells.xhp
msgctxt ""
@@ -906,7 +906,7 @@ msgctxt ""
"par_id1623889\n"
"help.text"
msgid "=ISTEXT(C1) => FALSE"
-msgstr ""
+msgstr "=ISTEXT(C1) => FALSE"
#: empty_cells.xhp
msgctxt ""
@@ -922,7 +922,7 @@ msgctxt ""
"par_id300912\n"
"help.text"
msgid "=ISTEXT(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
-msgstr ""
+msgstr "=ISTEXT(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
#: empty_cells.xhp
msgctxt ""
@@ -930,7 +930,7 @@ msgctxt ""
"par_id9534592\n"
"help.text"
msgid "=ISBLANK(B1) => TRUE"
-msgstr ""
+msgstr "=ISBLANK(B1) => TRUE"
#: empty_cells.xhp
msgctxt ""
@@ -938,7 +938,7 @@ msgctxt ""
"par_id4969328\n"
"help.text"
msgid "=ISBLANK(C1) => FALSE"
-msgstr ""
+msgstr "=ISBLANK(C1) => FALSE"
#: empty_cells.xhp
msgctxt ""
@@ -946,7 +946,7 @@ msgctxt ""
"par_id9635914\n"
"help.text"
msgid "=ISBLANK(VLOOKUP(1;A1:C1;2)) => TRUE (B1, previously was FALSE)"
-msgstr ""
+msgstr "=ISBLANK(VLOOKUP(1;A1:C1;2)) => TRUE (B1, previously was FALSE)"
#: empty_cells.xhp
msgctxt ""
@@ -954,7 +954,7 @@ msgctxt ""
"par_id2476577\n"
"help.text"
msgid "=ISBLANK(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
-msgstr ""
+msgstr "=ISBLANK(VLOOKUP(1;A1:C1;3)) => FALSE (C1)"
#: empty_cells.xhp
msgctxt ""
@@ -970,7 +970,7 @@ msgctxt ""
"par_id2629474\n"
"help.text"
msgid "A1: <Empty>"
-msgstr ""
+msgstr "A1: <Empty>"
#: empty_cells.xhp
msgctxt ""
@@ -986,7 +986,7 @@ msgctxt ""
"par_id4524674\n"
"help.text"
msgid "=ISNUMBER(A1) => FALSE"
-msgstr ""
+msgstr "=ISNUMBER(A1) => FALSE"
#: empty_cells.xhp
msgctxt ""
@@ -1042,7 +1042,7 @@ msgctxt ""
"par_id4653767\n"
"help.text"
msgid "=B1=\"\" => TRUE (MS-Excel: FALSE)"
-msgstr ""
+msgstr "=B1=\"\" => TRUE (MS-Excel: FALSE)"
#: empty_cells.xhp
msgctxt ""
@@ -1050,7 +1050,7 @@ msgctxt ""
"par_id8801538\n"
"help.text"
msgid "C1: =VLOOKUP(...) with empty cell result => displays empty (MS-Excel: displays 0)"
-msgstr ""
+msgstr "C1: =VLOOKUP(...) with empty cell result => displays empty (MS-Excel: displays 0)"
#: empty_cells.xhp
msgctxt ""
@@ -1058,7 +1058,7 @@ msgctxt ""
"par_id6746421\n"
"help.text"
msgid "=ISNUMBER(VLOOKUP(...)) => FALSE"
-msgstr ""
+msgstr "=ISNUMBER(VLOOKUP(...)) => FALSE"
#: empty_cells.xhp
msgctxt ""
@@ -1066,7 +1066,7 @@ msgctxt ""
"par_id4876247\n"
"help.text"
msgid "=ISTEXT(VLOOKUP(...)) => FALSE"
-msgstr ""
+msgstr "=ISTEXT(VLOOKUP(...)) => FALSE"
#: empty_cells.xhp
msgctxt ""
@@ -1074,7 +1074,7 @@ msgctxt ""
"par_id7458723\n"
"help.text"
msgid "=ISNUMBER(C1) => FALSE (MS-Excel: TRUE)"
-msgstr ""
+msgstr "=ISNUMBER(C1) => FALSE (MS-Excel: TRUE)"
#: empty_cells.xhp
msgctxt ""
@@ -1082,4 +1082,4 @@ msgctxt ""
"par_id2753379\n"
"help.text"
msgid "=ISTEXT(C1) => FALSE"
-msgstr ""
+msgstr "=ISTEXT(C1) => FALSE"
diff --git a/source/am/helpcontent2/source/text/schart.po b/source/am/helpcontent2/source/text/schart.po
index 0c64264341f..ee33255f180 100644
--- a/source/am/helpcontent2/source/text/schart.po
+++ b/source/am/helpcontent2/source/text/schart.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-16 22:45+0000\n"
+"PO-Revision-Date: 2013-07-09 00:11+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1371422751.0\n"
+"X-POOTLE-MTIME: 1373328671.0\n"
#: main0000.xhp
msgctxt ""
@@ -137,7 +137,7 @@ msgctxt ""
"par_id8039796\n"
"help.text"
msgid "Alignment, text wrap, outer borders, and more."
-msgstr ""
+msgstr "ማሰለፊያ፡ ጽሁፍ መጠቅለያ፡ የውጪ ድንበሮች እና ተጨማሪ"
#: main0000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/schart/00.po b/source/am/helpcontent2/source/text/schart/00.po
index 22388ff5fc2..66e2b29b6f5 100644
--- a/source/am/helpcontent2/source/text/schart/00.po
+++ b/source/am/helpcontent2/source/text/schart/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 23:20+0000\n"
+"PO-Revision-Date: 2013-07-04 15:21+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372548018.0\n"
+"X-POOTLE-MTIME: 1372951280.0\n"
#: 00000004.xhp
msgctxt ""
@@ -49,7 +49,7 @@ msgctxt ""
"55\n"
"help.text"
msgid "On Formatting bar, click"
-msgstr ""
+msgstr "በ አቀራረብ መደርደሪያ ላይ ይጫኑ"
#: 00000004.xhp
msgctxt ""
@@ -138,7 +138,7 @@ msgctxt ""
"58\n"
"help.text"
msgid "On Formatting bar, click"
-msgstr ""
+msgstr "በ አቀራረብ መደርደሪያ ላይ ይጫኑ"
#: 00000004.xhp
msgctxt ""
@@ -395,7 +395,7 @@ msgctxt ""
"59\n"
"help.text"
msgid "On Formatting bar, click"
-msgstr ""
+msgstr "በ አቀራረብ መደርደሪያ ላይ ይጫኑ"
#: 00000004.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/schart/01.po b/source/am/helpcontent2/source/text/schart/01.po
index 690ff51cbac..358635484bc 100644
--- a/source/am/helpcontent2/source/text/schart/01.po
+++ b/source/am/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-06-10 10:39+0200\n"
-"PO-Revision-Date: 2013-06-29 23:21+0000\n"
+"PO-Revision-Date: 2013-07-04 16:11+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372548086.0\n"
+"X-POOTLE-MTIME: 1372954273.0\n"
#: 03010000.xhp
msgctxt ""
@@ -162,7 +162,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new row below the current row.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ከ አሁኑ ረድፍ በታች አዲስ ረድፍ ማስገቢያ</ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -171,7 +171,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new data series after the current column.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ከ አሁኑ አምድ በታች አዲስ ተከታታይ ዳታ ማስገቢያ </ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -221,7 +221,7 @@ msgctxt ""
"par_id6697286\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter names for the data series.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ለ ተከታታይ ዳታ ስሞች ማስገቢያ</ahelp>"
#: 04010000.xhp
msgctxt ""
@@ -256,7 +256,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Main Title"
-msgstr ""
+msgstr "ዋናው አርእስት"
#: 04010000.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">To show or hide a legend, click <emph>Legend On/Off</emph> on the <emph>Formatting</emph> bar.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">መግለጫውን ለ ማሳየት ወይንም ለ መደበቅ ይጫኑ <emph>መግለጫ ማብሪያ/ማጥፊያ</emph> በ <emph>አቀራረብ</emph> መደርደሪያ ላይ</ahelp></variable>"
#: 04020000.xhp
msgctxt ""
@@ -531,7 +531,7 @@ msgctxt ""
"hd_id1106200812072645\n"
"help.text"
msgid "Text Orientation"
-msgstr ""
+msgstr "የ ጽሁፍ አቅጣጫ"
#: 04020000.xhp
msgctxt ""
@@ -589,7 +589,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Opens the<emph> Data Labels </emph>dialog, which enables you to set the data labels.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">መክፈቻ የ<emph> ዳታ ምልክቶች </emph>ንግግር፡ የ ዳታ ምልክቶች ማሰናዳት ያስችሎታል</ahelp></variable>"
#: 04030000.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Show value as number"
-msgstr ""
+msgstr "ዋጋውን እንደ ቁጥር ማሳያ"
#: 04030000.xhp
msgctxt ""
@@ -631,7 +631,7 @@ msgctxt ""
"par_id9794610\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a dialog to select the number format.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ቁጥር አቀራረብ ምርጫ ንግግር መክፈቻ</ahelp>"
#: 04030000.xhp
msgctxt ""
@@ -725,7 +725,7 @@ msgctxt ""
"hd_id4319284\n"
"help.text"
msgid "Placement"
-msgstr ""
+msgstr "አቀማመጥ"
#: 04030000.xhp
msgctxt ""
@@ -1179,7 +1179,7 @@ msgctxt ""
"hd_id0428200810573977\n"
"help.text"
msgid "Same value for both"
-msgstr ""
+msgstr "እኩል ዋጋ ለሁለቱም"
#: 04050000.xhp
msgctxt ""
@@ -1485,7 +1485,7 @@ msgctxt ""
"par_id7951902\n"
"help.text"
msgid "m = SLOPE(Data_Y;Data_X)"
-msgstr ""
+msgstr "m = SLOPE(Data_Y;Data_X)"
#: 04050100.xhp
msgctxt ""
@@ -1493,7 +1493,7 @@ msgctxt ""
"par_id6637165\n"
"help.text"
msgid "b = INTERCEPT(Data_Y ;Data_X)"
-msgstr ""
+msgstr "b = INTERCEPT(Data_Y ;Data_X)"
#: 04050100.xhp
msgctxt ""
@@ -1509,7 +1509,7 @@ msgctxt ""
"par_id9244361\n"
"help.text"
msgid "r² = RSQ(Data_Y;Data_X)"
-msgstr ""
+msgstr "r² = RSQ(Data_Y;Data_X)"
#: 04050100.xhp
msgctxt ""
@@ -1549,7 +1549,7 @@ msgctxt ""
"par_id5946531\n"
"help.text"
msgid "b = INTERCEPT(Data_Y ;LN(Data_X))"
-msgstr ""
+msgstr "b = INTERCEPT(Data_Y ;LN(Data_X))"
#: 04050100.xhp
msgctxt ""
@@ -1557,7 +1557,7 @@ msgctxt ""
"par_id5649281\n"
"help.text"
msgid "r² = RSQ(Data_Y;LN(Data_X))"
-msgstr ""
+msgstr "r² = RSQ(Data_Y;LN(Data_X))"
#: 04050100.xhp
msgctxt ""
@@ -1589,7 +1589,7 @@ msgctxt ""
"par_id4416638\n"
"help.text"
msgid "a = SLOPE(LN(Data_Y);Data_X)"
-msgstr ""
+msgstr "a = SLOPE(LN(Data_Y);Data_X)"
#: 04050100.xhp
msgctxt ""
@@ -1605,7 +1605,7 @@ msgctxt ""
"par_id7184057\n"
"help.text"
msgid "m = EXP(SLOPE(LN(Data_Y);Data_X))"
-msgstr ""
+msgstr "m = EXP(SLOPE(LN(Data_Y);Data_X))"
#: 04050100.xhp
msgctxt ""
@@ -1613,7 +1613,7 @@ msgctxt ""
"par_id786767\n"
"help.text"
msgid "b = EXP(INTERCEPT(LN(Data_Y);Data_X))"
-msgstr ""
+msgstr "b = EXP(INTERCEPT(LN(Data_Y);Data_X))"
#: 04050100.xhp
msgctxt ""
@@ -1661,7 +1661,7 @@ msgctxt ""
"par_id8517105\n"
"help.text"
msgid "a = SLOPE(LN(Data_Y);LN(Data_X))"
-msgstr ""
+msgstr "a = SLOPE(LN(Data_Y);LN(Data_X))"
#: 04050100.xhp
msgctxt ""
@@ -1669,7 +1669,7 @@ msgctxt ""
"par_id9827265\n"
"help.text"
msgid "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X))"
-msgstr ""
+msgstr "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X))"
#: 04050100.xhp
msgctxt ""
@@ -1677,7 +1677,7 @@ msgctxt ""
"par_id2357249\n"
"help.text"
msgid "r² = RSQ(LN(Data_Y);LN(Data_X))"
-msgstr ""
+msgstr "r² = RSQ(LN(Data_Y);LN(Data_X))"
#: 04050100.xhp
msgctxt ""
@@ -1685,7 +1685,7 @@ msgctxt ""
"hd_id9204077\n"
"help.text"
msgid "Constraints"
-msgstr ""
+msgstr "መግታት"
#: 04050100.xhp
msgctxt ""
@@ -1824,7 +1824,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Align data series to:"
-msgstr ""
+msgstr "ተከታታይ ዳታ ማሰለፊያ ወደ:"
#: 04060000.xhp
msgctxt ""
@@ -2053,7 +2053,7 @@ msgctxt ""
"hd_id0305200910524823\n"
"help.text"
msgid "Leave gap"
-msgstr ""
+msgstr "ክፍተት መተው"
#: 04060000.xhp
msgctxt ""
@@ -2419,7 +2419,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Data Point"
-msgstr ""
+msgstr "የ ዳታ ነጥብ"
#: 05010100.xhp
msgctxt ""
@@ -2428,7 +2428,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Data Point</link>"
-msgstr ""
+msgstr "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">የ ዳታ ነጥብ</link>"
#: 05010100.xhp
msgctxt ""
@@ -2454,7 +2454,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Data Series"
-msgstr ""
+msgstr "ተከታታይ ዳታ"
#: 05010200.xhp
msgctxt ""
@@ -2463,7 +2463,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Data Series</link>"
-msgstr ""
+msgstr "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">ተከታታይ ዳታ</link>"
#: 05010200.xhp
msgctxt ""
@@ -2612,7 +2612,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifies the properties of the selected title.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">የ ተመረጠውን አርእስት ባህሪዎች ማሻሻያ</ahelp></variable>"
#: 05020100.xhp
msgctxt ""
@@ -3284,7 +3284,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">ባህሪ</link>"
#: 05040200.xhp
msgctxt ""
@@ -4202,7 +4202,7 @@ msgctxt ""
"par_id2578814\n"
"help.text"
msgid "<image id=\"Graphic3\" src=\"chart2/res/nostackdirectboth_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic3\" src=\"chart2/res/nostackdirectboth_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">ምልክት</alt></image>"
#: choose_chart_type.xhp
msgctxt ""
@@ -4282,7 +4282,7 @@ msgctxt ""
"par_id1592150\n"
"help.text"
msgid "<image id=\"Graphic7\" src=\"chart2/res/columnline_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic7\" src=\"chart2/res/columnline_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">ምልክት</alt></image>"
#: choose_chart_type.xhp
msgctxt ""
@@ -4898,7 +4898,7 @@ msgctxt ""
"par_id2186346\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the selected light source.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ለ ተመረጠው የ ብርሃን ምንጭ ቀለም ይምረጡ</ahelp>"
#: three_d_view.xhp
msgctxt ""
@@ -4906,7 +4906,7 @@ msgctxt ""
"par_id1331217\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ቀለም ንግግር በ መጠቀም ቀለም ይምረጡ</ahelp>"
#: three_d_view.xhp
msgctxt ""
@@ -4922,7 +4922,7 @@ msgctxt ""
"par_id5871761\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ቀለም ንግግር በ መጠቀም ቀለም ይምረጡ</ahelp>"
#: type_area.xhp
msgctxt ""
@@ -5346,7 +5346,7 @@ msgctxt ""
"hd_id265816\n"
"help.text"
msgid "Editing data series"
-msgstr ""
+msgstr "ተከታታይ ዳታ ማረሚያ"
#: type_column_line.xhp
msgctxt ""
@@ -5938,7 +5938,7 @@ msgctxt ""
"par_id9936216\n"
"help.text"
msgid "25"
-msgstr ""
+msgstr "25"
#: type_stock.xhp
msgctxt ""
@@ -5954,7 +5954,7 @@ msgctxt ""
"par_id4013794\n"
"help.text"
msgid "3"
-msgstr ""
+msgstr "3"
#: type_stock.xhp
msgctxt ""
@@ -5962,7 +5962,7 @@ msgctxt ""
"par_id1631824\n"
"help.text"
msgid "Tuesday"
-msgstr ""
+msgstr "ማክሰኞ"
#: type_stock.xhp
msgctxt ""
@@ -5986,7 +5986,7 @@ msgctxt ""
"par_id4186223\n"
"help.text"
msgid "22"
-msgstr ""
+msgstr "22"
#: type_stock.xhp
msgctxt ""
@@ -6066,7 +6066,7 @@ msgctxt ""
"par_id166936\n"
"help.text"
msgid "5"
-msgstr ""
+msgstr "5"
#: type_stock.xhp
msgctxt ""
@@ -6074,7 +6074,7 @@ msgctxt ""
"par_id6826990\n"
"help.text"
msgid "Thursday"
-msgstr ""
+msgstr "ሐሙስ"
#: type_stock.xhp
msgctxt ""
@@ -6090,7 +6090,7 @@ msgctxt ""
"par_id7003387\n"
"help.text"
msgid "40"
-msgstr ""
+msgstr "40"
#: type_stock.xhp
msgctxt ""
@@ -6106,7 +6106,7 @@ msgctxt ""
"par_id3105868\n"
"help.text"
msgid "47"
-msgstr ""
+msgstr "47"
#: type_stock.xhp
msgctxt ""
@@ -6114,7 +6114,7 @@ msgctxt ""
"par_id3908810\n"
"help.text"
msgid "35"
-msgstr ""
+msgstr "35"
#: type_stock.xhp
msgctxt ""
@@ -6122,7 +6122,7 @@ msgctxt ""
"par_id9461653\n"
"help.text"
msgid "6"
-msgstr ""
+msgstr "6"
#: type_stock.xhp
msgctxt ""
@@ -6130,7 +6130,7 @@ msgctxt ""
"par_id9239173\n"
"help.text"
msgid "Friday"
-msgstr ""
+msgstr "ዓርብ"
#: type_stock.xhp
msgctxt ""
@@ -6210,7 +6210,7 @@ msgctxt ""
"hd_id4569231\n"
"help.text"
msgid "Type 1"
-msgstr ""
+msgstr "አይነት 1"
#: type_stock.xhp
msgctxt ""
@@ -6234,7 +6234,7 @@ msgctxt ""
"hd_id5947141\n"
"help.text"
msgid "Type 2"
-msgstr ""
+msgstr "አይነት 2"
#: type_stock.xhp
msgctxt ""
@@ -6250,7 +6250,7 @@ msgctxt ""
"hd_id9364909\n"
"help.text"
msgid "Type 3"
-msgstr ""
+msgstr "አይነት 3"
#: type_stock.xhp
msgctxt ""
@@ -6266,7 +6266,7 @@ msgctxt ""
"hd_id4313791\n"
"help.text"
msgid "Type 4"
-msgstr ""
+msgstr "አይነት 4"
#: type_stock.xhp
msgctxt ""
@@ -7674,7 +7674,7 @@ msgctxt ""
"hd_id9241615\n"
"help.text"
msgid "Organizing data series"
-msgstr ""
+msgstr "ተከታታይ ዳታ ማደራጃ"
#: wiz_data_series.xhp
msgctxt ""
@@ -7722,7 +7722,7 @@ msgctxt ""
"hd_id9777520\n"
"help.text"
msgid "Editing data series"
-msgstr ""
+msgstr "ተከታታይ ዳታ ማረሚያ"
#: wiz_data_series.xhp
msgctxt ""
@@ -7866,4 +7866,4 @@ msgctxt ""
"par_id2844019\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves down the selected entry in the Data Series list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ተመረጠውን ማስገቢያ ከ ተከታታይ ዳታ ዝርዝር ስር ወደ ታች ማንቀሳቀሻ</ahelp>"
diff --git a/source/am/helpcontent2/source/text/schart/04.po b/source/am/helpcontent2/source/text/schart/04.po
index f827abe43b4..ed9e60b71c7 100644
--- a/source/am/helpcontent2/source/text/schart/04.po
+++ b/source/am/helpcontent2/source/text/schart/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-04-25 23:29+0000\n"
+"PO-Revision-Date: 2013-07-04 03:49+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1366932558.0\n"
+"X-POOTLE-MTIME: 1372909774.0\n"
#: 01020000.xhp
msgctxt ""
@@ -219,7 +219,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "F2 in titles"
-msgstr ""
+msgstr "F2 በ አርእስት ውስጥ"
#: 01020000.xhp
msgctxt ""
@@ -228,7 +228,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "Enter text input mode."
-msgstr ""
+msgstr "የ ጽሁፍ ማስገቢያ ዘዴ ያስገቡ"
#: 01020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sdraw.po b/source/am/helpcontent2/source/text/sdraw.po
index 320cdbfdb71..33bb390c032 100644
--- a/source/am/helpcontent2/source/text/sdraw.po
+++ b/source/am/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-22 16:06+0000\n"
+"PO-Revision-Date: 2013-07-12 15:36+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1371917207.0\n"
+"X-POOTLE-MTIME: 1373643383.0\n"
#: main0000.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
-msgstr ""
+msgstr "ይህ ዝርዝር የ ያዛቸው መሳሪያዎች ለ $[officename] መሳያ እንዲሁም ቋንቋ ጋር ለመድረስ እና ስርአቱን ለማሰናዳት ነው"
#: main0106.xhp
msgctxt ""
@@ -674,7 +674,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "This section provides an overview of the toolbars available in $[officename] Draw."
-msgstr ""
+msgstr "ይህ ክፍል የሚያቀርበው ባጠቃላይ ዝግጁ የሆኑ የ እቃ መደርደሪያ ነው ለ $[officename] መሳያ"
#: main0202.xhp
msgctxt ""
@@ -700,7 +700,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "The Line and Filling bar contains commands for the current editing mode."
-msgstr ""
+msgstr "መስመር እና መሙያ የ ያዛቸው ትእዛዞች ለ አሁኑ ማረሚያ ዘዴ ነው"
#: main0202.xhp
msgctxt ""
@@ -1112,7 +1112,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "Displaying Dimensions"
-msgstr ""
+msgstr "Dimensions ማሳያ"
#: main0503.xhp
msgctxt ""
@@ -1139,7 +1139,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs."
-msgstr ""
+msgstr "አዳራሽ የ ያዛቸው ምስሎች፡ እንቅስቃሴዎች፡ ድምፆች እና ሌሎች እቃዎችን ለማስገቢያ እና በ እርስዎ ስእል ውስጥ ለመጠቀሚያ ነው እንዲሁም የሌሎችን $[officename] programs."
#: main0503.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sdraw/guide.po b/source/am/helpcontent2/source/text/sdraw/guide.po
index 0bf7ffabb86..de83a644adc 100644
--- a/source/am/helpcontent2/source/text/sdraw/guide.po
+++ b/source/am/helpcontent2/source/text/sdraw/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 23:15+0000\n"
+"PO-Revision-Date: 2013-07-08 18:14+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372547742.0\n"
+"X-POOTLE-MTIME: 1373307287.0\n"
#: align_arrange.xhp
msgctxt ""
@@ -57,7 +57,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "Each object that you place in your document is successively stacked on the preceding object. To re-arrange the stacking order of a selected object, proceed as follows."
-msgstr ""
+msgstr "በ እርስዎ ሰነድ ላይ እያንዳንዱ እቃ ተሳክቶ የተከመረው ቀደም ባለው እቃ ላይ ነው፡ የ ተመረጠውን እቃ እንደገና-ለማዘጋጀት የ መከመሪያው ደንብ እንደሚከተለው ነው"
#: align_arrange.xhp
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"81\n"
"help.text"
msgid "Click the object behind which you want to place the selected object."
-msgstr ""
+msgstr "ይጫኑ እቃውን የተመረጠውን እቃ ከጀርባው ማስገባት የሚፈልጉትን"
#: align_arrange.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "Reversing The Stacking Order of Two Objects"
-msgstr ""
+msgstr "የ ሁለት እቃዎች ክምር ቅደም ተከተል መገልበጫ"
#: align_arrange.xhp
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "The <emph>Alignment</emph> function enables you to align objects relative to each other or relative to the page."
-msgstr ""
+msgstr "የ <emph>ማሰለፊያ</emph> ተግባሮች የሚያስችለው እቃዎችን እንደ ግንኙነታቸው ከ ሌሎች እቃዎች ጋር ወይንም እንደ ገጹ ግንኙነት ለ ማሰለፍ ነው"
#: align_arrange.xhp
msgctxt ""
@@ -202,7 +202,7 @@ msgctxt ""
"par_idN108A3\n"
"help.text"
msgid "Select an object to align it to the page or select multiple objects to align them relative to each other."
-msgstr ""
+msgstr "እቃ ይምረጡ በ ገጹ ውስጥ ለማሰለፍ ወይንም በርካታ እቃዎች እያንዳንዳቸውን እንደ ግንኙነታቸው ለማሰለፍ"
#: align_arrange.xhp
msgctxt ""
@@ -227,7 +227,7 @@ msgctxt ""
"71\n"
"help.text"
msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Distribution</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
-msgstr ""
+msgstr "በ መሳያ ውስጥ ሶስት ወይንም ከዚያ በላይ እቃዎች ከመረጡ፡ መጠቀም ይችላሉ የ <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>ስርጭት</emph></link> ትእዛዝ የ ቁመት እና የ አግድም ክፍተቶችን እኩል በ እቃዎች መካከል ለ ማሰራጨት ይችላሉ"
#: align_arrange.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "If you want, you can mix a custom color and add it to a color table."
-msgstr ""
+msgstr "ከ ፈለጉ custom ቀለም መቀላቀል እና ወደ ቀለም ሰንጠረዥ መጨመር ይችላሉ"
#: color_define.xhp
msgctxt ""
@@ -321,7 +321,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "Changes made to the standard color table are permanent and are saved automatically."
-msgstr ""
+msgstr "በመደበኛ የ ቀለም ሰንጠረዥ ውስጥ የሚያደርጉት ለውጥ ቋሚ ይሆናል እና ራሱ በራሱ ያስቀምጣቸዋል"
#: color_define.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared.po b/source/am/helpcontent2/source/text/shared.po
index d287703fd26..6657d5df06c 100644
--- a/source/am/helpcontent2/source/text/shared.po
+++ b/source/am/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 23:15+0000\n"
+"PO-Revision-Date: 2013-07-13 14:59+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372547708.0\n"
+"X-POOTLE-MTIME: 1373727590.0\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -295,7 +295,7 @@ msgctxt ""
"par_idN10571\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ፊደል ስራ አዳራሽ መክፈቻ ሌሎች ቅድመ እይታዎችን የሚመርጡበት፡ ይጫኑ እሺ ለመፈጸም አዲስ የ ፊደል ስራ ባህሪዎችን እቃ</ahelp>"
#: fontwork_toolbar.xhp
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"par_idN1058C\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Fontwork Shape toolbar. Click a shape to apply the shape to all selected Fontwork objects.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ፊደል ስራ ቅርጽ እቃ መደርደሪያ መክፈቻ፡ ይጫኑ ቅርጹን ለ ተመረጠው የፊደል ስራ እቃዎች ለመፈጸም</ahelp>"
#: fontwork_toolbar.xhp
msgctxt ""
@@ -423,7 +423,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "<ahelp hid=\".\">Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">መቀየሪያ የ <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> ጥንድ ባህሪዎች ማብሪያ እና ማጥፊያ</ahelp>"
#: main0108.xhp
msgctxt ""
@@ -569,7 +569,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\".uno:About\">Displays general program information such as version number and copyrights.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:About\">የ ጠቅላላ ፕሮግራም መረጃ እንደ እትም ቁጥር እና የ ቅጂ መብቶችን ማሳያ</ahelp>"
#: main0201.xhp
msgctxt ""
@@ -796,7 +796,7 @@ msgctxt ""
"par_id3154252\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need when working with tables. It appears when you move the cursor into a table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ <emph>ሰንጠረዥ</emph> መደርደሪያ የ ያዛቸው በ ሰንጠረዥ ሲሰሩ የሚያስፈልጉ ተግባሮች ናቸው፡ የሚታዩትም መጠቆሚያውን ወደ ክፍሉ ላይ ሲያደርጉ ብቻ ነው</ahelp>"
#: main0204.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Form Navigation Bar"
-msgstr ""
+msgstr "ለ መቃኛ መደርደሪያ"
#: main0213.xhp
msgctxt ""
@@ -1507,7 +1507,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "<ahelp hid=\"HID_BEZIER_TOOLBOX\">The <emph>Edit Points </emph>Bar appears when you select a polygon object and click <emph>Edit Points</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_BEZIER_TOOLBOX\">የ <emph>ማረሚያ ነጥቦች </emph>መደርደሪያ ይታያል የ polygon እቃ በሚመርጡ ጊዜ እና ይጫኑ <emph>ማረሚያ ነጥቦች</emph>.</ahelp>"
#: main0227.xhp
msgctxt ""
@@ -1666,7 +1666,7 @@ msgctxt ""
"57\n"
"help.text"
msgid "First select the points to be deleted, and then click this icon, or press Del."
-msgstr ""
+msgstr "በ መጀመሪያ የሚጠፉትን ነጥቦች ይምረጡ፡ እና ከዛ ይጫኑ ይህን ምልክት ወይንም ማጥፊያውን ይጫኑ"
#: main0227.xhp
msgctxt ""
@@ -1701,7 +1701,7 @@ msgctxt ""
"60\n"
"help.text"
msgid "<ahelp hid=\".uno:BezierCutLine\">The<emph> Split Curve </emph>icon splits a curve. Select the point or points where you want to split the curve, then click the icon</ahelp>."
-msgstr ""
+msgstr "<ahelp hid=\".uno:BezierCutLine\">የ<emph> ክብ መክፈያ </emph>ምልክት ክብ ይከፍላል፡ ይምረጡ ነጥብ ወይንም ነጥቦች መክፈል የሚፈልጉትን ክብ እና ከዛ ይጫኑ ምልክት</ahelp>."
#: main0227.xhp
msgctxt ""
@@ -1963,7 +1963,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "This section contains descriptions of frequently used shortcut keys in $[officename]."
-msgstr ""
+msgstr "ይህ ክፍል የ ያዛቸው ብዙ ጊዜ የሚጠቀሙበትን አቋራጭ ቁልፎች መግለጫ ነው ለ $[officename]."
#: main0500.xhp
msgctxt ""
@@ -2041,7 +2041,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
-msgstr ""
+msgstr "በ በለጠ ለመረዳት ስለ $[officename] API reference, ይህን ድህረ ገጽ ይጎብኙ http://api.libreoffice.org/"
#: main0600.xhp
msgctxt ""
@@ -2076,7 +2076,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">Java Platform Support</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">Java Platform Support</link>"
#: main0650.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index 73401df6e1c..81bbc27c0d4 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-06-13 17:25+0200\n"
-"PO-Revision-Date: 2013-06-29 17:42+0000\n"
+"PO-Revision-Date: 2013-07-14 23:15+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372527775.0\n"
+"X-POOTLE-MTIME: 1373843755.0\n"
#: 00000001.xhp
msgctxt ""
@@ -83,7 +83,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "By clicking the arrow next to some icons you open a toolbar. To move a toolbar, drag the title bar. As soon as you release the mouse button, the toolbar remains at the new position. Drag the title bar to another position, or drag to an edge of the window, where the toolbar will dock. Close a toolbar by clicking the Close Window icon. Make the toolbar visible again by choosing <emph>View - Toolbars - (toolbar name)</emph>."
-msgstr ""
+msgstr "ከ ምልክት አጠገብ ያለውን ቀስት በ መጫን የ እቃ መደርደሪያ መክፈት ይችላሉ፡ የ እቃ መደርደሪያውን ለማንቀሳቀስ አርእስቱን ይዘው ይጎትቱ፡ የ አይጥ ቁልፉን ሲለቁ የ እቃ መደርደሪያው በ አዲሱ ቦታ ይቀመጣል፡ ወደ ሌላ ቦታ ይጎትቱ ወይንም ወደ መስኮት ጠርዝ አጠገብ የ እቃ መደርደሪያው እዚያ ይቆያል፡ መዝጋት ከፈለጉ የመዝጊያውን ምልክት በ መስኮቱ ላይ ይጫኑ፡ የ እቃ መደርደሪያውን እንደገና እንዲታይ ከፈለጉ ይምረጡ<emph>መመልከቻ - እቃ መደርደሪያ - (የ እቃ መደርደሪያውን ስም</emph>)"
#: 00000001.xhp
msgctxt ""
@@ -144,7 +144,7 @@ msgctxt ""
"77\n"
"help.text"
msgid "<ahelp hid=\".\">If you click forward through the dialog, this button is called <emph>Next</emph>. On the last page the button has the name <emph>Convert</emph>. The conversion is then performed by clicking the button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ከተጫኑ ወደፊት ንግግሩን፡ ይህ ቁልፍ <emph>ይቀጥሉ</emph>. ይሆናል በ መጨረሻው ገጽ ላይ ቁልፉ ስሙ <emph>መቀየሪያ</emph>. ይሆናል መቀየሩ የሚፈጸመው ይህን ቁልፍ ሲጫኑ ነው</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "<ahelp hid=\".\">Applies the modified or selected values without closing the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ተሻሻለውን ወይንም የ ተመረጠውን ዋጋ ንግግሩ ሳይዘጋ መፈጸሚያ</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -457,7 +457,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "A confirmation does not appear before the defaults are reloaded."
-msgstr ""
+msgstr "ማረጋገጫ አይታይም ነባሩ እንደገና እስከሚጫን ድረስ"
#: 00000001.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index 0921f593a01..c11510af323 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-06-22 14:15+0200\n"
-"PO-Revision-Date: 2013-06-16 22:50+0000\n"
+"PO-Revision-Date: 2013-07-14 00:58+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1371423042.0\n"
+"X-POOTLE-MTIME: 1373763483.0\n"
#: 01110000.xhp
msgctxt ""
@@ -57,7 +57,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you select text or a graphic and click the <emph>Print File Direct</emph> icon, you are prompted to print the selection or the document. </caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ጽሁፍ ወይንም ንድፍ መርጠው ከ ተጫኑ የ <emph>በቀጥታ ፋይል ማተሚያ</emph> ምልክት ፡ ወዲያውኑ ማተም ይችላሉ የተመረጠውን ወይንም ሰነዱን </caseinline></switchinline>"
#: 01110000.xhp
msgctxt ""
@@ -65,7 +65,7 @@ msgctxt ""
"par_id9547105\n"
"help.text"
msgid "If the current document uses a printer that is not the default printer for your operating system, the <emph>Print File Direct </emph>icon opens the <link href=\"text/shared/01/01130000.xhp\"><emph>Print</emph></link> dialog."
-msgstr ""
+msgstr "የ አሁኑ ሰነድ ለ እርስዎ ስርአት ነባር ያልሆነ ማተሚያ ከ ተጠቀመ የ <emph>ፋይል በቀጥታ ማተሚያ </emph>ምልክት ይከፍታል የ <link href=\"text/shared/01/01130000.xhp\"><emph>ማተሚያ</emph></link> ንግግር"
#: 01110000.xhp
msgctxt ""
@@ -89,7 +89,7 @@ msgctxt ""
"bm_id3150476\n"
"help.text"
msgid "<bookmark_value>Drawing bar</bookmark_value> <bookmark_value>lines; draw functions</bookmark_value> <bookmark_value>polygon drawing</bookmark_value> <bookmark_value>freeform lines; draw functions</bookmark_value> <bookmark_value>text boxes; positioning</bookmark_value> <bookmark_value>headings; entering as text box</bookmark_value> <bookmark_value>text objects; draw functions</bookmark_value> <bookmark_value>ticker text</bookmark_value> <bookmark_value>text; animating</bookmark_value> <bookmark_value>vertical callouts</bookmark_value> <bookmark_value>vertical text boxes</bookmark_value> <bookmark_value>cube drawing</bookmark_value> <bookmark_value>triangle drawing</bookmark_value> <bookmark_value>ellipse drawing</bookmark_value> <bookmark_value>rectangle drawing</bookmark_value> <bookmark_value>shapes</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ መሳያ መደርደሪያ</bookmark_value> <bookmark_value>መስመሮች; የ መሳያ ተግባሮች</bookmark_value> <bookmark_value>polygon መሳያ</bookmark_value> <bookmark_value>freeform lines; የ መሳያ ተግባሮች</bookmark_value> <bookmark_value>የ ጽሁፍ ሳጥኖች; አቀማመጥ</bookmark_value> <bookmark_value>ራስጌ; ማስገቢያ እንደ ጽሁፍ ሳጥን</bookmark_value> <bookmark_value>የ ጽሁፍ እቃዎች; የ መሳያ ተግባሮች</bookmark_value> <bookmark_value>ticker text</bookmark_value> <bookmark_value>የጽሁፍ; እንቅስቃሴ</bookmark_value> <bookmark_value>በ ቁመት መጥሪያዎች</bookmark_value> <bookmark_value>የ ቁመት ጽሁፍ ሳጥኖች</bookmark_value> <bookmark_value>cube መሳያ</bookmark_value> <bookmark_value>ሶስት ማእዘን መሳያ</bookmark_value> <bookmark_value>ellipse መሳያ</bookmark_value> <bookmark_value>አራት ማእዘን መሳያ</bookmark_value> <bookmark_value>ቅርጾች</bookmark_value>"
#: 01140000.xhp
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"75\n"
"help.text"
msgid "Vertical Callouts"
-msgstr ""
+msgstr "በቁመት መጥሪያዎች"
#: 01140000.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"74\n"
"help.text"
msgid "<link href=\"text/shared/guide/insert_graphic_drawit.xhp\" name=\"Tips\">Tips for working with the <emph>Drawing </emph>bar.</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/insert_graphic_drawit.xhp\" name=\"Tips\">ጠቃሚ ምክሮች እንዴት እንደሚሰሩ በ <emph>መሳያ </emph>መደርደሪያ</link>"
#: 01170000.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"par_idN10C4D\n"
"help.text"
msgid "In the document, drag to create the control."
-msgstr ""
+msgstr "በሰነዱ ውስጥ ይጎትቱ መቆጣጠሪያ ለመፍጠር"
#: 01170000.xhp
msgctxt ""
@@ -1127,7 +1127,7 @@ msgctxt ""
"par_idN11A64\n"
"help.text"
msgid "<image id=\"img_id7816400\" src=\"cmd/sc_spinbutton.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id7816400\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id7816400\" src=\"cmd/sc_spinbutton.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id7816400\">ምልክት</alt></image>"
#: 01170000.xhp
msgctxt ""
@@ -1135,7 +1135,7 @@ msgctxt ""
"par_idN11A75\n"
"help.text"
msgid "<ahelp hid=\".uno:SpinButton\">Creates a spin button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SpinButton\">ማሽከርከሪያ ቁልፍ መፍጠሪያ</ahelp>"
#: 01170000.xhp
msgctxt ""
@@ -1255,7 +1255,7 @@ msgctxt ""
"par_idN11D14\n"
"help.text"
msgid "Specifies the orientation of a scrollbar, that is, horizontal or vertical."
-msgstr ""
+msgstr "በ አግድም ወይንም በ ቁመት የ መሸብለያ መደርደሪያ አቅጣጫ መወሰኛ"
#: 01170000.xhp
msgctxt ""
@@ -1319,7 +1319,7 @@ msgctxt ""
"par_idN11D48\n"
"help.text"
msgid "Specifies the color of the arrows on the scrollbar."
-msgstr ""
+msgstr "የ ቀስት ቀለም በ መሸብለያ መደርደሪያ ላይ መወሰኛ"
#: 01170000.xhp
msgctxt ""
@@ -1717,7 +1717,7 @@ msgctxt ""
"par_idN11B2C\n"
"help.text"
msgid "<image id=\"img_id5074922\" src=\"cmd/sc_navigationbar.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id5074922\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id5074922\" src=\"cmd/sc_navigationbar.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id5074922\">ምልክት</alt></image>"
#: 01170000.xhp
msgctxt ""
@@ -1725,7 +1725,7 @@ msgctxt ""
"par_idN11B3D\n"
"help.text"
msgid "<ahelp hid=\"SID_FM_NAVIGATIONBAR\">Creates a navigation bar.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SID_FM_NAVIGATIONBAR\">የ መቃኛ መደርደሪያ መፍጠሪያ</ahelp>"
#: 01170000.xhp
msgctxt ""
@@ -2211,7 +2211,7 @@ msgctxt ""
"bm_id3109850\n"
"help.text"
msgid "<bookmark_value>table controls; properties</bookmark_value><bookmark_value>controls; properties of table controls</bookmark_value><bookmark_value>table controls;keyboard-only edit mode</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ሰንጠረዥ መቆጣጠሪያ; ባህሪዎች</bookmark_value><bookmark_value>መቆጣጠሪያ; ባህሪዎች የ ሰንጠረዥ መቆጣጠሪያ</bookmark_value><bookmark_value>የ ሰንጠረዥ መቆጣጠሪያ;በፊደል ገበታ-ብቻ ማረሚያ ዘዴ</bookmark_value>"
#: 01170004.xhp
msgctxt ""
@@ -2346,7 +2346,7 @@ msgctxt ""
"79\n"
"help.text"
msgid "Hide Columns"
-msgstr ""
+msgstr "አምዶች መደበቂያ"
#: 01170004.xhp
msgctxt ""
@@ -2355,7 +2355,7 @@ msgctxt ""
"80\n"
"help.text"
msgid "<ahelp hid=\"SID_FM_HIDECOL\">Hides the selected column.</ahelp> Its properties are not changed."
-msgstr ""
+msgstr "<ahelp hid=\"SID_FM_HIDECOL\">የተመረጠውን አምድ መደበቂያ</ahelp> ባህሪዎቹ አይቀየሩም"
#: 01170004.xhp
msgctxt ""
@@ -2391,7 +2391,7 @@ msgctxt ""
"84\n"
"help.text"
msgid "<ahelp hid=\"SID_FM_SHOWCOLS_MORE\">Calls the <emph>Show Columns</emph> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SID_FM_SHOWCOLS_MORE\">መጥሪያ የ <emph>አምዶች ማሳያ</emph> ንግግር</ahelp>"
#: 01170004.xhp
msgctxt ""
@@ -2427,7 +2427,7 @@ msgctxt ""
"127\n"
"help.text"
msgid "Keyboard-only control of Table Controls"
-msgstr ""
+msgstr "በ ፊደል ገበታ-ብቻ ሰንጠረዥ መቆጣጠሪያ"
#: 01170004.xhp
msgctxt ""
@@ -2490,7 +2490,7 @@ msgctxt ""
"133\n"
"help.text"
msgid "In the edit mode, you can open the edit mode context menu by pressing Shift+F10."
-msgstr ""
+msgstr "በ ማረሚያ ዘዴ የ ማረሚያ አገባብ ዘዴ ዝርዝር መክፈት ይችላሉ በ መጫን Shift+F10."
#: 01170004.xhp
msgctxt ""
@@ -3120,7 +3120,7 @@ msgctxt ""
"par_idN109EC\n"
"help.text"
msgid "The <emph>Alignment</emph> option for buttons is called <emph>Graphics alignment</emph>."
-msgstr ""
+msgstr "የ <emph>ማሰለፊያ</emph> ምርጫ ለ ቁልፎች የሚባለው <emph>ንድፎች ማሰለፊያ ነው</emph>."
#: 01170101.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"105\n"
"help.text"
msgid "N"
-msgstr ""
+msgstr "N"
#: 01170101.xhp
msgctxt ""
@@ -3745,7 +3745,7 @@ msgctxt ""
"68\n"
"help.text"
msgid "The next document is created in the same frame."
-msgstr ""
+msgstr "የሚቀጥለው ሰነድ የሚፈጠረው በ ተመሳሳይ ክፈፍ ነው"
#: 01170101.xhp
msgctxt ""
@@ -4488,7 +4488,7 @@ msgctxt ""
"36\n"
"help.text"
msgid "Default selection"
-msgstr ""
+msgstr "ነባር ምርጫ"
#: 01170101.xhp
msgctxt ""
@@ -4840,7 +4840,7 @@ msgctxt ""
"bm_id3163820\n"
"help.text"
msgid "<bookmark_value>multi-line titles in forms</bookmark_value> <bookmark_value>names; multi-line titles</bookmark_value> <bookmark_value>controls; multi-line titles</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>በርካታ-መስመር አርእስቶች በ ፎርሞች ውስጥ</bookmark_value> <bookmark_value>ስሞች; በርካታ-መስመር አርእስቶች</bookmark_value> <bookmark_value>መቆጣጠሪያዎች; በርካታ-መስመር አርእስቶች</bookmark_value>"
#: 01170101.xhp
msgctxt ""
@@ -5684,7 +5684,7 @@ msgctxt ""
"42\n"
"help.text"
msgid "{empty} or 0"
-msgstr ""
+msgstr "{ባዶ} ወይንም 0"
#: 01170102.xhp
msgctxt ""
@@ -5765,7 +5765,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "{empty} or 0"
-msgstr ""
+msgstr "{ባዶ} ወይንም 0"
#: 01170102.xhp
msgctxt ""
@@ -5900,7 +5900,7 @@ msgctxt ""
"83\n"
"help.text"
msgid "SELECT field1, field2 FROM table,"
-msgstr ""
+msgstr "ይምረጡ ሜዳ1, ሜዳ2 ከ ሰንጠረዥ"
#: 01170102.xhp
msgctxt ""
@@ -6080,7 +6080,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "\"Value\""
-msgstr ""
+msgstr "\"ዋጋ\""
#: 01170102.xhp
msgctxt ""
@@ -6116,7 +6116,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "\"$$$empty$$$\""
-msgstr ""
+msgstr "\"$$$ባዶ$$$\""
#: 01170102.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/04.po b/source/am/helpcontent2/source/text/shared/04.po
index 4dd564adfed..8e090e6001b 100644
--- a/source/am/helpcontent2/source/text/shared/04.po
+++ b/source/am/helpcontent2/source/text/shared/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 17:43+0000\n"
+"PO-Revision-Date: 2013-07-08 18:34+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372527807.0\n"
+"X-POOTLE-MTIME: 1373308447.0\n"
#: 01010000.xhp
msgctxt ""
@@ -66,7 +66,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "When operating your application, you can choose between using the mouse or the keyboard for almost all of the operations available."
-msgstr ""
+msgstr "ስራዎችን በሚፈጽሙ ጊዜ መምረጥ ይችላሉ በ አይጥ ወይንም በ ፊደል ገበታ መካከል ለሁሉም ስራዎች ማለት ይቻላል"
#: 01010000.xhp
msgctxt ""
@@ -138,7 +138,7 @@ msgctxt ""
"127\n"
"help.text"
msgid "Practical Text Input Fields"
-msgstr ""
+msgstr "ተግባራዊ የ ጽሁፍ ማስገቢያ ሜዳዎች"
#: 01010000.xhp
msgctxt ""
@@ -201,7 +201,7 @@ msgctxt ""
"135\n"
"help.text"
msgid "By using <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and right or left arrow key, the cursor will jump from word to word; if you also hold down the Shift key, one word after the other is selected."
-msgstr ""
+msgstr "ይህን በመጠቀም <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> እና የ ቀኝ ወይንም የ ግራ ቀስት ቁልፍ መጠቆሚያው ከ አንድ ቃል ወደ ሌላው ቃል ይዘላል; Shift ቁልፍን ተጭነው ከያዙ ደግሞ ከ አንድ ፊደል ወደ ሌላው ፊደል ይዘላል"
#: 01010000.xhp
msgctxt ""
@@ -219,7 +219,7 @@ msgctxt ""
"137\n"
"help.text"
msgid "Drag-and-drop can be used within and outside of a text box."
-msgstr ""
+msgstr "መጎተቻ-እና-መጣያ በ ጽሁፍ ሳጥን ውስጥ እና ውጪ መጠቀም ይችላሉ"
#: 01010000.xhp
msgctxt ""
@@ -228,7 +228,7 @@ msgctxt ""
"138\n"
"help.text"
msgid "The <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z shortcut keys are used to undo modifications one step at a time; the text will then have the status it had before the first change."
-msgstr ""
+msgstr "የ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z አቋራጭ ቁልፍ የሚጠቅሙት ማሻሻያዎችን ለ መተው ነው አንድ ደረጃ በ አንድ ጊዜ; ስለዚህም የ ጽሁፉ ሁኔታ ከ መቀየሩ በፊት እንደ ነበረው ይሆናል"
#: 01010000.xhp
msgctxt ""
@@ -255,7 +255,7 @@ msgctxt ""
"163\n"
"help.text"
msgid "Interrupting Macros"
-msgstr ""
+msgstr "Macro ማቋረጥ"
#: 01010000.xhp
msgctxt ""
@@ -264,7 +264,7 @@ msgctxt ""
"164\n"
"help.text"
msgid "If you want to terminate a macro that is currently running, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Q."
-msgstr ""
+msgstr "አሁን እየሄደ ያለ macro ማቋረጥ ከ ፈለጉ፡ ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Q."
#: 01010000.xhp
msgctxt ""
@@ -308,7 +308,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<emph>Effect</emph>"
-msgstr "<emph>ጠጽእኖው</emph>"
+msgstr "<emph>ተጽእኖው</emph>"
#: 01010000.xhp
msgctxt ""
@@ -458,7 +458,7 @@ msgctxt ""
"par_id31560601\n"
"help.text"
msgid "<emph>Effect</emph>"
-msgstr "<emph>ጠጽእኖው</emph>"
+msgstr "<emph>ተጽእኖው</emph>"
#: 01010000.xhp
msgctxt ""
@@ -636,7 +636,7 @@ msgctxt ""
"51\n"
"help.text"
msgid "Redraws the document view."
-msgstr ""
+msgstr "የ ሰነድ መመልከቻውን እንደገና መሳያ"
#: 01010000.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"350\n"
"help.text"
msgid "Enable or disable the selection cursor in read-only text."
-msgstr ""
+msgstr "ማስቻያ ወይንም ማሰናከያ የ መጠቆሚያውን ምርጫ በንባብ-ብቻ ጽሁፍ ውስጥ ሲሆኑ"
#: 01010000.xhp
msgctxt ""
@@ -681,7 +681,7 @@ msgctxt ""
"152\n"
"help.text"
msgid "In the $[officename] Help: jumps to main help page."
-msgstr ""
+msgstr "ከ $[officename] እርዳታ: ወደ ዋናው የ እርዳታ ገጽ መዝለያ"
#: 01010000.xhp
msgctxt ""
@@ -849,7 +849,7 @@ msgctxt ""
"par_id31560602\n"
"help.text"
msgid "<emph>Effect</emph>"
-msgstr "<emph>ጠጽእኖው</emph>"
+msgstr "<emph>ተጽእኖው</emph>"
#: 01010000.xhp
msgctxt ""
@@ -876,7 +876,7 @@ msgctxt ""
"289\n"
"help.text"
msgid "Enter (if an OLE object is selected)"
-msgstr ""
+msgstr "ማስገቢያ (የ OLE እቃ ከተመረጠ)"
#: 01010000.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"290\n"
"help.text"
msgid "Enter (if a drawing object or text object is selected)"
-msgstr ""
+msgstr "ማስገቢያ (የ መሳያ እቃ ወይንም የ ጽሁፍ እቃ ከ ተመረጠ)"
#: 01010000.xhp
msgctxt ""
@@ -1077,7 +1077,7 @@ msgctxt ""
"91\n"
"help.text"
msgid "The <emph>Italic</emph> attribute is applied to the selected area. If the cursor is positioned in a word, this word is also marked in italic."
-msgstr ""
+msgstr "የ <emph>ማዝመሚያ</emph> ባህሪ የሚፈጸመው በ ተመረጠው ቦታ ነው፡ መጠቆሚያው በ ቃሉ መሀከል ከሆነ እና ማዝመሚያውን ከተጫኑ ቃሉ ያዘምማል"
#: 01010000.xhp
msgctxt ""
@@ -1095,7 +1095,7 @@ msgctxt ""
"93\n"
"help.text"
msgid "The <emph>Bold</emph> attribute is applied to the selected area. If the cursor is positioned in a word, this word is also put in bold."
-msgstr ""
+msgstr "የ <emph>ማድመቂያ</emph> ባህሪ የሚፈጸመው በ ተመረጠው ቦታ ነው፡ መጠቆሚያው በ ቃሉ መሀከል ከሆነ እና ማድመቂያውን ከተጫኑ ቃሉ ይደምቃል"
#: 01010000.xhp
msgctxt ""
@@ -1113,7 +1113,7 @@ msgctxt ""
"95\n"
"help.text"
msgid "The <emph>Underlined</emph> attribute is applied to the selected area. If the cursor is positioned in a word, this word is also underlined."
-msgstr ""
+msgstr "የ <emph>ከ ስሩ ማስመሪያ</emph> ባህሪ የሚፈጸመው በ ተመረጠው ቦታ ነው፡ መጠቆሚያው በ ቃሉ መሀከል ከሆነ እና ከ ስር ማስመሪያን ከተጫኑ ቃሉ ከ ስሩ ይሰመራል"
#: 01010000.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"283\n"
"help.text"
msgid "Moves between areas."
-msgstr ""
+msgstr "በ ቦታዎች መካከለ ማንቀሳቀሻ"
#: 01010000.xhp
msgctxt ""
@@ -1192,7 +1192,7 @@ msgctxt ""
"281\n"
"help.text"
msgid "Moves between areas (backwards)"
-msgstr ""
+msgstr "በ ቦታዎች መካከለ ማንቀሳቀሻ (ወደ ኋላ)"
#: 01010000.xhp
msgctxt ""
@@ -1201,7 +1201,7 @@ msgctxt ""
"280\n"
"help.text"
msgid "Shortcut keys in the New Theme area of the Gallery:"
-msgstr ""
+msgstr "አቋራጭ ቁልፎች በ አዳራሹ አዲሱ ገጽታ ቦታ:"
#: 01010000.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"275\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enterማስገቢያ"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ማስገቢያ"
#: 01010000.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"251\n"
"help.text"
msgid "Selects the next Gallery element below."
-msgstr ""
+msgstr "የሚቀጥለውን የ አዳራሽ አካል ከ ታች መምረጫ"
#: 01010000.xhp
msgctxt ""
@@ -1512,7 +1512,7 @@ msgctxt ""
"249\n"
"help.text"
msgid "Scroll up one screen."
-msgstr ""
+msgstr "አንድ መመልከቻ ወደ ላይ መሸብለያ"
#: 01010000.xhp
msgctxt ""
@@ -1530,7 +1530,7 @@ msgctxt ""
"248\n"
"help.text"
msgid "Scroll down one screen."
-msgstr ""
+msgstr "አንድ መመልከቻ ወደ ታች መሸብለያ"
#: 01010000.xhp
msgctxt ""
@@ -1548,7 +1548,7 @@ msgctxt ""
"245\n"
"help.text"
msgid "Inserts the selected object as a linked object into the current document."
-msgstr ""
+msgstr "የ ተመረጠውን እቃ እንደ ተገናኘ እቃ ወደ አሁኑ ሰነድ ማስገቢያ"
#: 01010000.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"243\n"
"help.text"
msgid "Inserts a copy of the selected object into the current document."
-msgstr ""
+msgstr "የ ተመረጠውን እቃ ኮፒ ወደ አሁኑ ሰነድ ማስገቢያ"
#: 01010000.xhp
msgctxt ""
@@ -1602,7 +1602,7 @@ msgctxt ""
"239\n"
"help.text"
msgid "Switches between themes view and object view."
-msgstr ""
+msgstr "በ ገጽታ መመልከቻ እና በ እቃ መመልከቻ መካከል መቀያየሪያ"
#: 01010000.xhp
msgctxt ""
@@ -1620,7 +1620,7 @@ msgctxt ""
"237\n"
"help.text"
msgid "Switches between themes view and object view."
-msgstr ""
+msgstr "በ ገጽታ መመልከቻ እና በ እቃ መመልከቻ መካከል መቀያየሪያ"
#: 01010000.xhp
msgctxt ""
@@ -1638,7 +1638,7 @@ msgctxt ""
"235\n"
"help.text"
msgid "Switches between themes view and object view."
-msgstr ""
+msgstr "በ ገጽታ መመልከቻ እና በ እቃ መመልከቻ መካከል መቀያየሪያ"
#: 01010000.xhp
msgctxt ""
@@ -1656,7 +1656,7 @@ msgctxt ""
"233\n"
"help.text"
msgid "Switches back to main overview."
-msgstr ""
+msgstr "ወደ ኋላ ወደ ዋናው መመልከቻ መቀየሪያ"
#: 01010000.xhp
msgctxt ""
@@ -1665,7 +1665,7 @@ msgctxt ""
"330\n"
"help.text"
msgid "Selecting Rows and Columns in a Database Table (opened by F4)"
-msgstr ""
+msgstr "በ መምረጥ ላይ ረድፎች እና አምዶች ከ ዳታቤዝ ሰንጠረዥ (በ F4 የተከፈተውን)"
#: 01010000.xhp
msgctxt ""
@@ -1981,7 +1981,7 @@ msgctxt ""
"211\n"
"help.text"
msgid "Re-sizes a Drawing Object (in Handle Selection Mode)"
-msgstr ""
+msgstr "እንደ ገና-መመጠኛ የ መሳያ እቃ (በ እጅ የ ምርጫ ዘዴ)"
#: 01010000.xhp
msgctxt ""
@@ -1999,7 +1999,7 @@ msgctxt ""
"209\n"
"help.text"
msgid "Opens the properties dialog for a Drawing Object."
-msgstr ""
+msgstr "ለ መሳያ እቃ የ ባህሪዎች ንግግር መክፈቻ"
#: 01010000.xhp
msgctxt ""
@@ -2008,7 +2008,7 @@ msgctxt ""
"208\n"
"help.text"
msgid "Activates the Point Selection mode for the selected drawing object."
-msgstr ""
+msgstr "ለ ተመረጠው የ መሳያ እቃ የ ነጥብ ምርጫ ዘዴ ማስነሻ"
#: 01010000.xhp
msgctxt ""
@@ -2035,7 +2035,7 @@ msgctxt ""
"205\n"
"help.text"
msgid "The selected point blinks once per second."
-msgstr ""
+msgstr "የተመረጠው ነጥብ በየ አንድ ሰከንድ ብልጭ ድርግም ይላል"
#: 01010000.xhp
msgctxt ""
@@ -2053,7 +2053,7 @@ msgctxt ""
"203\n"
"help.text"
msgid "Select an additional point in Point Selection mode."
-msgstr ""
+msgstr "መምረጫ ተጨማሪ ከ ነጥብ ወደ ነጥብ መምረጫ ዘዴ"
#: 01010000.xhp
msgctxt ""
@@ -2161,7 +2161,7 @@ msgctxt ""
"193\n"
"help.text"
msgid "Edit a point of a drawing object (Point Edit mode)"
-msgstr ""
+msgstr "በ መሳያ እቃ ውስጥ ነጥብ ማረሚያ (በ ነጥብ ማረሚያ ዘዴ)"
#: 01010000.xhp
msgctxt ""
@@ -2170,7 +2170,7 @@ msgctxt ""
"344\n"
"help.text"
msgid "Any text or numerical key"
-msgstr ""
+msgstr "ማንኛውም ጽሁፍ ወይንም የ ቁጥር ቁልፍ"
#: 01010000.xhp
msgctxt ""
@@ -2187,7 +2187,7 @@ msgctxt ""
"par_id2693563\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while creating or scaling a graphic object"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline> ቁልፍ በ መፍጠር ላይ እንዳሉ ወይንም የንድፍ ውቃዎችን በ መመጠን ላይ እንዳሉ"
#: 01010000.xhp
msgctxt ""
@@ -2203,7 +2203,7 @@ msgctxt ""
"par_id526444\n"
"help.text"
msgid "Shift key while creating or scaling a graphic object"
-msgstr ""
+msgstr "Shift ቁልፍ ተጭነው ይያዙ በሚፈጥሩ ጊዜ ወይንም የ ንድፍ እቃ ሲመጥኑ"
#: 01010000.xhp
msgctxt ""
@@ -2245,7 +2245,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "The following is a list of shortcut keys available within databases."
-msgstr ""
+msgstr "የሚቀጥሉት ዝርዝር አቋራጭ ቁልፎች በ ዳታቤዝ ውስጥ ያሉ ናቸው"
#: 01020000.xhp
msgctxt ""
@@ -2272,7 +2272,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "In the query design"
-msgstr ""
+msgstr "በ ጥያቄ ንድፍ ውስጥ"
#: 01020000.xhp
msgctxt ""
@@ -2344,7 +2344,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "Selects the connection line."
-msgstr ""
+msgstr "የ ግንኙነት መስመር መምረጫ"
#: 01020000.xhp
msgctxt ""
@@ -2396,7 +2396,7 @@ msgctxt ""
"par_id336313\n"
"help.text"
msgid "Run query"
-msgstr ""
+msgstr "ጥያቄ ማስኬጃ"
#: 01020000.xhp
msgctxt ""
@@ -2412,7 +2412,7 @@ msgctxt ""
"par_id346995\n"
"help.text"
msgid "Add table or query"
-msgstr ""
+msgstr "ሰንጠረዥ ወይም ጥያቄ መጨመሪያ"
#: 01020000.xhp
msgctxt ""
@@ -2421,7 +2421,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "Control Properties Window"
-msgstr ""
+msgstr "የ መቆጣጠሪያ ባህሪዎች መስኮት"
#: 01020000.xhp
msgctxt ""
@@ -2473,7 +2473,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "Closes the combo box."
-msgstr ""
+msgstr "የ መቀላቀያ ሳጥን መዝጊያ"
#: 01020000.xhp
msgctxt ""
@@ -2606,7 +2606,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "Jumps between tabs."
-msgstr ""
+msgstr "በ tabs መካከል መዝለያ"
#: 01020000.xhp
msgctxt ""
@@ -2624,7 +2624,7 @@ msgctxt ""
"36\n"
"help.text"
msgid "Jumps between tabs."
-msgstr ""
+msgstr "በ tabs መካከል መዝለያ"
#: 01020000.xhp
msgctxt ""
@@ -2642,7 +2642,7 @@ msgctxt ""
"38\n"
"help.text"
msgid "Jump between windows."
-msgstr ""
+msgstr "በ መስኮቶች መካከል መዝለያ"
#: 01020000.xhp
msgctxt ""
@@ -2660,7 +2660,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "Selection of the control fields."
-msgstr ""
+msgstr "የ መቆጣጠሪያ ሜዳዎች ምርጫ"
#: 01020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/05.po b/source/am/helpcontent2/source/text/shared/05.po
index 805514a06a3..75f6c280a40 100644
--- a/source/am/helpcontent2/source/text/shared/05.po
+++ b/source/am/helpcontent2/source/text/shared/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-06-10 10:39+0200\n"
-"PO-Revision-Date: 2013-06-15 22:00+0000\n"
+"PO-Revision-Date: 2013-07-07 18:25+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1371333634.0\n"
+"X-POOTLE-MTIME: 1373221507.0\n"
#: 00000001.xhp
msgctxt ""
@@ -57,7 +57,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "For a summary of the current support services refer to the <emph>Readme</emph> file in the <item type=\"productname\">%PRODUCTNAME</item> folder."
-msgstr ""
+msgstr "ባጠቃላይ የ አሁኑ ድጋፍ ግልጋሎት የሚመራው ወደ <emph>አንብቡኝ</emph> ፋይል ነው፡ በ <item type=\"productname\">%PRODUCTNAME</item> ፎልደር ውስጥ"
#: 00000001.xhp
msgctxt ""
@@ -65,7 +65,7 @@ msgctxt ""
"hd_id26327\n"
"help.text"
msgid "Local language support pages"
-msgstr ""
+msgstr "የ አካባቢ ቋንቋ ድጋፍ ገጽ"
#: 00000001.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "<ahelp hid=\"HID_HELP_TOOLBOXITEM_BACKWARD\">Moves back to the <emph>previous</emph> page</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_HELP_TOOLBOXITEM_BACKWARD\">ማንቀሳቀሻ ወደ ኋላ ወደ <emph>ቀደም ወዳለው</emph> ገጽ</ahelp>"
#: 00000110.xhp
msgctxt ""
@@ -351,7 +351,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\"HID_HELP_TOOLBOXITEM_FORWARD\">Moves forward to the <emph>next</emph> page</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_HELP_TOOLBOXITEM_FORWARD\">ማንቀሳቀሻ ወደ ፊት <emph>ወደሚቀጥለው</emph> ገጽ</ahelp>"
#: 00000110.xhp
msgctxt ""
@@ -475,7 +475,7 @@ msgctxt ""
"par_idN10939\n"
"help.text"
msgid "Click the <emph>Find on this Page</emph> icon."
-msgstr ""
+msgstr "ይጫኑ የ <emph>መፈለጊያ በዚህ ገጽ ላይ</emph> ምልክት"
#: 00000110.xhp
msgctxt ""
@@ -483,7 +483,7 @@ msgctxt ""
"par_idN10940\n"
"help.text"
msgid "The <emph>Find on this Page</emph> dialog opens."
-msgstr ""
+msgstr "የ <emph>መፈለጊያ በዚህ ገጽ ላይ</emph> ንግግር መክፈቻ"
#: 00000110.xhp
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"par_idN10A36\n"
"help.text"
msgid "You can also click in the Help page and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F."
-msgstr ""
+msgstr "መጫን ይችላሉ በ እርዳታ ገጽ ላይ እና ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F."
#: 00000110.xhp
msgctxt ""
@@ -515,7 +515,7 @@ msgctxt ""
"par_idN10A26\n"
"help.text"
msgid "Click <emph>Find</emph>."
-msgstr ""
+msgstr "ይጫኑ <emph>መፈለጊያ</emph>."
#: 00000110.xhp
msgctxt ""
@@ -539,7 +539,7 @@ msgctxt ""
"par_idN10993\n"
"help.text"
msgid "<ahelp hid=\"sfx2:CheckBox:RID_DLG_SEARCH:CB_WHOLEWORDS\" visibility=\"hidden\">Finds complete words only.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx2:CheckBox:RID_DLG_SEARCH:CB_WHOLEWORDS\" visibility=\"hidden\">ሙሉ ቃሎች ብቻ መፈለጊያ</ahelp>"
#: 00000110.xhp
msgctxt ""
@@ -580,7 +580,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "Navigation Pane"
-msgstr ""
+msgstr "መቃኛ ክፍል"
#: 00000110.xhp
msgctxt ""
@@ -589,7 +589,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<ahelp hid=\"HID_HELP_TABCONTROL\">The navigation pane of the Help window contains the tab pages <emph>Contents</emph>, <emph>Index</emph>, <emph>Find</emph> and <emph>Bookmarks</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_HELP_TABCONTROL\">የ መቃኛ ክፍል የ እርዳታ መስኮት የ ያዛቸው tab ገጾች <emph>ማውጫዎች</emph>, <emph>ማውጫ</emph>, <emph>መፈለጊያ</emph> እና <emph>ምልክት ማድረጊያ ናቸው</emph>.</ahelp>"
#: 00000110.xhp
msgctxt ""
@@ -661,7 +661,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<link href=\"text/shared/05/00000150.xhp\" name=\"Bookmarks\">Bookmarks</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/05/00000150.xhp\" name=\"Bookmarks\">ምልክት ማድረጊያ</link>"
#: 00000110.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tips and Extended Tips"
-msgstr ""
+msgstr "ምክሮች እና የተስፋፉ ምክሮች"
#: 00000120.xhp
msgctxt ""
@@ -695,7 +695,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"00000120\"><link href=\"text/shared/05/00000120.xhp\" name=\"Tips and Extended Tips\">Tips and Extended Tips</link></variable>"
-msgstr ""
+msgstr "<variable id=\"00000120\"><link href=\"text/shared/05/00000120.xhp\" name=\"Tips and Extended Tips\">ምክሮች እና የተስፋፉ ምክሮች</link></variable>"
#: 00000120.xhp
msgctxt ""
@@ -739,7 +739,7 @@ msgctxt ""
"par_id992156\n"
"help.text"
msgid "Enable or disable the tips on <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - General</emph>."
-msgstr ""
+msgstr "ማስቻያ ወይንም ማሰናከያ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - ባጠቃላይ</emph>."
#: 00000120.xhp
msgctxt ""
@@ -843,7 +843,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Find - The Full-Text Search"
-msgstr ""
+msgstr "መፈለጊያ - የ ሙሉ-ጽሁፍ መፈለጊያ"
#: 00000140.xhp
msgctxt ""
@@ -860,7 +860,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<variable id=\"00000140\"><link href=\"text/shared/05/00000140.xhp\" name=\"Find - The Full-Text Search\">Find - The Full-Text Search</link></variable>"
-msgstr ""
+msgstr "<variable id=\"00000140\"><link href=\"text/shared/05/00000140.xhp\" name=\"Find - The Full-Text Search\">መፈለጊያ - የ ሙሉ-ጽሁፍ መፈለጊያ</link></variable>"
#: 00000140.xhp
msgctxt ""
@@ -985,7 +985,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Managing Bookmarks"
-msgstr ""
+msgstr "የ ምልክት ማድረጊያ አስተዳዳሪ"
#: 00000150.xhp
msgctxt ""
@@ -1002,7 +1002,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"doc_title\"><link href=\"text/shared/05/00000150.xhp\" name=\"Managing Bookmarks\">Managing Bookmarks</link></variable>"
-msgstr ""
+msgstr "<variable id=\"doc_title\"><link href=\"text/shared/05/00000150.xhp\" name=\"Managing Bookmarks\">የ ምልክት ማድረጊያ አስተዳዳሪ</link></variable>"
#: 00000150.xhp
msgctxt ""
@@ -1055,7 +1055,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Use the Del key to delete a selected bookmark."
-msgstr ""
+msgstr "የ ምልክት ማድረጊያውን ለማጥፋት የ ማጥፊያ ቁልፍ ይጠቀሙ"
#: 00000150.xhp
msgctxt ""
@@ -1073,7 +1073,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<emph>Display</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_OPEN\" visibility=\"visible\">displays the selected help subject</ahelp>."
-msgstr ""
+msgstr "<emph>ማሳያ</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_OPEN\" visibility=\"visible\">የ ተመረጠውን የ እርዳታ ጉዳይ ማሳያ</ahelp>."
#: 00000150.xhp
msgctxt ""
@@ -1082,7 +1082,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<emph>Rename</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_RENAME\" visibility=\"visible\">opens a dialog for entering another name for the bookmark</ahelp>."
-msgstr ""
+msgstr "<emph>እንደ ገና መሰየሚያ</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_RENAME\" visibility=\"visible\">ለ ምልክት ማድረጊያ ሌላ ስም ለማስገቢያ ንግግር መክፈቻ</ahelp>."
#: 00000150.xhp
msgctxt ""
@@ -1091,7 +1091,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<emph>Delete</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_DELETE\" visibility=\"visible\">deletes the bookmark selected </ahelp>."
-msgstr ""
+msgstr "<emph>ማጥፊያ</emph> - <ahelp hid=\"HID_HELP_BOOKMARKS_DELETE\" visibility=\"visible\">የ ተመረጠውን ምልክት ማድረጊያ ማጥፊያ</ahelp>."
#: 00000160.xhp
msgctxt ""
@@ -1099,7 +1099,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Contents - The Main Help Topics"
-msgstr ""
+msgstr "ማውጫዎች - የ ዋናው እርዳታ አርእስቶች"
#: 00000160.xhp
msgctxt ""
@@ -1107,7 +1107,7 @@ msgctxt ""
"bm_id3147090\n"
"help.text"
msgid "<bookmark_value>Help; topics</bookmark_value><bookmark_value>tree view of Help</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ እርዳታ; አርእስቶች</bookmark_value><bookmark_value>እርዳታ በዛፍ መመልከቻ ዘዴ</bookmark_value>"
#: 00000160.xhp
msgctxt ""
@@ -1116,7 +1116,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"doc_title\"><link href=\"text/shared/05/00000160.xhp\" name=\"Contents - The Main Help Topics\">Contents - The Main Help Topics</link></variable>"
-msgstr ""
+msgstr "<variable id=\"doc_title\"><link href=\"text/shared/05/00000160.xhp\" name=\"Contents - The Main Help Topics\">ማውጫዎች - ዋናው የ እርዳታ አርእስቶች</link></variable>"
#: 00000160.xhp
msgctxt ""
@@ -1133,7 +1133,7 @@ msgctxt ""
"par_id3151315\n"
"help.text"
msgid "<image id=\"img_id3152924\" src=\"sfx2/res/hlpbookclosed.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152924\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152924\" src=\"sfx2/res/hlpbookclosed.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152924\">ምልክትምልክት</alt></image>"
+msgstr "<image id=\"img_id3152924\" src=\"sfx2/res/hlpbookclosed.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152924\">ምልክት</alt></image>"
#: 00000160.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/autokorr.po b/source/am/helpcontent2/source/text/shared/autokorr.po
index e09d1683044..3c9240973c6 100644
--- a/source/am/helpcontent2/source/text/shared/autokorr.po
+++ b/source/am/helpcontent2/source/text/shared/autokorr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 18:04+0000\n"
+"PO-Revision-Date: 2013-07-01 19:41+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372529048.0\n"
+"X-POOTLE-MTIME: 1372707661.0\n"
#: 01000000.xhp
msgctxt ""
@@ -259,7 +259,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "You text was corrected by <link href=\"text/shared/01/06040000.xhp\" name=\"Autocorrect\">Autocorrect</link> so that single quotation marks were replaced by <link href=\"text/shared/01/06040400.xhp\" name=\"typographical quotation marks\">typographical quotation marks</link>."
-msgstr "የ እርስዎ ጽሁፍ ታርሟል በ <link href=\"text/shared/01/06040000.xhp\" name=\"Autocorrect\">በራሱ አራሚ</link> ስለዚህም በ ድርብ ትምሕርተ ጥቅስ ይጀምር የነበረው ተቀይሯል በ <link href=\"text/shared/01/06040400.xhp\" name=\"typographical quotation marks\">typographical quotation marks</link>."
+msgstr "የ እርስዎ ጽሁፍ ታርሟል በ <link href=\"text/shared/01/06040000.xhp\" name=\"Autocorrect\">በራሱ አራሚ</link> ስለዚህም በ ነጠላ ትምሕርተ ጥቅስ ይጀምር የነበረው ተቀይሯል በ <link href=\"text/shared/01/06040400.xhp\" name=\"typographical quotation marks\">በ ድርብ ትምሕርተ ጥቅስ </link>."
#: 08000000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/autopi.po b/source/am/helpcontent2/source/text/shared/autopi.po
index 5412afa4d9a..8add8064d99 100644
--- a/source/am/helpcontent2/source/text/shared/autopi.po
+++ b/source/am/helpcontent2/source/text/shared/autopi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 23:27+0000\n"
+"PO-Revision-Date: 2013-07-13 01:16+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372548420.0\n"
+"X-POOTLE-MTIME: 1373678193.0\n"
#: 01000000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3152551\n"
"help.text"
msgid "<bookmark_value>wizards; overview</bookmark_value><bookmark_value>AutoPilots, see wizards</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>አዋቂዎች; ባጠቃላይ</bookmark_value><bookmark_value>AutoPilots, አዋቂዎችን ይመልከቱ</bookmark_value>"
#: 01000000.xhp
msgctxt ""
@@ -48,7 +48,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AutoPilotMenu\">Guides you through creating business and personal letters, faxes, agendas, presentations, and more.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:AutoPilotMenu\">የ ንግድ እና የ ግል ደብዳቤዎች፡ ፋክሶች፡ አጄንዳዎች፡ ማቅረቢያዎች እና ተጨማሪዎች እንዴት እንደሚፈጥሩ ይመራዎታል</ahelp>"
#: 01000000.xhp
msgctxt ""
@@ -136,7 +136,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"brief\"><ahelp hid=\".uno:AutoPilotLetter\">Starts the wizard for a letter template.</ahelp></variable> You can use this template for both business and personal correspondence."
-msgstr ""
+msgstr "<variable id=\"brief\"><ahelp hid=\".uno:AutoPilotLetter\">ለ ደብዳቤ ቴምፕሌት አዋቂውን ያስጀምሩ</ahelp></variable> ይህን ቴምፕሌት ለ ሁለቱም ለ ግል እና ለ ንግድ ደብዳቤ መገናኛ መጠቀም ይችላሉ"
#: 01010000.xhp
msgctxt ""
@@ -261,7 +261,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Please choose the type of letter and page design"
-msgstr ""
+msgstr "እባክዎን ይምረጡ የ ፊደሉን አይነት እና የ ገጽ ንድፍ"
#: 01010100.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "<ahelp hid=\".\">Specify whether you want to create a business or personal letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ንግድ ወይንም የ ግል ደብዳቤ ቴምፕሌት መፍጠር እንደሚፈልጉ እዚህ ይወስኑ</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -288,7 +288,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_OPTBUSINESSLETTER\">Specifies that you want to create a business letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LTRWIZ_OPTBUSINESSLETTER\">የ ንግድ ደብዳቤ ቴምፕሌት መፍጠር እንደሚፈልጉ መወሰኛ</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -296,7 +296,7 @@ msgctxt ""
"par_idN10616\n"
"help.text"
msgid "Formal personal letter"
-msgstr ""
+msgstr "መደበኛ የግል ደብዳቤ"
#: 01010100.xhp
msgctxt ""
@@ -304,7 +304,7 @@ msgctxt ""
"par_idN1061D\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_OPTPRIVOFFICIALLETTER\">Specifies that you want to create a formal personal letter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LTRWIZ_OPTPRIVOFFICIALLETTER\">መደበኛ የግል ደብዳቤ መፍጠር እንደሚፈልጉ መወሰኛ</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -322,7 +322,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_OPTPRIVATELETTER\">Specifies that you want to create a personal letter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LTRWIZ_OPTPRIVATELETTER\">የግል ደብዳቤ መፍጠር እንደሚፈልጉ መወሰኛ</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -589,7 +589,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"HID_LETTER_PAGE3\">Defines the items to be included in the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LETTER_PAGE3\">በ ደብዳቤ ቴምፕሌት ውስጥ የሚካተቱትን እቃዎች መግለጫ</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -597,7 +597,7 @@ msgctxt ""
"par_idN105DF\n"
"help.text"
msgid "Use a typical letter format for this country"
-msgstr ""
+msgstr "ለዚህ አገር መደበኛ የደብዳቤ አቀራረብ መጠቀሚያ"
#: 01010300.xhp
msgctxt ""
@@ -605,7 +605,7 @@ msgctxt ""
"par_idN105E3\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_LSTLETTERNORM\">Select a country in order to use a typical letter layout from that country.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LTRWIZ_LSTLETTERNORM\">አገር ይምረጡ ለ አገሩ አግባብ ያለው የ ደብዳቤ ረቂቅ ለመፍጠር</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -717,7 +717,7 @@ msgctxt ""
"par_idN106B0\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_CHKUSEGREETING\">Includes a complimentary close on the letter template. Select the text from the list box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LTRWIZ_CHKUSEGREETING\">የ ደብዳቤ ቴምፕሌት በምስጋና መዝጊያ ማካተ፡ ከ ዝርዝር ሳጥን ውስጥ የሚፈልጉትን ጽሁፍ ይምረጡ</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -896,7 +896,7 @@ msgctxt ""
"par_idN10685\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_OPTRECEIVERPLACEHOLDER\">Specifies that placeholder fields are inserted into the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LTRWIZ_OPTRECEIVERPLACEHOLDER\">በ ደብዳቤ ቴምፕሌት ውስጥ የሚገቡትን ቦታ ያዢ ሜዳዎች መወሰኛ.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -947,7 +947,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"HID_LETTER_PAGE5\">Specifies the information to include in the footer space.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LETTER_PAGE5\">በ ግርጌ ቦታ የሚካተተውን መረጃ መወሰኛ</ahelp>"
#: 01010500.xhp
msgctxt ""
@@ -963,7 +963,7 @@ msgctxt ""
"par_idN105E3\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_TXTFOOTER\">Enter the text for the footer lines.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LTRWIZ_TXTFOOTER\">ለ ግርጌ መስመር ጽሁፍ ያስገቡ</ahelp>"
#: 01010500.xhp
msgctxt ""
@@ -979,7 +979,7 @@ msgctxt ""
"par_idN10600\n"
"help.text"
msgid "<ahelp hid=\".\">Select to suppress the footer on the first page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">በ መጀመሪያው ገጽ ላይ እንዳይታይ የሚታገደውን ግርጌ ይምረጡ</ahelp>"
#: 01010500.xhp
msgctxt ""
@@ -997,7 +997,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_CHKFOOTERPAGENUMBERS\">Includes page numbers in your letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LTRWIZ_CHKFOOTERPAGENUMBERS\">በ እርስዎ ደብዳቤ ቴምፕሌት ላይ ቁጥሮች ማካተቻ</ahelp>"
#: 01010500.xhp
msgctxt ""
@@ -1032,7 +1032,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"HID_LETTER_PAGE6\">Specifies where and under which name you want to save the document and template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LETTER_PAGE6\">የት እና በምን ስም ስር ሰነድ እና ቴምፕሌት እንደሚቀመጥ መወሰኛ</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -1050,7 +1050,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_TXTTEMPLATENAME\">Specifies the title of the document template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LTRWIZ_TXTTEMPLATENAME\">የ ሰነድ ቴምፕሌት አርእስት መወሰኛ</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -1067,7 +1067,7 @@ msgctxt ""
"par_idN1061A\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_TXTPATH\">Enter the path and file name for the template, or click the <emph>...</emph> button to select the path and file name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LTRWIZ_TXTPATH\">ለ ቴምፕሌቱ የ ፋይል ስም እና መንገድ ያስገቡ ወይንም ይጫኑ የ <emph>...</emph> ቁልፍ መንገድ እና የ ፋይል ስም ለመምረጥ</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -1083,7 +1083,7 @@ msgctxt ""
"par_idN1063C\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_OPTCREATELETTER\">Saves and closes the template, and then opens a new untitled document based on the template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LTRWIZ_OPTCREATELETTER\">ቴምፕሌት ማስቀመጫ እና መዝጊያ እና ከዛ ቴምፕሌቱን መሰረት ባደረገ አዲስ ያልተሰየመ ሰነድ መክፈቻ</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -1099,7 +1099,7 @@ msgctxt ""
"par_idN10656\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZ_OPTMAKECHANGES\">Saves the template and keeps it open for editing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_LTRWIZ_OPTMAKECHANGES\">ቴምፕሌቱን ማስቀመጫ እና ለ ማረም ክፍት ማድረጊያ</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -1386,7 +1386,7 @@ msgctxt ""
"par_idN105E9\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a communication type line. Select the line from the list box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ግንኙነት አይነት መስመር ማካተቻ፡ ይምረጡ መስመሩን ከ ዝርዝር ሳጥን ውስጥ</ahelp>"
#: 01020200.xhp
msgctxt ""
@@ -1501,7 +1501,7 @@ msgctxt ""
"par_idN105E2\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts placeholders for the address on the fax template. Later in the fax document, click the placeholder to enter the actual data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">በ ፋክስ ቴምፕሌት ላይ የ አድራሻ ቦታ ያዢ ማስገቢያ፡ በ ኋላ በ ፋክስ ሰነድ ላይ ይጫኑ ቦታ ያዢውን እና ትክክለኛውን ዳታ ያስገቡ</ahelp>"
#: 01020300.xhp
msgctxt ""
@@ -1616,7 +1616,7 @@ msgctxt ""
"par_idN105DB\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the text to be printed in the footer area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">በ ግርጌ ቦታ የሚታተመውን ጽሁፍ መወሰኛ</ahelp>"
#: 01020400.xhp
msgctxt ""
@@ -1632,7 +1632,7 @@ msgctxt ""
"par_idN105E1\n"
"help.text"
msgid "<ahelp hid=\".\">Suppresses the footer on the first page of a multipage fax document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">በ በርካታ ገጾች የ ፋክስ ሰነድ ላይ ግርጌ ማገጃ ከ መጀመሪያው ገጽ ላይ</ahelp>"
#: 01020400.xhp
msgctxt ""
@@ -2363,7 +2363,7 @@ msgctxt ""
"par_idN105E6\n"
"help.text"
msgid "<ahelp hid=\".\">Removes the current topic row.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ አሁኑን አርእስት ረድፍ ማስወገጃ</ahelp>"
#: 01040500.xhp
msgctxt ""
@@ -2379,7 +2379,7 @@ msgctxt ""
"par_idN105EC\n"
"help.text"
msgid "<ahelp hid=\".\">Moves the current topic row up.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ አሁኑን አርእስት ረድፍ ወደ ላይ ማንቀሳቀሻ</ahelp>"
#: 01040500.xhp
msgctxt ""
@@ -2395,7 +2395,7 @@ msgctxt ""
"par_idN105F2\n"
"help.text"
msgid "<ahelp hid=\".\">Moves the current topic row down.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ አሁኑን አርእስት ረድፍ ወደ ታች ማንቀሳቀሻ</ahelp>"
#: 01040500.xhp
msgctxt ""
@@ -2404,7 +2404,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040600.xhp\" name=\"Go to Agenda Wizard - Name and location\">Go to Agenda Wizard - Name and location</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/autopi/01040600.xhp\" name=\"Go to Agenda Wizard - Name and location\">ወደ አጄንዳ አዋቂ - ስም እና አካባቢ መሄጃ</link>"
#: 01040600.xhp
msgctxt ""
@@ -2430,7 +2430,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"HID_AGENDA_PAGE6\">Choose the title and location for the agenda template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AGENDA_PAGE6\">ይምረጡ አርእስት እና አካባቢ ለ አጄንዳ ቴምፕሌት</ahelp>"
#: 01040600.xhp
msgctxt ""
@@ -2643,7 +2643,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "<ahelp hid=\"HID_SD_AUTOPILOT_PAGE1\">Specifies the presentation type and allows you to select a template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_SD_AUTOPILOT_PAGE1\">የ ማቅረቢያ አይነት መወሰኛ እና የ ቴምፕሌት አይነት መምረጫ ማስቻያ</ahelp>"
#: 01050100.xhp
msgctxt ""
@@ -2661,7 +2661,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "You can determine the presentation type in this area."
-msgstr ""
+msgstr "የ ማቅረቢያውን አይነት እዚህ መወሰን ይችላሉ"
#: 01050100.xhp
msgctxt ""
@@ -2697,7 +2697,7 @@ msgctxt ""
"25\n"
"help.text"
msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_ASS:RB_PAGE1_TEMPLATE\">Opens a list box containing various modifiable presentations.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_ASS:RB_PAGE1_TEMPLATE\">የሚሻሻሉ ማቅረቢያዎችን የያዘ ዝርዝር ሳጥን መክፈቻ</ahelp>"
#: 01050100.xhp
msgctxt ""
@@ -2741,7 +2741,7 @@ msgctxt ""
"27\n"
"help.text"
msgid "<ahelp hid=\"HID_SD_AUTOPILOT_TEMPLATES\">Lists the available template categories for presentations.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_SD_AUTOPILOT_TEMPLATES\">ለ ማቅረቢያ ዝግጁ የሆኑ የ ቴምፕሌት ምድቦች</ahelp>"
#: 01050100.xhp
msgctxt ""
@@ -2875,7 +2875,7 @@ msgctxt ""
"33\n"
"help.text"
msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_ASS:RB_PAGE2_MEDIUM5\" visibility=\"visible\">Uses the original page format of the template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_ASS:RB_PAGE2_MEDIUM5\" visibility=\"visible\">የ ዋናውን ቴምፕሌቱን ገጽ አቀራረብ መጠቀሚያ</ahelp>"
#: 01050200.xhp
msgctxt ""
@@ -2947,7 +2947,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_ASS:RB_PAGE2_MEDIUM2\" visibility=\"visible\">Creates a presentation to be used as slides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SD:RADIOBUTTON:DLG_ASS:RB_PAGE2_MEDIUM2\" visibility=\"visible\">እንደ ተንሸራታች የሚጠቀሙበት ማቅረቢያ መፍጠሪያ</ahelp>"
#: 01050200.xhp
msgctxt ""
@@ -3045,7 +3045,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Determines the timing for the presentation."
-msgstr ""
+msgstr "ለ ማቅረቢያ ሰአት መወሰኛ"
#: 01050300.xhp
msgctxt ""
@@ -3054,7 +3054,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "You can change the settings later under the menu <link href=\"text/simpress/main0114.xhp\" name=\"Presentation\">Presentation</link>."
-msgstr ""
+msgstr "ከ ዝርዝር ውስጥ ማሰናጃውን በ ኋላ መቀየር ይችላሉ <link href=\"text/simpress/main0114.xhp\" name=\"Presentation\">ማቅረቢያ</link>."
#: 01050300.xhp
msgctxt ""
@@ -3108,7 +3108,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<ahelp hid=\"SD:TIMEFIELD:DLG_ASS:TMF_PAGE3_TIME\">Defines the duration of each presentation page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SD:TIMEFIELD:DLG_ASS:TMF_PAGE3_TIME\">እያንዳንዱ የ ማቅረቢያ ገጽ የሚቆይበትን ጊዜ መወሰኛ </ahelp>"
#: 01050300.xhp
msgctxt ""
@@ -3356,7 +3356,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"formular\"><ahelp hid=\"HID_DLGFORM_DIALOG\">Activates the Wizard for creating forms.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"formular\"><ahelp hid=\"HID_DLGFORM_DIALOG\">ፎርም ለመፍጠር አዋቂውን ማስነሻ</ahelp></variable>"
#: 01090000.xhp
msgctxt ""
@@ -3365,7 +3365,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Select the form properties using the following steps:"
-msgstr ""
+msgstr "የ ፎርም ባህሪዎችን እነዚህን ደረጃዎች በ መጠቀም ይምረጡ:"
#: 01090000.xhp
msgctxt ""
@@ -3373,7 +3373,7 @@ msgctxt ""
"par_idN10686\n"
"help.text"
msgid "<ahelp hid=\".\">Click to create the form without answering further pages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ተጨማሪ ጥያቄ ሳይመልሱ ፎርም ለመፍጠር ይጫኑ</ahelp>"
#: 01090100.xhp
msgctxt ""
@@ -3710,7 +3710,7 @@ msgctxt ""
"par_idN10590\n"
"help.text"
msgid "Fields in my subform"
-msgstr ""
+msgstr "ሜዳዎች በ እኔ ንዑስ ፎርም ውስጥ"
#: 01090210.xhp
msgctxt ""
@@ -4166,7 +4166,7 @@ msgctxt ""
"par_idN105BB\n"
"help.text"
msgid "The form is to display all data"
-msgstr ""
+msgstr "ይህ ፎርም ሁሉንም ዳታ ያሳያል"
#: 01090400.xhp
msgctxt ""
@@ -4366,7 +4366,7 @@ msgctxt ""
"par_idN10553\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the name of the form and how to proceed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ፎርሙን ስም እና እንዴት እንደሚቀጥል ይወስኑ</ahelp>"
#: 01090600.xhp
msgctxt ""
@@ -4398,7 +4398,7 @@ msgctxt ""
"par_idN105C5\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the form, and opens it as a form document to enter and display data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ፎርሙን ማስቀመጫ እና መክፈቻ እንደ ፎርም ሰነድ ዳታ ለ ማስገቢያ እና ለ መመልከቻ</ahelp>"
#: 01090600.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_idN105D2\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the form, and opens it in edit mode to change the layout.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ፎርሙን ማስቀመጫ እና መክፈቻ እንደ ማረሚያ እቅዱን ለመቀየር</ahelp>"
#: 01090600.xhp
msgctxt ""
@@ -4840,7 +4840,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGREPORT_3_SORT4\">Select an additional field by which to sort the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGREPORT_3_SORT4\">መግለጫውን ለ መለያ ተጨማሪ ሜዳ መምረጫ</ahelp>"
#: 01100300.xhp
msgctxt ""
@@ -4858,7 +4858,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGREPORT_3_OPTASCEND4\">Sorts the field contents in ascending order.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGREPORT_3_OPTASCEND4\">የ ሜዳ ይዞታዎችን መለያ እየጨመረ በሚሄድ</ahelp>"
#: 01100300.xhp
msgctxt ""
@@ -4876,7 +4876,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGREPORT_3_OPTDESCEND4\">Sorts the field contents in descending order.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGREPORT_3_OPTDESCEND4\">የ ሜዳ ይዞታዎችን መለያ እየቀነሰ በሚሄድ</ahelp>"
#: 01100300.xhp
msgctxt ""
@@ -4885,7 +4885,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100400.xhp\" name=\"More about Report Wizard - Choose Layout\">More about Report Wizard - Choose Layout</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/autopi/01100400.xhp\" name=\"More about Report Wizard - Choose Layout\">ተጨማሪ ስለ መግለጫ አዋቂ - እቅድ ይምረጡ</link>"
#: 01100400.xhp
msgctxt ""
@@ -4893,7 +4893,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Report Wizard - Choose Layout"
-msgstr ""
+msgstr "መግለጫ አዋቂ - እቅድ ይምረጡ"
#: 01100400.xhp
msgctxt ""
@@ -4902,7 +4902,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Report Wizard - Choose Layout\">Report Wizard - Choose Layout</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Report Wizard - Choose Layout\">መግለጫ አዋቂ - እቅድ ይምረጡ</link>"
#: 01100400.xhp
msgctxt ""
@@ -4983,7 +4983,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGREPORT_4_LANDSCAPE\">Selects a landscape page orientation for the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGREPORT_4_LANDSCAPE\">ለ መግለጫው የ መሬት ገጽ አቀማመጥ መምረጫ</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -5001,7 +5001,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGREPORT_4_PORTRAIT\">Selects a portrait page orientation for the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGREPORT_4_PORTRAIT\">ለ መግለጫው የ ምስል ገጽ አቀማመጥ መምረጫ</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -5108,7 +5108,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGREPORT_5_OPTEDITTEMPLATE\">When you click <emph>Finish</emph>, the report will be saved and opened for edit.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGREPORT_5_OPTEDITTEMPLATE\">በሚጫኑ ጊዜ <emph>መጨረሻ</emph>, መግለጫው ይቀመጣል እና እንደገና ይከፈታል ለ ማረሚያ</ahelp>"
#: 01100500.xhp
msgctxt ""
@@ -5126,7 +5126,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGREPORT_5_OPTUSETEMPLATE\">When you click <emph>Finish</emph>, the report will be saved.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGREPORT_5_OPTUSETEMPLATE\">በሚጫኑ ጊዜ <emph>መጨረሻ</emph>, መግለጫው ይቀመጣል</ahelp>"
#: 01110000.xhp
msgctxt ""
@@ -5428,7 +5428,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Standard HTML format"
-msgstr ""
+msgstr "መደበኛ የ HTML format"
#: 01110200.xhp
msgctxt ""
@@ -5473,7 +5473,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<ahelp hid=\"SD:CHECKBOX:DLG_PUBLISHING:PAGE2_CONTENT\">Creates a title page for your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SD:CHECKBOX:DLG_PUBLISHING:PAGE2_CONTENT\">ለ እርስዎ ሰነድ የ አርእስት ገጽ መፍጠሪያ</ahelp>"
#: 01110200.xhp
msgctxt ""
@@ -6565,7 +6565,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<ahelp hid=\"SD:PUSHBUTTON:DLG_PUBLISHING:PAGE6_TEXT\">Opens the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog, where you can select the text color of the presentation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SD:PUSHBUTTON:DLG_PUBLISHING:PAGE6_TEXT\">መከፈቻ የ <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>ቀለም</emph></link> ንግግር ለ ማቅረቢያው የ ጽሁፍ ቀለም የሚመርጡበት</ahelp>"
#: 01110600.xhp
msgctxt ""
@@ -6583,7 +6583,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<ahelp hid=\"SD:PUSHBUTTON:DLG_PUBLISHING:PAGE6_LINK\">Opens the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog, where you can select the hyperlink color of the presentation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SD:PUSHBUTTON:DLG_PUBLISHING:PAGE6_LINK\">መክፈቻ የ <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>ቀለም</emph></link> ንግግር ለ ማቅረቢያው የ hyperlink ቀለም የሚመርጡበት</ahelp>"
#: 01110600.xhp
msgctxt ""
@@ -6601,7 +6601,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<ahelp hid=\"SD:PUSHBUTTON:DLG_PUBLISHING:PAGE6_ALINK\">Opens the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog, where you can select the active link color of the presentation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SD:PUSHBUTTON:DLG_PUBLISHING:PAGE6_ALINK\">መክፈቻ የ <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>ቀለም</emph></link> ንግግር ለ ማቅረቢያው ንቁ አገናኝ የሚመርጡበት</ahelp>"
#: 01110600.xhp
msgctxt ""
@@ -6619,7 +6619,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<ahelp hid=\"SD:PUSHBUTTON:DLG_PUBLISHING:PAGE6_VLINK\">Opens the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog, where you can select the visited link color of the presentation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SD:PUSHBUTTON:DLG_PUBLISHING:PAGE6_VLINK\">መክፈቻ የ <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>ቀለም</emph></link> ንግግር ለ ማቅረቢያው የተጎበኙ አገናኝ ቀለም የሚመርጡበት</ahelp>"
#: 01110600.xhp
msgctxt ""
@@ -6637,7 +6637,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "<ahelp hid=\"SD:PUSHBUTTON:DLG_PUBLISHING:PAGE6_BACK\">Opens the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog, where you can select the background color of the presentation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SD:PUSHBUTTON:DLG_PUBLISHING:PAGE6_BACK\">መክፈቻ የ <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>ቀለም</emph></link> ንግግር ለ ማቅረቢያው የ መደብ ቀለም የሚመርጡበት</ahelp>"
#: 01120000.xhp
msgctxt ""
@@ -6752,7 +6752,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"DBP_PUSHBUTTON_RID_PAGE_GROUPRADIOSELECTION_PB_MOVETORIGHT\">Confirms the current label and copies the label to the <emph>Option fields</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"visible\" hid=\"DBP_PUSHBUTTON_RID_PAGE_GROUPRADIOSELECTION_PB_MOVETORIGHT\">ማረጋገጫ የ አሁኑን ምልክት እና ምልክቱን ኮፒ ማድረጊያ ወደ የ <emph>ምርጫ ሜዳዎች</emph> ዝርዝር</ahelp>"
#: 01120100.xhp
msgctxt ""
@@ -6814,7 +6814,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Group Element Wizard: Default Field Selection"
-msgstr ""
+msgstr "የ ቡድን አካል አዋቂ: ነባር የ ሜዳ ምርጫ"
#: 01120200.xhp
msgctxt ""
@@ -6823,7 +6823,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01120200.xhp\" name=\"Group Element Wizard: Default Field Selection\">Group Element Wizard: Default Field Selection</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/autopi/01120200.xhp\" name=\"Group Element Wizard: Default Field Selection\">የ ቡድን አካል አዋቂ: ነባር የ ሜዳ ምርጫ</link>"
#: 01120200.xhp
msgctxt ""
@@ -6921,7 +6921,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Group Element Wizard: Field Values"
-msgstr ""
+msgstr "የ ቡድን አካል አዋቂ: የ ሜዳ ዋጋዎች"
#: 01120300.xhp
msgctxt ""
@@ -6930,7 +6930,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01120300.xhp\" name=\"Group Element Wizard: Field Values\">Group Element Wizard: Field Values</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/autopi/01120300.xhp\" name=\"Group Element Wizard: Field Values\">የ ቡድን አካል አዋቂ: የ ሜዳ ዋጋዎች</link>"
#: 01120300.xhp
msgctxt ""
@@ -6992,7 +6992,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Group Element Wizard: Database Field"
-msgstr ""
+msgstr "የ ቡድን አካል አዋቂ: የ ዳታቤዝ ሜዳ"
#: 01120400.xhp
msgctxt ""
@@ -7099,7 +7099,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Group Element Wizard: Create Option Group"
-msgstr ""
+msgstr "የ ቡድን አካል አዋቂ: የ ምርጫ ቡድን መፍጠሪያ"
#: 01120500.xhp
msgctxt ""
@@ -7179,7 +7179,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "The Document Converter Wizard contains the following pages:"
-msgstr ""
+msgstr "የ ሰነድ መቀየሪያ አዋቂ የ ያዛቸው የሚከተሉት ገጾች ናቸው:"
#: 01130000.xhp
msgctxt ""
@@ -7188,7 +7188,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Document Converter Summary"
-msgstr ""
+msgstr "ሰነድ መቀየሪያ ባጠቃላይ"
#: 01130000.xhp
msgctxt ""
@@ -7205,7 +7205,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Document Converter Page 1"
-msgstr ""
+msgstr "ሰነድ መቀየሪያ ገጽ 1"
#: 01130100.xhp
msgctxt ""
@@ -7214,7 +7214,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01130100.xhp\" name=\"Document Converter Page 1\">Document Converter Page 1</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/autopi/01130100.xhp\" name=\"Document Converter Page 1\">ሰነድ መቀየሪያ ገጽ 1</link>"
#: 01130100.xhp
msgctxt ""
@@ -7510,7 +7510,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGIMPORT_2_CBDOCUMENT\">Indicates that the documents are to be converted.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGIMPORT_2_CBDOCUMENT\">ሰነዶቹ እንደሚቀየሩ ማመልከቻ</ahelp>"
#: 01130200.xhp
msgctxt ""
@@ -7519,7 +7519,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "Here you can return to the main page of the <link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">Document Converter Wizard</link>."
-msgstr ""
+msgstr "እዚህ መመለስ ይችላሉ ወደ ዋናው ገጽ ወደ የ <link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">ሰነድ መቀየሪያ አዋቂ</link>."
#: 01150000.xhp
msgctxt ""
@@ -7527,7 +7527,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Euro Converter Wizard"
-msgstr ""
+msgstr "ኢዩሮ መቀየሪያ አዋቂ"
#: 01150000.xhp
msgctxt ""
@@ -7535,7 +7535,7 @@ msgctxt ""
"bm_id3154840\n"
"help.text"
msgid "<bookmark_value>Euro; Euro Converter Wizard</bookmark_value><bookmark_value>wizards; Euro Converter</bookmark_value><bookmark_value>converters; Euro converter</bookmark_value><bookmark_value>currencies; converters</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ኢዩሮ; ኢዩሮ መቀየሪያ አዋቂ</bookmark_value><bookmark_value>አዋቂዎች; ኢዩሮ መቀየሪያ</bookmark_value><bookmark_value>መቀየሪያዎች; ኢዩሮ መቀየሪያ</bookmark_value><bookmark_value>ገንዘብ; መቀየሪያዎች</bookmark_value>"
#: 01150000.xhp
msgctxt ""
@@ -7544,7 +7544,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "Euro Converter Wizard"
-msgstr ""
+msgstr "ኢዩሮ መቀየሪያ አዋቂ"
#: 01150000.xhp
msgctxt ""
@@ -7589,7 +7589,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Single $[officename] Calc document"
-msgstr ""
+msgstr "ነጠላ $[officename] የ ሰንጠረዥ ሰነድ"
#: 01150000.xhp
msgctxt ""
@@ -7787,7 +7787,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">Closes the Euro Converter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">የ ኢዩሮ መቀየሪያ መዝጊያ</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -7867,7 +7867,7 @@ msgctxt ""
"par_id3155415\n"
"help.text"
msgid "<image id=\"img_id3150417\" src=\"cmd/sc_euroconverter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150417\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150417\" src=\"cmd/sc_euroconverter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150417\">ምልክት</alt></image>"
#: 01150000.xhp
msgctxt ""
@@ -7876,7 +7876,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "Euro Converter"
-msgstr ""
+msgstr "ኢዩሮ መቀየሪያ"
#: 01150000.xhp
msgctxt ""
@@ -7885,7 +7885,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "The <emph>Euro Converter</emph> dialog contains the following functions:"
-msgstr ""
+msgstr "የ <emph>ኢዩሮ መቀየሪያ</emph> ንግግር ያያዛቸው ተግባሮች የሚከተሉት ናቸው:"
#: 01150000.xhp
msgctxt ""
@@ -7903,7 +7903,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">Converts the entire document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">ጠቅላላ ሰነድ መቀየሪያ</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -8002,7 +8002,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "Selected range"
-msgstr ""
+msgstr "የተመረጠው መጠን"
#: 01150000.xhp
msgctxt ""
@@ -8020,7 +8020,7 @@ msgctxt ""
"45\n"
"help.text"
msgid "Templates / Currency ranges"
-msgstr ""
+msgstr "ቴምፕሌቶች/ የገንዘብ መጠኖች"
#: 01150000.xhp
msgctxt ""
@@ -8107,7 +8107,7 @@ msgctxt ""
"hd_id3895382\n"
"help.text"
msgid "Thunderbird"
-msgstr ""
+msgstr "ተንደር በርድ"
#: 01170000.xhp
msgctxt ""
@@ -8124,7 +8124,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "LDAP address data"
-msgstr ""
+msgstr "LDAP የ አድራሻ ዳታ"
#: 01170000.xhp
msgctxt ""
@@ -8177,7 +8177,7 @@ msgctxt ""
"hd_id9215979\n"
"help.text"
msgid "KDE Address book"
-msgstr ""
+msgstr "የ ኬዲኢ አድራሻ ደብተር"
#: 01170000.xhp
msgctxt ""
@@ -8209,7 +8209,7 @@ msgctxt ""
"hd_id4517654\n"
"help.text"
msgid "Evolution"
-msgstr ""
+msgstr "ኢቮሊሽን"
#: 01170000.xhp
msgctxt ""
@@ -8225,7 +8225,7 @@ msgctxt ""
"hd_id4218268\n"
"help.text"
msgid "Evolution LDAP"
-msgstr ""
+msgstr "የኢቮሊሽን LDAP"
#: 01170000.xhp
msgctxt ""
@@ -8258,7 +8258,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "Other external data source"
-msgstr ""
+msgstr "ሌላ የውጪ ዳታ ምንጭ"
#: 01170000.xhp
msgctxt ""
@@ -8453,7 +8453,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01170400.xhp\" name=\"Data Source Name\">Data Source Name</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/autopi/01170400.xhp\" name=\"Data Source Name\">የዳታ ምንጭ ስም</link>"
#: 01170400.xhp
msgctxt ""
@@ -8620,7 +8620,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Web Wizard - Introduction"
-msgstr ""
+msgstr "የዌብ አዋቂ - አስተዋዋቂ"
#: webwizard01.xhp
msgctxt ""
@@ -8644,7 +8644,7 @@ msgctxt ""
"par_idN10557\n"
"help.text"
msgid "Choose Web Wizard settings"
-msgstr ""
+msgstr "ይምረጡ የ ዌብ አዋቂ ማሰናጃዎች"
#: webwizard01.xhp
msgctxt ""
@@ -8668,7 +8668,7 @@ msgctxt ""
"par_idN10562\n"
"help.text"
msgid "<ahelp hid=\"34209\">Deletes the selected settings.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"34209\">የተመረጡትን ማሰናጃዎች ማጥፊያ</ahelp>"
#: webwizard01.xhp
msgctxt ""
@@ -8748,7 +8748,7 @@ msgctxt ""
"par_idN1056C\n"
"help.text"
msgid "<ahelp hid=\"34212\">Removes the selected file from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"34212\">የተመረጠውን ፋይል ከ ዝርዝር ውስጥ ማስወገጃ</ahelp>"
#: webwizard02.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/explorer/database.po b/source/am/helpcontent2/source/text/shared/explorer/database.po
index 4c820a5f67f..88d12eae4fb 100644
--- a/source/am/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/am/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 23:27+0000\n"
+"PO-Revision-Date: 2013-06-30 21:57+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372548474.0\n"
+"X-POOTLE-MTIME: 1372629458.0\n"
#: 02000000.xhp
msgctxt ""
@@ -8436,13 +8436,12 @@ msgid "Path to the text files"
msgstr "ወደ ጽሁፍ ፋይሎች መንገድ"
#: dabapropgen.xhp
-#, fuzzy
msgctxt ""
"dabapropgen.xhp\n"
"par_idN105B5\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the path to the folder of the text files.</ahelp>"
-msgstr "<ahelp hid=\".\">Enter the path to the folder of the text files.</ahelp>"
+msgstr "<ahelp hid=\".\">የ ጽሁፍ ፋይሎች የያዘውን ፎልደር መንገድ ያስገቡ</ahelp>"
#: dabapropgen.xhp
msgctxt ""
@@ -9477,13 +9476,12 @@ msgid "Path to the dBASE files"
msgstr "መንገድ ወደ የ dBASE ፋይሎች"
#: dabawiz02dbase.xhp
-#, fuzzy
msgctxt ""
"dabawiz02dbase.xhp\n"
"par_idN1055A\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the path to the dBASE *.dbf files.</ahelp>"
-msgstr "<ahelp hid=\".\">Enter the path to the dBASE *.dbf files.</ahelp>"
+msgstr "<ahelp hid=\".\">ያስገቡ መንገድ ወደ ዳታቤዝ *.dbf files.</ahelp>"
#: dabawiz02dbase.xhp
msgctxt ""
@@ -11370,13 +11368,12 @@ msgid "Save"
msgstr "ማስቀመጫ"
#: menufilesave.xhp
-#, fuzzy
msgctxt ""
"menufilesave.xhp\n"
"par_idN105B9\n"
"help.text"
msgid "<ahelp hid=\".\">Click to save the form to the database file.</ahelp>"
-msgstr "<ahelp hid=\".\">Click to save the form to the database file.</ahelp>"
+msgstr "<ahelp hid=\".\">ፎርሙን ወደ ዳታቤዝ ፋይል ለማስቀመጥ ይጫኑ</ahelp>"
#: menuinsert.xhp
msgctxt ""
@@ -12328,13 +12325,12 @@ msgid "Value"
msgstr "ዋጋ"
#: querywizard03.xhp
-#, fuzzy
msgctxt ""
"querywizard03.xhp\n"
"par_idN105E6\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the value for the filter condition.</ahelp>"
-msgstr "<ahelp hid=\".\">Enter the value for the filter condition.</ahelp>"
+msgstr "<ahelp hid=\".\">ለ ማጣሪያ ሁኔታ ዋጋውን ያስገቡ</ahelp>"
#: querywizard03.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index eb90a379c45..9ad477d0558 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 17:45+0000\n"
+"PO-Revision-Date: 2013-07-07 18:34+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372527947.0\n"
+"X-POOTLE-MTIME: 1373222086.0\n"
#: aaa_start.xhp
msgctxt ""
@@ -74,7 +74,7 @@ msgctxt ""
"par_id0820200803563860\n"
"help.text"
msgid "Click the <emph>Get more templates online</emph> link in the dialog to select and download more templates."
-msgstr ""
+msgstr "ይጫኑ የ <emph>ተጨማሪ ቴምፕሌት ማግኛ በ መስመር ላይ</emph> አገናኝ ንግግር ተጨማሪ ቴምፕሌት ለ መምረጥ እና ለማውረድ"
#: aaa_start.xhp
msgctxt ""
@@ -575,7 +575,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "Java Runtime Environment (JRE) version 1.4.1_01 and higher, or version 1.4.0_02 with the locale set to \"en_us\"."
-msgstr ""
+msgstr "Java Runtime Environment (JRE) እትም 1.4.1_01 ከዚያ በላይ ወይንም እትም 1.4.0_02 with the locale set to \"en_us\"."
#: assistive.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"71\n"
"help.text"
msgid "<variable id=\"autohide\"><link href=\"text/shared/guide/autohide.xhp\" name=\"Showing, Docking and Hiding Windows\">Showing, Docking and Hiding Windows</link></variable>"
-msgstr ""
+msgstr "<variable id=\"autohide\"><link href=\"text/shared/guide/autohide.xhp\" name=\"Showing, Docking and Hiding Windows\">Docking ማሳያ እና መስኮት መደበቂያ</link></variable>"
#: autohide.xhp
msgctxt ""
@@ -1134,14 +1134,13 @@ msgid "Click <emph>OK</emph> to apply the changes."
msgstr "ይጫኑ <emph>እሺ</emph> ለውጦቹን ለመፈጸም"
#: border_paragraph.xhp
-#, fuzzy
msgctxt ""
"border_paragraph.xhp\n"
"hd_id3149237\n"
"8\n"
"help.text"
msgid "Setting a Customized Border Style"
-msgstr "Setting a Customized Border Style"
+msgstr "Customized የ ድንበር ዘዴ ማሰናጃ"
#: border_paragraph.xhp
msgctxt ""
@@ -1268,14 +1267,13 @@ msgid "This <emph>adds</emph> the selected style to the current border style of
msgstr ""
#: border_table.xhp
-#, fuzzy
msgctxt ""
"border_table.xhp\n"
"hd_id3153666\n"
"7\n"
"help.text"
msgid "Setting a Customized Border Style"
-msgstr "Setting a Customized Border Style"
+msgstr "Customized የ ድንበር ዘዴ ማሰናጃ"
#: border_table.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index 08e786c2556..e610cd4a63a 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/helpcontent2/source/text/shared/optionen.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-06-22 14:15+0200\n"
-"PO-Revision-Date: 2013-06-29 17:49+0000\n"
+"PO-Revision-Date: 2013-07-03 02:38+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372528168.0\n"
+"X-POOTLE-MTIME: 1372819112.0\n"
#: 01000000.xhp
msgctxt ""
@@ -584,14 +584,13 @@ msgid "Load"
msgstr "መጫኛ"
#: 01010200.xhp
-#, fuzzy
msgctxt ""
"01010200.xhp\n"
"hd_id3153311\n"
"66\n"
"help.text"
msgid "Load user-specific settings with the document"
-msgstr "Load user-specific settings with the document"
+msgstr "በተጠቃሚው-የተወሰነ ማሰናጃ ሰነድ አቀማመጥ መጫኛ"
#: 01010200.xhp
msgctxt ""
@@ -706,7 +705,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Edit document properties before saving"
-msgstr ""
+msgstr "የ ሰነድ ባህሪዎችን ከማስቀመጥ በፊት ማረሚያ"
#: 01010200.xhp
msgctxt ""
@@ -715,7 +714,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optsavepage/docinfo\">Specifies that the <emph>Properties</emph> dialog will appear every time you select the <emph>Save As</emph> command.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optsavepage/docinfo\">መወሰኛ የ <emph>ባህሪዎች</emph> ንግግር ይታይ እንደሆን ሁል ጊዜ ሲመርጡ የ <emph>ማስቀመጫ እንደ</emph> ትእዛዝ</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -724,7 +723,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Always create backup copy"
-msgstr ""
+msgstr "ሁል ጊዜ ተተኪ ኮፒ መፍጠሪያ"
#: 01010200.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress.po b/source/am/helpcontent2/source/text/simpress.po
index d93e26524f7..179dbecfcba 100644
--- a/source/am/helpcontent2/source/text/simpress.po
+++ b/source/am/helpcontent2/source/text/simpress.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-06-24 15:58+0000\n"
+"PO-Revision-Date: 2013-07-14 21:53+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372089503.0\n"
+"X-POOTLE-MTIME: 1373838813.0\n"
#: main0000.xhp
msgctxt ""
@@ -359,7 +359,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains the commands that are used to insert new elements into the document, for example, graphics, objects, special characters and other files.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ይህ ዝርዝር የያዛቸው ትእዛዞች አዲስ አካሎች ወደ ሰነድ ውስጥ ለማስገቢያ ነው፡ ለምሳሌ ንድፎች፡ እቃዎች፡ የተለዩ ባህሪዎች እና ሌሎች ፋይሎች</ahelp>"
#: main0104.xhp
msgctxt ""
@@ -504,7 +504,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:FormatMenu\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:FormatMenu\">ይህ ዝርዝር የያዛቸው ትእዛዞች አቀራረብ ለ እቅድ እና ለ ሰነድ ይዞታዎች ነው</ahelp>"
#: main0105.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
#: main0107.xhp
msgctxt ""
@@ -664,7 +664,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:WindowList\">የ ያዛቸው ትእዛዞች ለ ማሰናጃ እና የ ሰነዶችን መስኮት ለ ማሳያ ነው</ahelp>"
#: main0113.xhp
msgctxt ""
@@ -690,7 +690,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for modifying objects in your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">በ እርስዎ ሰነድ ውስጥ እቃዎችን ለማሻሻል ትእዛዞችን ይዟል</ahelp>"
#: main0113.xhp
msgctxt ""
@@ -848,7 +848,7 @@ msgctxt ""
"par_id31474099\n"
"help.text"
msgid "Add objects, including charts, spreadsheets, and images, to your document."
-msgstr ""
+msgstr "ወደ እርስዎ ሰነድ ውስጥ እቃዎች፡ charts፡ ሰንጠረዦች እና ምስሎች መጨመሪያ"
#: main0202.xhp
msgctxt ""
@@ -1144,7 +1144,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "To specify the measurement units for a ruler, right-click the ruler, and then choose a new unit from the list."
-msgstr ""
+msgstr "ለ ማስመሪያው የ መለኪያ ክፍሎችን ለመወሰን፡ በቀኝ-ይጫኑ ማስመሪያው ላይ እና ከዛ ይምረጡ አዲስ የሚፈልጉትን መለኪያ ከ ዝርዝር ውስጥ"
#: main0209.xhp
msgctxt ""
@@ -1162,7 +1162,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "To change the slide margins, drag the edge of the white areas in the rulers."
-msgstr ""
+msgstr "የ ተንሻራታች መስመር ለመቀየር ይጎትቱ የ ማስመሪያውን ጠርዝ አካባቢ"
#: main0210.xhp
msgctxt ""
@@ -1188,7 +1188,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Drawing</emph> bar contains frequently used editing tools. Click the arrow next to an icon to open a toolbar that contains additional commands.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ <emph>መሳያ</emph> መደርደሪያ የያዘው አዘውትረው የሚጠቀሙበትን የ ማረሚያ መሳሪያዎች ነው፡ ይጫኑ ከ ምልክቱ አጠገብ ያለውን ቀስት ለ መክፈት ተጨማሪ የ እቃ መደርደሪያ ትእዛዞች ያላቸውን</ahelp>"
#: main0210.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "To select an object on the current slide, click the <emph>Select</emph> tool (white arrow) on the Drawing bar, and then click the object."
-msgstr ""
+msgstr "ከ አሁኑ ተንሸራታች ውስጥ እቃ ለመምረጥ ይጫኑ የ <emph>ይምረጡ</emph> እቃ (ነጭ ቀስት) በ መሳያ መደርደሪያ ላይ እና ከዛ ይጫኑ የሚፈልጉትን እቃ"
#: main0210.xhp
msgctxt ""
@@ -1223,7 +1223,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "To select more than one object, hold down Shift while you click."
-msgstr ""
+msgstr "ተጭነው ይያዙ የ Shift ቁልፍን ከ አንድ እቃ በላይ ለመምረጥ በሚጫኑ ጊዜ"
#: main0210.xhp
msgctxt ""
@@ -1232,7 +1232,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "To select an object that is behind another object, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then click the object. To select the next underlying object in the stacking, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then click again. To return the selection to the previously selected object, hold down Shift + <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then click."
-msgstr ""
+msgstr "ከ ሌላ እቃ ጀርባ ያለ እቃ ለመምረጥ ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline>, እና ከዛ ይጫኑ እቃውን፡ የሚቀጥለውን ተደራርቦ ከ ስር ያለ እቃ ለመምረጥ ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline>, እና ከዛ እንደገና ይጫኑ፡ ለመመለስ ወደ ምርጫው ቀደም ብለው ወደ መረጡት እቃ፡ ተጭነው ይያዙ Shift + <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline>, እና ከዛ ይጫኑ"
#: main0210.xhp
msgctxt ""
@@ -1250,7 +1250,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "To remove a selection, click anywhere outside the selected object, or press Escape."
-msgstr ""
+msgstr "የ ተመረጠውን ለማስወገድ ይጭኑ ከ ተመረጠው እቃ ውጪ ወይንም መዝለያን ይጫኑ"
#: main0210.xhp
msgctxt ""
@@ -1388,7 +1388,7 @@ msgctxt ""
"par_idN1080F\n"
"help.text"
msgid "Switches the 3D effects on and off for the selected objects."
-msgstr ""
+msgstr "ለ ተመረጠው እቃ የ 3ዲ ውጤቶች ማብሪያ እና ማጥፊያ መቀያየሪያ"
#: main0210.xhp
msgctxt ""
@@ -1707,7 +1707,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "$[officename] Impress also lets you rehearse the timing of your slide show."
-msgstr ""
+msgstr "$[officename] ማስደነቂያ እንዲሁም መለማመጃ ጊዜ ይፈቅድሎታል ለ ተንሸራታች ማሳያ"
#: main0503.xhp
msgctxt ""
@@ -1951,7 +1951,7 @@ msgctxt ""
"par_id092120090110440\n"
"help.text"
msgid "Number followed by Enter"
-msgstr ""
+msgstr "ቁጥርን ተከትሎ ማስገቢያ"
#: presenter.xhp
msgctxt ""
@@ -1991,7 +1991,7 @@ msgctxt ""
"par_id092120090110456\n"
"help.text"
msgid "Move caret in notes view backward/forward"
-msgstr ""
+msgstr "ማንቀሳቀሻ ካሬት ^ በ ማስታወሻ መመልከቻ መደብ/ፊት ለፊት"
#: presenter.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/01.po b/source/am/helpcontent2/source/text/simpress/01.po
index e6b9c8237f5..726341c7a3f 100644
--- a/source/am/helpcontent2/source/text/simpress/01.po
+++ b/source/am/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-06-30 05:22+0000\n"
+"PO-Revision-Date: 2013-07-14 16:41+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372569762.0\n"
+"X-POOTLE-MTIME: 1373820072.0\n"
#: 01170000.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "Select a paper format supported by your printer. You can also create a custom page size by selecting <emph>User </emph>and entering the size dimensions in the <emph>Width</emph> and <emph>Height</emph> boxes."
-msgstr ""
+msgstr "ይምረጡ የ ወረቀት አቀራረብ በ እርስዎ ማተሚያ የሚደገፈውን፡ እንዲሁም መፍጠር ይችላሉ የ custom ገጽ መጠን በ መምረጥ <emph>ተጠቃሚ </emph>እና የ መጠን dimensions በ <emph>ስፋት</emph> እና <emph>እርዝመት</emph> ሳጥኖች ውስጥ"
#: 01180001.xhp
msgctxt ""
@@ -9088,13 +9088,12 @@ msgid "Speed"
msgstr "ፍጥነት"
#: effectoptionstiming.xhp
-#, fuzzy
msgctxt ""
"effectoptionstiming.xhp\n"
"par_idN106A0\n"
"help.text"
msgid "<ahelp hid=\"878841862\">Specifies the duration of the effect.</ahelp>"
-msgstr "<ahelp hid=\"878841862\">Specifies the duration of the effect.</ahelp>"
+msgstr "<ahelp hid=\"878841862\">ውጤቱ የሚቆይበትን ጊዜ መወሰኛ</ahelp>"
#: effectoptionstiming.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/02.po b/source/am/helpcontent2/source/text/simpress/02.po
index 839c9c23e37..295dd0648dd 100644
--- a/source/am/helpcontent2/source/text/simpress/02.po
+++ b/source/am/helpcontent2/source/text/simpress/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-06-03 08:43+0200\n"
-"PO-Revision-Date: 2013-06-30 05:24+0000\n"
+"PO-Revision-Date: 2013-07-14 20:16+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372569865.0\n"
+"X-POOTLE-MTIME: 1373832967.0\n"
#: 04010000.xhp
msgctxt ""
@@ -92,7 +92,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:PagesPerRow\">Enter the number of slides to display on each row in the Slide Sorter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:PagesPerRow\">በ ተንሸራታች መለያ ውስጥ ምን ያህል ተንሸራታች በ ረድፍ ውስጥ እንደሚታይ ቁጥሩን ያስገቡ</ahelp>"
#: 04030000.xhp
msgctxt ""
@@ -117,7 +117,7 @@ msgctxt ""
"par_idN1059C\n"
"help.text"
msgid "<ahelp hid=\".\">Select the transition effect that appears before the current slide is shown.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ከ አሁኑ ተንሸራታች በፊት የሚታየውን የ መሸጋገሪያ ውጤት ይምረጡ </ahelp>"
#: 04040000.xhp
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"par_idN1059C\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the amount of time before the slide show automatically advances to the next slide.</ahelp> This option is only available for automatic transition."
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ሰአት መጠን ያስገቡ ተንሸራታች ማሳያው ራሱ በራሱ ወደሚቀጥለው ተንሸራታች ከማምራቱ በፊት </ahelp> ይህ ምርጫ የሚኖረው ለ ራሱ በራሱ መሸጋገሪያ ብቻ ነው"
#: 04070000.xhp
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:RehearseTimings\">Starts a slide show with a timer in the lower left corner.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:RehearseTimings\">ተንሸራታች ማስጀመሪያ ሰአት ከ ታች በስተ ግራ ጥግ በኩል ማሳያ</ahelp>"
#: 04070000.xhp
msgctxt ""
@@ -237,7 +237,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:Position\">Displays the X and Y position of the cursor and the size of the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Position\">የ መጠቆሚያውን የ X እና Y ቦታ እና የ ተመረጠውን እቃ መጠን ማሳያ</ahelp>"
#: 08020000.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "This Status bar field uses the same measurement units as the rulers. You can define the units by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentation - General\"><emph>%PRODUCTNAME Impress - General</emph></link>."
-msgstr ""
+msgstr "ይህ የሁኔታዎች መደርደሪያ ሜዳ እንደ ማስመሪያ የሚጠቀመው ተመሳሳይ የመለኪያ ክፍል ነው፡ መለኪያ ክፍሎቹን በመምረጥ መግለጽ ይችላሉ <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - <link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentation - General\"><emph>%PRODUCTNAME ማስደነቂያ - ባጠቃላይ</emph></link>."
#: 08060000.xhp
msgctxt ""
@@ -281,7 +281,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "In Layer Mode, the name of the layer containing the selected object is displayed."
-msgstr ""
+msgstr "በ ደረጃ ዘዴ የ ተመረጠውን እቃ የያዘው ደረጃ ስም ይታያል"
#: 10020000.xhp
msgctxt ""
@@ -315,7 +315,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ZoomToolBox\">Reduces or enlarges the screen display of the current document. Click the arrow next to the icon to open the <emph>Zoom</emph> toolbar.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ZoomToolBox\">ማሳነሻ ወይንም ማሳደጊያ የ አሁኑን ሰነድ መመልከቻ ማሳያ፡ ይጫኑ ከ ምልክቱ አጠገብ ያለውን ቀስት ለ መክፈት የ <emph>ማሳያ</emph> እቃ መደርደሪያ</ahelp>"
#: 10020000.xhp
msgctxt ""
@@ -586,7 +586,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "<ahelp hid=\".uno:ZoomPageWidth\">Displays the complete width of the slide. The top and bottom edges of the slide may not be visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ZoomPageWidth\">ተንሸራታች በ ሙሉ ስፋት ማሳያ፡ የ ላይኛው እና የ ታችኛው ጠርዝ ላይታይ ይችላል</ahelp>"
#: 10020000.xhp
msgctxt ""
@@ -621,7 +621,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "<ahelp hid=\".uno:ZoomOptimal\">Resizes the display to include all of the objects on the slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ZoomOptimal\">እንደገና መመጠኛ መመልከቻውን ሁሉንም እቃዎች በ ተንሸራታች ውስጥ ያለውን ለማሳያ</ahelp>"
#: 10020000.xhp
msgctxt ""
@@ -656,7 +656,7 @@ msgctxt ""
"35\n"
"help.text"
msgid "<ahelp hid=\".uno:ZoomObjects\">Resizes the display to fit the object(s) you selected.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ZoomObjects\">እንደገና መመጠኛ መመልከቻውን እርስዎ በ መረጡት እቃ(ዎች) ልክ መጠን</ahelp>"
#: 10020000.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AdvancedMode\">Modifies the shape, orientation or fill of the selected object(s).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:AdvancedMode\">ቅርጽ ማሻሻያ አቅጣጫ ወይንም መሙያ የ ተመረጠውን እቃ(ዎች)</ahelp>"
#: 10030000.xhp
msgctxt ""
@@ -759,7 +759,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Effects (%PRODUCTNAME Draw only)"
-msgstr ""
+msgstr "ውጤቶች (%PRODUCTNAME ለ መሳያ ብቻ)"
#: 10030000.xhp
msgctxt ""
@@ -1136,7 +1136,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">Insert or modify the properties of a gluepoint. A gluepoint is a point where you can attach a <link href=\"text/simpress/02/10100000.xhp\" name=\"connector\">connector</link> line. </ahelp> By default, <item type=\"productname\">%PRODUCTNAME</item> automatically places a gluepoint at the center of each side of the bounding rectangle for every object you create."
-msgstr ""
+msgstr "<ahelp hid=\".\">ማስገቢያ ወይንም ማሻሻያ የ መጋጠሚያ ነጥቦችን ባህሪ፡ የ መጋጠሚያ ነጥቦች እቃዎችን ማያያዣ ነጥብ ነው <link href=\"text/simpress/02/10100000.xhp\" name=\"connector\">አገናኝ</link> መስመር </ahelp> በ ነባር <item type=\"productname\">%PRODUCTNAME</item> ራሱ በራሱ የ መጋጠሚያ ነጥቦች በ ሁለት በኩል መሀከል ላይ ይፈጥራል ለ እያንዳንዱ ለሚፈጥሩት እቃ"
#: 10030200.xhp
msgctxt ""
@@ -3125,7 +3125,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "Torus"
-msgstr ""
+msgstr "Torus"
#: 10090000.xhp
msgctxt ""
@@ -3151,7 +3151,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "Torus"
-msgstr ""
+msgstr "Torus"
#: 10090000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/04.po b/source/am/helpcontent2/source/text/simpress/04.po
index 99852b42ac8..a726c7201a9 100644
--- a/source/am/helpcontent2/source/text/simpress/04.po
+++ b/source/am/helpcontent2/source/text/simpress/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-06-26 21:13+0000\n"
+"PO-Revision-Date: 2013-07-05 15:48+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372281218.0\n"
+"X-POOTLE-MTIME: 1373039332.0\n"
#: 01020000.xhp
msgctxt ""
@@ -728,7 +728,7 @@ msgctxt ""
"78\n"
"help.text"
msgid "Split selected object. This combination only works on an object that was created by combining two or more objects."
-msgstr ""
+msgstr "የ ተመረጠውን እቃ መክፈያ፡ ይህ መቀላቀያ የሚሰራው እቃው ሁለት ወይንም ከ ዚያ በላይ እቃዎችን በ መቀላቀል የተፈጠረ ሲሆን ብቻ ነው"
#: 01020000.xhp
msgctxt ""
@@ -1095,7 +1095,7 @@ msgctxt ""
"par_ii1764275\n"
"help.text"
msgid "Move cursor to beginning of the previous paragraph"
-msgstr ""
+msgstr "መጠቆሚያውን ቀደም ወዳለው አንቀጽ መጀመሪያ ማንቀሳቀሻ"
#: 01020000.xhp
msgctxt ""
@@ -1466,7 +1466,7 @@ msgctxt ""
"93\n"
"help.text"
msgid "Move around in the page view."
-msgstr ""
+msgstr "በ ገጽ መመልከቻው ዙሪያ ማንቀሳቀሻ"
#: 01020000.xhp
msgctxt ""
@@ -1707,7 +1707,7 @@ msgctxt ""
"par_id2616351\n"
"help.text"
msgid "Switch to the previous slide. No function on the first slide."
-msgstr ""
+msgstr "ቀደም ወዳለው ተንሸራታች መቀየሪያ፡ በ መጀመሪያው ተንሸራታች ላይ ምንም ተግባር የለም"
#: 01020000.xhp
msgctxt ""
@@ -1723,7 +1723,7 @@ msgctxt ""
"par_id4433423\n"
"help.text"
msgid "Switch to the next slide. No function on the last slide."
-msgstr ""
+msgstr "ወደሚቀጥለው ተንሸራታች መቀየሪያ፡ በ መጨረሻው ተንሸራታች ላይ ምንም ተግባር የለም"
#: 01020000.xhp
msgctxt ""
@@ -1764,7 +1764,7 @@ msgctxt ""
"par_id3153268\n"
"help.text"
msgid "Set the focus to the first/last slide."
-msgstr ""
+msgstr "ትኩረት ማሰናጃ ለ መጀመሪያው/መጨረሻው ተንሸራታች"
#: 01020000.xhp
msgctxt ""
@@ -1780,7 +1780,7 @@ msgctxt ""
"par_id3145073\n"
"help.text"
msgid "Set the focus to the next/previous slide."
-msgstr ""
+msgstr "ትኩረት ማሰናጃ ለሚቀጥለው/ቀደም ላለው ተንሸራታች"
#: 01020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/guide.po b/source/am/helpcontent2/source/text/simpress/guide.po
index 56ad1694f43..0a7e69a11be 100644
--- a/source/am/helpcontent2/source/text/simpress/guide.po
+++ b/source/am/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-06-30 00:14+0000\n"
+"PO-Revision-Date: 2013-07-14 23:33+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372551263.0\n"
+"X-POOTLE-MTIME: 1373844780.0\n"
#: 3d_create.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Converting 2D Objects to Curves, Polygons, and 3D Objects"
-msgstr ""
+msgstr "መቀየሪያ 2ዲ እቃዎችን ወደ ክብ፡ Polygons, እና 3ዲ እቃዎች"
#: 3d_create.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3150207\n"
"help.text"
msgid "<bookmark_value>3D rotation objects; generating</bookmark_value><bookmark_value>3D objects; generating</bookmark_value><bookmark_value>3D scenes; creating</bookmark_value><bookmark_value>converting; to curves, polygons, 3D</bookmark_value><bookmark_value>extrusion objects</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>3ዲ ማዞሪያ እቃዎችን; ማመንጫ</bookmark_value><bookmark_value>3ዲ እቃዎችን; ማመንጫ</bookmark_value><bookmark_value>3ዲ ገጽታዎች; መፍጠሪያ</bookmark_value><bookmark_value>መቀየሪያ; ወደ ክቦች, polygons, 3ዲ</bookmark_value><bookmark_value>extrusion objects</bookmark_value>"
#: 3d_create.xhp
msgctxt ""
@@ -39,7 +39,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "<variable id=\"3d_create\"><link href=\"text/simpress/guide/3d_create.xhp\" name=\"Converting 2D Objects to Curves, Polygons, and 3D Objects\">Converting 2D Objects to Curves, Polygons, and 3D Objects</link></variable>"
-msgstr ""
+msgstr "<variable id=\"3d_create\"><link href=\"text/simpress/guide/3d_create.xhp\" name=\"Converting 2D Objects to Curves, Polygons, and 3D Objects\">መቀየሪያ 2ዲ እቃዎችን ወደ ክብ፡ Polygons, እና 3ዲ እቃዎች</link></variable>"
#: 3d_create.xhp
msgctxt ""
@@ -75,7 +75,7 @@ msgctxt ""
"51\n"
"help.text"
msgid "3D object with shading and a light source"
-msgstr ""
+msgstr "3ዲ እቃዎች ከ ጥላ እና ከ ብርሀን ምንጭ ጋር"
#: 3d_create.xhp
msgctxt ""
@@ -84,7 +84,7 @@ msgctxt ""
"52\n"
"help.text"
msgid "3D rotation object with shading and a light source"
-msgstr ""
+msgstr "3ዲ እቃዎች ማዞሪያ ከ ጥላ እና ከ ብርሀን ምንጭ ጋር"
#: 3d_create.xhp
msgctxt ""
@@ -117,7 +117,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "To convert an object to a curved shape:"
-msgstr ""
+msgstr "እቃ ወደ ክብ ቅርጽ ለመቀየር:"
#: 3d_create.xhp
msgctxt ""
@@ -144,7 +144,7 @@ msgctxt ""
"55\n"
"help.text"
msgid "To modify the shape of the object, click the <emph>Points</emph> icon<image id=\"img_id1027558\" src=\"svx/res/cd015.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1027558\">Icon</alt></image> on the <emph>Drawing</emph> toolbar, and drag the handles of the object. You can also drag the control points of a handle to modify the shape of the curve."
-msgstr ""
+msgstr "የ እቃ ቅርጽ ለማሻሻል ይጫኑ በ <emph>ነጥቦች</emph> ምልክት<image id=\"img_id1027558\" src=\"svx/res/cd015.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1027558\">ምልክት</alt></image> በ <emph>መሳያ</emph> እቃ መደርደሪያ ላይ እና ይጎትቱ የ እቃውን እጄታ፡ ወይንም እጄታውን ይጎትቱ የ መቆጣጠሪያ ነጥቦች የ ክብ ቅርጾችን ለማሻሻል"
#: 3d_create.xhp
msgctxt ""
@@ -180,7 +180,7 @@ msgctxt ""
"39\n"
"help.text"
msgid "To modify the shape of the object, click the <emph>Points</emph> icon<image id=\"img_id7219458\" src=\"svx/res/cd015.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id7219458\">Icon</alt></image> on the <emph>Drawing</emph> toolbar, and drag the handles of the object."
-msgstr ""
+msgstr "እቃውን ቅርጹን ለመቀየር ይጫኑ የ <emph>ነጥቦች</emph> ምልክት<image id=\"img_id7219458\" src=\"svx/res/cd015.png\" width=\"0.2201inch\" height=\"0.2201inch\"><alt id=\"alt_id7219458\">ምልክት</alt></image> ከ <emph>መሳያ</emph> እቃ መደርደሪያ ላይ እና የ እቃውን እጄታ ይጎትቱ"
#: 3d_create.xhp
msgctxt ""
@@ -215,7 +215,7 @@ msgctxt ""
"41\n"
"help.text"
msgid "To edit the properties of the 3D object, use the <emph>Line and Filling</emph> toolbar and the <emph>3D Settings</emph> toolbar."
-msgstr ""
+msgstr "የ 3ዲ እቃ ባህሪዎችን ለማረም ይጠቀሙ የ <emph>መስመር እና መሙያ</emph> እቃ መደርደሪያ እና የ <emph>3ዲ ማሰናጃዎች</emph> እቃ መደርደሪያን"
#: 3d_create.xhp
msgctxt ""
@@ -293,7 +293,7 @@ msgctxt ""
"bm_id3153188\n"
"help.text"
msgid "<bookmark_value>cross-fading; creating cross-fades</bookmark_value><bookmark_value>GIF images; animating</bookmark_value><bookmark_value>animated GIFs</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>መስቀልኛ-ማፍዘዣ; መፍጠሪያ መስቀልኛ-ማፍዘዣ</bookmark_value><bookmark_value>GIF ምስሎች; እንቅስቃሴ</bookmark_value><bookmark_value>የሚንቀሳቀስ GIFs</bookmark_value>"
#: animated_gif_create.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"55\n"
"help.text"
msgid "<variable id=\"animated_gif_create\"><link href=\"text/simpress/guide/animated_gif_create.xhp\" name=\"Creating Animated GIF Images\">Creating Animated GIF Images</link></variable>"
-msgstr ""
+msgstr "<variable id=\"animated_gif_create\"><link href=\"text/simpress/guide/animated_gif_create.xhp\" name=\"Creating Animated GIF Images\">የሚንቀሳቀስ GIF ምስሎች መፍጠሪያ</link></variable>"
#: animated_gif_create.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"61\n"
"help.text"
msgid "In the <emph>Animation Group </emph>area, select <emph>Bitmap object</emph>."
-msgstr ""
+msgstr "ከ <emph>እንቅስቃሴ ቡድን </emph>ቦታ ይምረጡ <emph>Bitmap እቃ</emph>."
#: animated_gif_create.xhp
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"88\n"
"help.text"
msgid "Select an alignment option for the objects in the <emph>Alignment</emph> box."
-msgstr ""
+msgstr "ይምረጡ የ ማሰለፊያ ምርጫ ለ እቃዎቹ ከ <emph>ማሰለፊያ</emph> ሳጥን ውስጥ"
#: animated_gif_create.xhp
msgctxt ""
@@ -480,7 +480,7 @@ msgctxt ""
"77\n"
"help.text"
msgid "Select an animated object on your slide."
-msgstr ""
+msgstr "በ ተንሸራታቹ ላይ ተንቀሳቃሽ እቃዎችን ይምረጡ"
#: animated_gif_save.xhp
msgctxt ""
@@ -595,7 +595,7 @@ msgctxt ""
"51\n"
"help.text"
msgid "To preview the animation, click the <emph>Play</emph> button."
-msgstr ""
+msgstr "እንቅስቃሴውን በቅድሚያ ለማየት ይጫኑ የ <emph>ማጫወቻ</emph> ቁልፍ"
#: animated_objects.xhp
msgctxt ""
@@ -652,7 +652,7 @@ msgctxt ""
"76\n"
"help.text"
msgid "To remove an animation effect from an object:"
-msgstr ""
+msgstr "የ እንቅስቃሴ ውጤቶችን ከ እቃዎች ውስጥ ለማስወገድ:"
#: animated_objects.xhp
msgctxt ""
@@ -661,7 +661,7 @@ msgctxt ""
"77\n"
"help.text"
msgid "On a slide in <emph>Normal</emph> view, select the object from which to remove the effect."
-msgstr ""
+msgstr "ከ ተንሸራታች ውስጥ ከ <emph>መደበኛ</emph> መመልከቻ ውስጥ ይምረጡ እቃውን ውጤቱን ማስወገድ የሚፈልጉትን"
#: animated_objects.xhp
msgctxt ""
@@ -687,7 +687,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Animating Slide Transitions"
-msgstr ""
+msgstr "የ ተንሸራታች መሸጋገሪያ እንቅስቃሴ"
#: animated_slidechange.xhp
msgctxt ""
@@ -704,7 +704,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "<variable id=\"animated_slidechange\"><link href=\"text/simpress/guide/animated_slidechange.xhp\" name=\"Animating Slide Transitions\">Animating Slide Transitions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"animated_slidechange\"><link href=\"text/simpress/guide/animated_slidechange.xhp\" name=\"Animating Slide Transitions\">የ ተንሸራታች መሸጋገሪያ ማንቀሳቀሻ</link></variable>"
#: animated_slidechange.xhp
msgctxt ""
@@ -722,7 +722,7 @@ msgctxt ""
"68\n"
"help.text"
msgid "To apply a transition effect to a slide"
-msgstr ""
+msgstr "የ መሸጋገሪያ ውጤት ወደ ተንሸራትች ለመፈጸም"
#: animated_slidechange.xhp
msgctxt ""
@@ -731,7 +731,7 @@ msgctxt ""
"50\n"
"help.text"
msgid "In <emph>Normal</emph> view, select the slide that you want to add the transition effect to."
-msgstr ""
+msgstr "ከ <emph>መደበኛ</emph> መመልከቻውስጥ ይምረጡ ተንሸራታች የመሸጋገሪያ ውጤት እንዲጨመርበት የሚፈልጉትን"
#: animated_slidechange.xhp
msgctxt ""
@@ -767,7 +767,7 @@ msgctxt ""
"75\n"
"help.text"
msgid "To apply the same transition effect to more than one slide"
-msgstr ""
+msgstr "ተመሳሳይ መሸጋገሪያ ውጤት ከ አንድ በላይ ተንሸራታች ላይ እንዲፈጸም ከፈለጉ"
#: animated_slidechange.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"bm_id3150199\n"
"help.text"
msgid "<bookmark_value>backgrounds; changing</bookmark_value> <bookmark_value>slide masters; changing backgrounds</bookmark_value> <bookmark_value>slides;changing backgrounds</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>መደቦች; መቀያየሪያ</bookmark_value> <bookmark_value>ዋናው ተንሸራታች; መቀያየሪያ መደቦች</bookmark_value> <bookmark_value>ተንሸራታች;መቀያየሪያ መደቦች</bookmark_value>"
#: background.xhp
msgctxt ""
@@ -1023,7 +1023,7 @@ msgctxt ""
"54\n"
"help.text"
msgid "Select <emph>Hatching</emph>, and then click a hatching style in the list."
-msgstr ""
+msgstr "ይምረጡ <emph>Hatching</emph>, እና ከዛ ይጫኑ የ hatching ዘዴ ከ ዝርዝር ውስጥ"
#: background.xhp
msgctxt ""
@@ -1059,7 +1059,7 @@ msgctxt ""
"58\n"
"help.text"
msgid "Choose <emph>Format - Page</emph>, and then click on the <emph>Background</emph> tab."
-msgstr ""
+msgstr "ይምረጡ <emph>አቀራረብ - ገጽ</emph>, እና ከዛ ይምረጡ ከ <emph>መድበ</emph> tab."
#: background.xhp
msgctxt ""
@@ -1122,7 +1122,7 @@ msgctxt ""
"47\n"
"help.text"
msgid "This modification is only valid for the current presentation document."
-msgstr ""
+msgstr "ይህ ማሻሻያ ዋጋ የሚኖረው ለ አሁኑ ማቅረቢያ ሰነድ ብቻ ነው"
#: background.xhp
msgctxt ""
@@ -1130,7 +1130,7 @@ msgctxt ""
"par_idN10820\n"
"help.text"
msgid "To save a new slide master as a template"
-msgstr ""
+msgstr "አዲስ ዋናውን ተንሸራታች እንደ ቴምፕሌት ለማስቀመጥ"
#: background.xhp
msgctxt ""
@@ -1138,7 +1138,7 @@ msgctxt ""
"par_idN10827\n"
"help.text"
msgid "Choose <emph>View - Master - Slide Master</emph> to change to the slide master."
-msgstr ""
+msgstr "ይምረጡ <emph>መመልከቻ - ዋናውን - ተንሸራታች ዋናውን</emph> ዋናውን ተንሸራታች ለመቀየር"
#: background.xhp
msgctxt ""
@@ -1170,7 +1170,7 @@ msgctxt ""
"par_idN10847\n"
"help.text"
msgid "Enter a name for the template. Do not change the category from \"My Templates\". Click OK."
-msgstr "ለቴምፕሌቱ ስም ያስገቡ ምድቡን አይቀይሩ: ክ \"የኔ ቴምፕሌቶች\" እና ይጫኑ እሺ"
+msgstr "ለቴምፕሌቱ ስም ያስገቡ ምድቡን አይቀይሩ ክ \"የኔ ቴምፕሌቶች\". እና ይጫኑ እሺ"
#: background.xhp
msgctxt ""
@@ -1194,7 +1194,7 @@ msgctxt ""
"bm_id3149018\n"
"help.text"
msgid "<bookmark_value>zooming;keyboard</bookmark_value><bookmark_value>keyboard; zooming</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ማሳያ;በ ፊደል ገበታ</bookmark_value><bookmark_value>በፊደል ገበታ; ማሳያ</bookmark_value>"
#: change_scale.xhp
msgctxt ""
@@ -1400,7 +1400,7 @@ msgctxt ""
"par_id1445966\n"
"help.text"
msgid "Enter or select the contents that should be visible on all slides."
-msgstr ""
+msgstr "ያስገቡ ወይንም ይምረጡ ይዞታዎችን በ ተንሸራታቹ ውስጥ የሚታየውን"
#: footer.xhp
msgctxt ""
@@ -1441,7 +1441,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "You can add a text object anywhere on the slide master."
-msgstr ""
+msgstr "የ ጽሁፍ እቃ በ ዋናው ተንሸራታች ላይ በ ማንኛውም ቦታ መጨመር ይችላሉ"
#: footer.xhp
msgctxt ""
@@ -1495,7 +1495,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "You can hide the header or footer on the current slide by choosing <emph>Format</emph> - <link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide<emph> Layout</emph></link>, and clearing the <emph>Objects on background</emph> check box."
-msgstr ""
+msgstr "መደበቅ ይችላሉ ራስጌ ወይንም ግርጌ በ አሁኑ ተንሸራታች ማሳያ ውስጥ በ መምረጥ <emph>አቀራረብ</emph> - <link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">ተንሸራታች<emph> እቅድ</emph></link>, እና ያጽዱ የ <emph>እቃዎች ከ በስተጀርባ</emph> ሳጥን ውስጥ ምልክት ያድርጉ"
#: footer.xhp
msgctxt ""
@@ -1512,7 +1512,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Gluepoints"
-msgstr ""
+msgstr "መጋጠሚያ ነጥቦች መጠቀሚያ"
#: gluepoints.xhp
msgctxt ""
@@ -1520,7 +1520,7 @@ msgctxt ""
"bm_id0919200803534995\n"
"help.text"
msgid "<bookmark_value>glue points;using</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>መጋጠሚያ ነጥቦች;መጠቀሚያ</bookmark_value>"
#: gluepoints.xhp
msgctxt ""
@@ -1528,7 +1528,7 @@ msgctxt ""
"par_idN1065F\n"
"help.text"
msgid "<variable id=\"gluepoints\"><link href=\"text/simpress/guide/gluepoints.xhp\">Using Gluepoints</link></variable>"
-msgstr ""
+msgstr "<variable id=\"gluepoints\"><link href=\"text/simpress/guide/gluepoints.xhp\">መጋጠሚያ ነጥቦች መጠቀሚያ</link></variable>"
#: gluepoints.xhp
msgctxt ""
@@ -1544,7 +1544,7 @@ msgctxt ""
"par_id0919200803041099\n"
"help.text"
msgid "To add and edit gluepoints"
-msgstr ""
+msgstr "መጋጠሚያ ነጥቦች ለ መጨመር እና ለ ማረም"
#: gluepoints.xhp
msgctxt ""
@@ -1584,7 +1584,7 @@ msgctxt ""
"par_id0919200803041115\n"
"help.text"
msgid "Click inside the shape where you want to add the new gluepoint."
-msgstr ""
+msgstr "በ ቅርጹ ውስጥ ይጫኑ አዲስ የ መጋጠሚያ ነጥብ መጨመር በሚፈልጉበት ቦታ"
#: gluepoints.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"72\n"
"help.text"
msgid "To create a custom slide show:"
-msgstr ""
+msgstr "custom ተንሸራታች ለመፍጠር:"
#: individual.xhp
msgctxt ""
@@ -1880,7 +1880,7 @@ msgctxt ""
"62\n"
"help.text"
msgid "Click <emph>New</emph> and enter a name for your slide show in the <emph>Name </emph>box."
-msgstr ""
+msgstr "ይጫኑ <emph>አዲስ</emph> እና ያስገቡ ስም ለ እርስዎ ተንሸራታች በ <emph>ስም </emph>ሳጥን ውስጥ"
#: individual.xhp
msgctxt ""
@@ -1907,7 +1907,7 @@ msgctxt ""
"74\n"
"help.text"
msgid "To start a custom slide show:"
-msgstr ""
+msgstr "Custom ተንሸራታች ማሳያ ለ ማስጀመር:"
#: individual.xhp
msgctxt ""
@@ -1925,7 +1925,7 @@ msgctxt ""
"76\n"
"help.text"
msgid "Select the show you want to start from the list."
-msgstr ""
+msgstr "ከ ዝርዝር ውስጥ በ መጀመሪያ ማሳየት የሚፈልጉትን ይምረጡ"
#: individual.xhp
msgctxt ""
@@ -1961,7 +1961,7 @@ msgctxt ""
"65\n"
"help.text"
msgid "To always start a slide show from the current slide:"
-msgstr ""
+msgstr "ሁል ጊዜ ተንሸራታች ማሳያ ከ አሁኑ ተንሸራታች እንዲጀምር:"
#: individual.xhp
msgctxt ""
@@ -1979,7 +1979,7 @@ msgctxt ""
"67\n"
"help.text"
msgid "In the <emph>Start presentation</emph> area, select the <emph>Always with current page</emph> check box."
-msgstr ""
+msgstr "ከ <emph>ማቅረቢያ ማስጀመሪያ</emph> ቦታ ይምረጡ የ <emph>ሁል ጊዜ በ አሁኑ ገጽ ይጀምር</emph> ሳጥን ውስጥ ምልክት ያድርጉ"
#: individual.xhp
msgctxt ""
@@ -2005,7 +2005,7 @@ msgctxt ""
"par_id883150344\n"
"help.text"
msgid "To hide the current slide, click the Hide Slide action button."
-msgstr ""
+msgstr "የ አሁኑን ተንሸራታች ለ መደበቅ፡ ይጫኑ የ ተንሸራታች መደበቂያ ቁልፍ ይጫኑ"
#: individual.xhp
msgctxt ""
@@ -2067,7 +2067,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Shortcut Keys in $[officename] Impress"
-msgstr ""
+msgstr "አቋራጭ ቁልፎችን መጠቀሚያ በ $[officename] ማስደነቂያ"
#: keyboard.xhp
msgctxt ""
@@ -2282,7 +2282,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "Use the arrow keys to navigate to the slide that you want to copy, and then press <item type=\"keycode\">Ctrl+C</item>."
-msgstr ""
+msgstr "የ ቀስት ቁልፎችን ይጠቀሙ ኮፒ ለማድረግ የሚፈልጉትን ተንሸራታች ለ መቃኛ እና ከዛ ይጫኑ <item type=\"keycode\">Ctrl+C</item>."
#: keyboard.xhp
msgctxt ""
@@ -2309,7 +2309,7 @@ msgctxt ""
"27\n"
"help.text"
msgid "Use the arrow keys to navigate to the slide that you want to move, and then press <item type=\"keycode\">Ctrl+X</item>."
-msgstr ""
+msgstr "የ ቀስት ቁልፎችን ይጠቀሙ ማንቀሳቀስ የሚፈልጉትን ተንሸራታች ለ መቃኛ እና ከዛ ይጫኑ <item type=\"keycode\">Ctrl+X</item>."
#: keyboard.xhp
msgctxt ""
@@ -2318,7 +2318,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "Navigate to the slide where you want to move the slide, and then press <item type=\"keycode\">Ctrl+V</item>."
-msgstr ""
+msgstr "የ ቀስት ቁልፎችን ይጠቀሙ ማንቀሳቀስ የሚፈልጉትን ተንሸራታች ለ መቃኛ እና ከዛ ይጫኑ <item type=\"keycode\">Ctrl+V</item>."
#: keyboard.xhp
msgctxt ""
@@ -2387,7 +2387,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "Release the object."
-msgstr ""
+msgstr "እቃውን መልቀቂያ"
#: layer_new.xhp
msgctxt ""
@@ -2395,7 +2395,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Inserting Layers"
-msgstr ""
+msgstr "ደረጃዎች ማስገቢያ"
#: layer_new.xhp
msgctxt ""
@@ -2455,7 +2455,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "In the <emph>Properties </emph>area, set the options for the layer."
-msgstr ""
+msgstr "ከ <emph>ባህሪዎች </emph>ቦታ ለ ደረጃው ምርጫ ማሰናጃ"
#: layer_new.xhp
msgctxt ""
@@ -2464,7 +2464,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "Click <emph>OK</emph>. The new layer automatically becomes the active layer."
-msgstr ""
+msgstr "ይጫኑ <emph>እሺ</emph>. አዲሱ ደረጃ ራሱ በራሱ ንቁ ደረጃ ይሆናል"
#: layer_new.xhp
msgctxt ""
@@ -2482,7 +2482,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "You cannot change the name of or delete a predefined <item type=\"productname\">%PRODUCTNAME</item> Draw layer."
-msgstr ""
+msgstr "በ ቅድሚያ የተወሰነ ስም መቀየር ወይንም ማጥፋት አይችሉም በ <item type=\"productname\">%PRODUCTNAME</item> መሳያ ደረጃ ውስጥ"
#: layer_tipps.xhp
msgctxt ""
@@ -2498,7 +2498,7 @@ msgctxt ""
"bm_id3154013\n"
"help.text"
msgid "<bookmark_value>layers;working with</bookmark_value><bookmark_value>locking layers</bookmark_value><bookmark_value>hiding;layers</bookmark_value><bookmark_value>unlocking layers</bookmark_value><bookmark_value>showing;hidden layers</bookmark_value><bookmark_value>selecting;layers</bookmark_value>"
-msgstr "<bookmark_value>ደረጃዎች;መስሪያ በ</bookmark_value> <bookmark_value>መቆለፊያ ደረጃዎች</bookmark_value> <bookmark_value>መደበቂያ;ደረጃዎች</bookmark_value> <bookmark_value>መክፈቻ ደረጃዎች</bookmark_value> <bookmark_value>ማሳያ;የተደበቁ ደረጃዎች</bookmark_value><bookmark_value>መምረጫ;ደረጃ</bookmark_value>"
+msgstr "<bookmark_value>ደረጃዎች;መስሪያ በ</bookmark_value> <bookmark_value>መቆለፊያ ደረጃዎች</bookmark_value> <bookmark_value>መደበቂያ;ደረጃዎች</bookmark_value><bookmark_value>መክፈቻ ደረጃዎች</bookmark_value> <bookmark_value>ማሳያ;የተደበቁ ደረጃዎች</bookmark_value><bookmark_value>መምረጫ;ደረጃ</bookmark_value>"
#: layer_tipps.xhp
msgctxt ""
@@ -2507,7 +2507,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "<variable id=\"layer_tipps\"><link href=\"text/simpress/guide/layer_tipps.xhp\" name=\"Working With Layers\">Working With Layers</link></variable>"
-msgstr ""
+msgstr "<variable id=\"layer_tipps\"><link href=\"text/simpress/guide/layer_tipps.xhp\" name=\"Working With Layers\">በ ደረጃዎች መስራት</link></variable>"
#: layer_tipps.xhp
msgctxt ""
@@ -2541,7 +2541,7 @@ msgctxt ""
"par_idN10767\n"
"help.text"
msgid "To edit the properties of a layer, double-click a layer tab."
-msgstr ""
+msgstr "የ ደረጃ ባህሪዎችን ለ ማረም ሁለት ጊዜ-ይጫኑ በ ደረጃው tab ላይ"
#: layer_tipps.xhp
msgctxt ""
@@ -2550,7 +2550,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "Hiding layers"
-msgstr ""
+msgstr "ደረጃዎች መደበቂያ"
#: layer_tipps.xhp
msgctxt ""
@@ -2568,7 +2568,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "In the <emph>Properties </emph>area, clear the <emph>Visible </emph>check box."
-msgstr ""
+msgstr "ከ <emph>ባህሪዎች </emph>ቦታ ያጽዱ <emph>የሚታዩ </emph>የ ምልክት ማድረጊያ ሳጥን ውስጥ"
#: layer_tipps.xhp
msgctxt ""
@@ -2595,7 +2595,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "You can make a layer visible or invisible by clicking on its tab while holding down the Shift key."
-msgstr ""
+msgstr "ደረጃ እንዲታይ ወይንም እንዳይታይ ማድረግ ይችላሉ በ መጫን በ tab ላይ የ Shift ቁልፍን ተጭነው ይዘው"
#: layer_tipps.xhp
msgctxt ""
@@ -2622,7 +2622,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "In the <emph>Properties </emph>area, select the <emph>Visible </emph>check box."
-msgstr ""
+msgstr "ከ <emph>ባህሪዎች </emph>ቦታ ይምረጡ <emph>የሚታይ </emph>ምልክት ማድረጊያ ሳጥን ውስጥ"
#: layer_tipps.xhp
msgctxt ""
@@ -2640,7 +2640,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "Locking layers"
-msgstr ""
+msgstr "ደረጃዎች መቆለፊያ"
#: layer_tipps.xhp
msgctxt ""
@@ -2658,7 +2658,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "In the <emph>Properties</emph> area, select the <emph>Locked </emph>check box."
-msgstr ""
+msgstr "ከ <emph>ባህሪዎች</emph> ቦታይምረጡ <emph>የ ተቆለፈ</emph>ምልክት ማድረጊያ ሳጥን ውስጥ"
#: layer_tipps.xhp
msgctxt ""
@@ -2676,7 +2676,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "You cannot edit objects on a locked layer."
-msgstr ""
+msgstr "በ ተቆለፍ ደረጃ ላይ ያሉ እቃዎችን ማረም አይችሉም"
#: layer_tipps.xhp
msgctxt ""
@@ -2779,7 +2779,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "$[officename] Draw provides three default layers:"
-msgstr ""
+msgstr "$[officename] መሳያ በ ነባር ሶስት ደረጃዎችን ይዟል:"
#: layers.xhp
msgctxt ""
@@ -2788,7 +2788,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "Layout"
-msgstr ""
+msgstr "እቅድ"
#: layers.xhp
msgctxt ""
@@ -2797,7 +2797,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "Controls"
-msgstr ""
+msgstr "መቆጣጠሪያዎች"
#: layers.xhp
msgctxt ""
@@ -2806,7 +2806,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "Dimension Lines"
-msgstr ""
+msgstr "የ Dimension መስመሮች"
#: layers.xhp
msgctxt ""
@@ -2867,7 +2867,7 @@ msgctxt ""
"bm_id3145253\n"
"help.text"
msgid "<bookmark_value>line styles;loading</bookmark_value> <bookmark_value>lines;about line ends</bookmark_value> <bookmark_value>arrows;loading arrow styles</bookmark_value> <bookmark_value>styles;arrow and line styles</bookmark_value> <bookmark_value>loading;arrow and line styles</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ መስመር ዘዴዎች;መጫኛ</bookmark_value> <bookmark_value>መስመሮች;ስለ መስመር መጨረሻ</bookmark_value> <bookmark_value>ቀስቶች;መጫኛ የ ቀስት ዘዴዎች</bookmark_value> <bookmark_value>ዘዴዎች;ቀስት እና የ ቀስት ዘዴዎች</bookmark_value> <bookmark_value>መጫኛ;ቀስት እና የ መስመር ዘዴዎች</bookmark_value>"
#: line_arrow_styles.xhp
msgctxt ""
@@ -3069,7 +3069,7 @@ msgctxt ""
"hd_id46388\n"
"help.text"
msgid "How to use the Curve tool"
-msgstr ""
+msgstr "የ ክብ መሳሪያዎችን እንዴት እንደሚጠቀሙ"
#: line_draw.xhp
msgctxt ""
@@ -3095,7 +3095,7 @@ msgctxt ""
"par_id8174687\n"
"help.text"
msgid "Hold down <item type=\"keycode\">Shift</item> while you drag to restrict the direction to a 45 degree grid."
-msgstr ""
+msgstr "ተጭነው ይያዙ <item type=\"keycode\">Shift</item> በሚጎትቱ ጊዜ አቅጣጫውን ለመከልከል ከ 45 ዲግሪ መጋጠሚያ"
#: line_draw.xhp
msgctxt ""
@@ -3196,7 +3196,7 @@ msgctxt ""
"par_id7734916\n"
"help.text"
msgid "Release the mouse button to finish the line."
-msgstr ""
+msgstr "መስመሩን ለመጨረስ የ አይጡን ቁልፍ ይልቀቁ"
#: line_edit.xhp
msgctxt ""
@@ -3212,7 +3212,7 @@ msgctxt ""
"bm_id3150441\n"
"help.text"
msgid "<bookmark_value>curves; editing</bookmark_value><bookmark_value>editing; curves</bookmark_value><bookmark_value>splitting;curves</bookmark_value><bookmark_value>closing;shapes</bookmark_value><bookmark_value>deleting;points</bookmark_value><bookmark_value>converting;points</bookmark_value><bookmark_value>points;adding/converting/deleting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ክቦች; ማረሚያ</bookmark_value><bookmark_value>ማረሚያ; ክቦች</bookmark_value><bookmark_value>መክፈያ;ክቦች</bookmark_value><bookmark_value>መዝጊያ;ቅርጾች</bookmark_value><bookmark_value>ማጥፊያ;ነጥቦች</bookmark_value><bookmark_value>መቀየሪያ;ነጥቦች</bookmark_value><bookmark_value>ነጥቦች;መጨመሪያ/መቀየሪያ/ማጥፊያ</bookmark_value>"
#: line_edit.xhp
msgctxt ""
@@ -3221,7 +3221,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<variable id=\"line_edit\"><link href=\"text/simpress/guide/line_edit.xhp\" name=\"Editing Curves\">Editing Curves</link></variable>"
-msgstr ""
+msgstr "<variable id=\"line_edit\"><link href=\"text/simpress/guide/line_edit.xhp\" name=\"Editing Curves\">ክቦች ማረሚያ</link></variable>"
#: line_edit.xhp
msgctxt ""
@@ -3373,7 +3373,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "To convert a data point on a curved line:"
-msgstr ""
+msgstr "የ ዳታ ነጥብ ወደ ክብ መስመር መቀየሪያ:"
#: line_edit.xhp
msgctxt ""
@@ -3382,7 +3382,7 @@ msgctxt ""
"64\n"
"help.text"
msgid "Select a curved line, and then click the <emph>Points </emph>icon on the <emph>Drawing</emph> Bar."
-msgstr ""
+msgstr "የ ክብ መስመር ይምረጡ እና ከዛ ይጫኑ የ <emph>ነጥቦች </emph>ምልክት በ <emph>መሳያ</emph> መደርደሪያ ላይ"
#: line_edit.xhp
msgctxt ""
@@ -3427,7 +3427,7 @@ msgctxt ""
"68\n"
"help.text"
msgid "To add a data point:"
-msgstr ""
+msgstr "የ ዳታ ነጥብ ለመጨመር:"
#: line_edit.xhp
msgctxt ""
@@ -3436,7 +3436,7 @@ msgctxt ""
"69\n"
"help.text"
msgid "Select a curved line, and then click the <emph>Points </emph>icon on the <emph>Drawing</emph> Bar."
-msgstr ""
+msgstr "የ ክብ መስመር ይምረጡ እና ከዛ ይጫኑ የ <emph>ነጥቦች </emph>ምልክት በ <emph>መሳያ</emph> መደርደሪያ ላይ"
#: line_edit.xhp
msgctxt ""
@@ -3445,7 +3445,7 @@ msgctxt ""
"70\n"
"help.text"
msgid "On the <emph>Edit Points</emph> Bar, click the<emph> Insert Points</emph> icon."
-msgstr ""
+msgstr "ከ <emph>ማረሚያ ነጥቦች</emph> መደርደሪያ ላይ ይጫኑ የ<emph> ማስገቢያ ነጥቦች</emph> ምልክት"
#: line_edit.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"71\n"
"help.text"
msgid "Click the line where you want to add the point, and drag a short distance."
-msgstr ""
+msgstr "ይጫኑ መስመሩ ላይ ነጥብ መጨመር የሚፈልጉበትን እና ትንሽ እርቀት ይጎትቱት"
#: line_edit.xhp
msgctxt ""
@@ -3472,7 +3472,7 @@ msgctxt ""
"73\n"
"help.text"
msgid "To delete a data point:"
-msgstr ""
+msgstr "የ ዳታ ነጥብ ላማጥፋት:"
#: line_edit.xhp
msgctxt ""
@@ -3481,7 +3481,7 @@ msgctxt ""
"74\n"
"help.text"
msgid "Select a curved line, and then click the <emph>Points </emph>icon on the <emph>Drawing</emph> Bar."
-msgstr ""
+msgstr "የ ክብ መስመር ይምረጡ እና ከዛ ይጫኑ የ <emph>ነጥቦች </emph>ምልክት በ <emph>መሳያ</emph> መደርደሪያ ላይ"
#: line_edit.xhp
msgctxt ""
@@ -3490,7 +3490,7 @@ msgctxt ""
"75\n"
"help.text"
msgid "Click the point you want to delete."
-msgstr ""
+msgstr "ይጫኑ ነጥቡን ማጥፋት የሚፈልጉትን"
#: line_edit.xhp
msgctxt ""
@@ -3516,7 +3516,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Instructions for Using $[officename] Impress"
-msgstr ""
+msgstr "የ አጠቃቀም መመሪያ ለ $[officename] ማስደነቂያ"
#: main.xhp
msgctxt ""
@@ -3524,7 +3524,7 @@ msgctxt ""
"bm_id3156386\n"
"help.text"
msgid "<bookmark_value>$[officename] Impress instructions</bookmark_value><bookmark_value>instructions; $[officename] Impress</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>$[officename] ማስደነቂያ አጠቃቀም</bookmark_value><bookmark_value>አጠቃቀም; $[officename] ማስደነቂያ</bookmark_value>"
#: main.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "Viewing and Printing a Presentation"
-msgstr ""
+msgstr "መመልከቻ እና ማቅረቢያ ማተሚያ"
#: main.xhp
msgctxt ""
@@ -3577,7 +3577,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Applying a Slide Design to a Slide Master"
-msgstr ""
+msgstr "የተንሸራታች ንድፍ ወደ ዋናው ትውንሸራታች መፈጸሚያ"
#: masterpage.xhp
msgctxt ""
@@ -3594,7 +3594,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<variable id=\"masterpage\"><link href=\"text/simpress/guide/masterpage.xhp\" name=\"Applying a Slide Design to a Slide Master\">Applying a Slide Design to a Slide Master</link></variable>"
-msgstr ""
+msgstr "<variable id=\"masterpage\"><link href=\"text/simpress/guide/masterpage.xhp\" name=\"Applying a Slide Design to a Slide Master\">የተንሸራታች ንድፍ ወደ ዋናው ትውንሸራታች መፈጸሚያ</link></variable>"
#: masterpage.xhp
msgctxt ""
@@ -3612,7 +3612,7 @@ msgctxt ""
"25\n"
"help.text"
msgid "To apply a new slide master"
-msgstr ""
+msgstr "አዲስ ዋናው ተንሸራታች ለ መፈጸም"
#: masterpage.xhp
msgctxt ""
@@ -3797,7 +3797,7 @@ msgctxt ""
"42\n"
"help.text"
msgid "To add more shapes, repeat the last steps."
-msgstr ""
+msgstr "ተጨማሪ ቅርጾች ለ መጨመር የ መጨረሻውን ደረጃ ይደገሙ"
#: orgchart.xhp
msgctxt ""
@@ -3806,7 +3806,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "Open the <emph>Connectors </emph>toolbar on the <emph>Drawing</emph> bar, and select a connector line."
-msgstr ""
+msgstr "መክፈቻ የ <emph>አገናኞችን </emph>ከ እቃ መደርደሪያ <emph>መሳያ</emph> bar ላይ እና ይምረጡ አገናኝ መስመር"
#: orgchart.xhp
msgctxt ""
@@ -3833,7 +3833,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "To add more connectors, repeat the last steps."
-msgstr ""
+msgstr "ተጨማሪ አገናኖችን ለ መጨመር የ መጨረሻውን ደረጃ ይደገሙ"
#: orgchart.xhp
msgctxt ""
@@ -3869,7 +3869,7 @@ msgctxt ""
"50\n"
"help.text"
msgid "Double-click the shape, and type or paste your text."
-msgstr ""
+msgstr "ሁለት ጊዜ-ይጫኑ ቅርጹ ላይ እና ይጻፉ ወይንም ይለጥፉ የ እርስዎን ጽሁፍ"
#: orgchart.xhp
msgctxt ""
@@ -3896,7 +3896,7 @@ msgctxt ""
"53\n"
"help.text"
msgid "Select the shape, and choose <emph>Format - Area</emph>."
-msgstr ""
+msgstr "ይምረጡ ቅርጽ እና ከዛ ይምረጡ <emph>አቀራረብ - ቦታ</emph>."
#: orgchart.xhp
msgctxt ""
@@ -3965,7 +3965,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Copying Slides From Other Presentations"
-msgstr ""
+msgstr "ከ ሌሎች ማቅረቢያዎች ተንሸራታቾች ኮፒ ማድረጊያ"
#: page_copy.xhp
msgctxt ""
@@ -3973,7 +3973,7 @@ msgctxt ""
"bm_id3146971\n"
"help.text"
msgid "<bookmark_value>copying; slides</bookmark_value><bookmark_value>slides; copying between documents</bookmark_value><bookmark_value>pages; copying</bookmark_value><bookmark_value>inserting; slides from files</bookmark_value><bookmark_value>pasting;slides from other presentations</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ኮፒ ማድረጊያ; ተንሸራታች</bookmark_value><bookmark_value>ተንሸራታች; ኮፒ ማድረጊያ በ ሰነድ መካከል</bookmark_value><bookmark_value>ገጾች; ኮፒ ማድረጊያ</bookmark_value><bookmark_value>ማስገቢያ; ተንሸራታች ከ ፋይሎች</bookmark_value><bookmark_value>መለጠፊያ;ተንሸራታች ከ ሌሎች ማቅረቢያዎች</bookmark_value>"
#: page_copy.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">Copying Slides From Other Presentations</link></variable>"
-msgstr ""
+msgstr "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">ተንሸራታች ኮፒ ማድረጊያ ከ ሌሎች ተንሸራታቾች</link></variable>"
#: page_copy.xhp
msgctxt ""
@@ -4000,7 +4000,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "To insert a slide from another presentation:"
-msgstr ""
+msgstr "ተንሸራታች ለማስገባት ከ ሌሎች ተሸራታች ውስጥ:"
#: page_copy.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "To copy and paste slides between presentations:"
-msgstr ""
+msgstr "ኮፒ ማድረጊያ እና መለጠፊያ በ ተንሸራታቾች መካከል:"
#: page_copy.xhp
msgctxt ""
@@ -4081,7 +4081,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Select the slide(s), and then choose<emph> Edit - Copy</emph>."
-msgstr ""
+msgstr "ይምረጡ ተንሸራታች(ቾች), እና ከዛ ይምረጡ<emph> ማረሚያ - ኮፒ</emph>."
#: page_copy.xhp
msgctxt ""
@@ -4124,7 +4124,7 @@ msgctxt ""
"bm_id3154510\n"
"help.text"
msgid "<bookmark_value>colors;loading lists</bookmark_value><bookmark_value>gradients;loading lists</bookmark_value><bookmark_value>hatching;loading lists</bookmark_value><bookmark_value>loading;colors/gradients/hatchings</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ቀለሞች;መጫኛ ዝርዝሮች</bookmark_value><bookmark_value>ከፍታዎች;መጫኛ ዝርዝሮች</bookmark_value><bookmark_value>hatching;መጫኛ ዝርዝሮች</bookmark_value><bookmark_value>መጫኛ;ቀለሞች/ከፍታዎች/hatchings</bookmark_value>"
#: palette_files.xhp
msgctxt ""
@@ -4133,7 +4133,7 @@ msgctxt ""
"48\n"
"help.text"
msgid "<variable id=\"palette_files\"><link href=\"text/simpress/guide/palette_files.xhp\" name=\"Loading Color, Gradient, and Hatching Lists\">Loading Color, Gradient, and Hatching Lists</link></variable>"
-msgstr ""
+msgstr "<variable id=\"palette_files\"><link href=\"text/simpress/guide/palette_files.xhp\" name=\"Loading Color, Gradient, and Hatching Lists\">ቀለሞችመጫኛ፡ ከፍታዎች እና Hatching Lists</link></variable>"
#: palette_files.xhp
msgctxt ""
@@ -4151,7 +4151,7 @@ msgctxt ""
"74\n"
"help.text"
msgid "To load a color list:"
-msgstr ""
+msgstr "የ ቀለም ዝርዝር ለ መጫን:"
#: palette_files.xhp
msgctxt ""
@@ -4222,7 +4222,7 @@ msgctxt ""
"79\n"
"help.text"
msgid "Choose <emph>Format - Area</emph>, and then click the <emph>Gradients</emph> tab."
-msgstr ""
+msgstr "ይምረድጡ <emph>አቀራረብ - ቦታ</emph>, እና ከዛ ይጫኑ የ <emph>Gradients</emph> tab."
#: palette_files.xhp
msgctxt ""
@@ -4267,7 +4267,7 @@ msgctxt ""
"84\n"
"help.text"
msgid "Choose <emph>Format - Area</emph>, and then click the <emph>Hatching</emph> tab."
-msgstr ""
+msgstr "ይምረጡ <emph>አቀራረብ - ቦታ</emph>, እና ከዛ ይጫኑ የ <emph>Hatching</emph> tab."
#: palette_files.xhp
msgctxt ""
@@ -4303,7 +4303,7 @@ msgctxt ""
"72\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Format - Area\">Format - Area</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Format - Area\">አቀራረብ - ቦታ</link>"
#: print_tofit.xhp
msgctxt ""
@@ -4355,7 +4355,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "In <emph>Normal View</emph>, choose <emph>Format - Page</emph>, and then click the <emph>Page</emph> tab."
-msgstr ""
+msgstr "ከ <emph>መደበኛ መመልከቻው</emph>, ይምረጡ <emph>አቀራረብ - ገጽ</emph>, እና ከዛ ይጫኑ የ <emph>ገጽ</emph> tab."
#: print_tofit.xhp
msgctxt ""
@@ -4364,7 +4364,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "In <emph>Layout settings </emph>area, select the <emph>Fit object to paper format</emph> check box."
-msgstr ""
+msgstr "ከ <emph>እቅድ ማሰናጃዎች </emph>ቦታ ይምረጡ የ <emph>እቃውን በ ወረቀቱ አቀራረብ ልክ</emph> ሳጥ ውስጥ ምልክት ያድርጉ"
#: print_tofit.xhp
msgctxt ""
@@ -4398,7 +4398,7 @@ msgctxt ""
"bm_id3153726\n"
"help.text"
msgid "<bookmark_value>printing; presentations</bookmark_value> <bookmark_value>slides; printing</bookmark_value> <bookmark_value>notes; printing in presentations</bookmark_value> <bookmark_value>outlines; printing</bookmark_value> <bookmark_value>presentations; printing</bookmark_value> <bookmark_value>tiled printing of slides</bookmark_value> <bookmark_value>changing;layout for handouts</bookmark_value> <bookmark_value>handout printing</bookmark_value> <bookmark_value>layout;printing handouts</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ማተሚያ; ማቅረቢያዎች</bookmark_value> <bookmark_value>ተንሸራታቾች; ማተሚያ</bookmark_value> <bookmark_value>ማስታወሻዎች; ማተሚያ በ ማቅረቢያዎች</bookmark_value> <bookmark_value>እቅዶች; ማተሚያ</bookmark_value> <bookmark_value>ማቅረቢያዎች; ማተሚያ</bookmark_value> <bookmark_value>ክምሮች ማተሚያ ከ ተንሸራታች</bookmark_value> <bookmark_value>መቀየሪያ;እቅድ ለ ምፅዋት</bookmark_value> <bookmark_value>ምፅዋት ማተሚያ</bookmark_value> <bookmark_value>እቅድ;ማተሚያ ምፅዋት</bookmark_value>"
#: printing.xhp
msgctxt ""
@@ -4416,7 +4416,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "Default printer settings"
-msgstr ""
+msgstr "ነባር የ ማተሚያ ማሰናጃዎች"
#: printing.xhp
msgctxt ""
@@ -4452,7 +4452,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Click the <emph>%PRODUCTNAME Impress</emph> or the <emph>Options</emph> tab page, and then select the printer options."
-msgstr ""
+msgstr "ይጫኑ የ <emph>%PRODUCTNAME ማስደነቂያ</emph> ወይንም የ <emph>ምርጫ</emph> tab ገጽ እና ከዛ ይምረጡ የማተሚያ ምርጫዎች"
#: printing.xhp
msgctxt ""
@@ -4517,7 +4517,7 @@ msgctxt ""
"par_id996734\n"
"help.text"
msgid "Choose <emph>Insert - Page Number</emph> to open the <emph>Header and Footer</emph> dialog box."
-msgstr ""
+msgstr "ይምረጡ <emph>ማስገቢያ - የ ገጽ ቁጥር</emph> ለ መክፈት የ <emph>ራስጌ እና ግርጌ</emph> ንግግር ሳጥን"
#: printing.xhp
msgctxt ""
@@ -4642,7 +4642,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "In the <emph>Range and copies</emph> area, click <emph>Slides</emph>."
-msgstr ""
+msgstr "በ <emph>መጠን እና ኮፒዎች</emph> ቦታ ይጫኑ <emph>ተንሸራታቾች</emph>."
#: printing.xhp
msgctxt ""
@@ -4712,7 +4712,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Open a presentation, and switch to <emph>Slide Sorter</emph> View."
-msgstr ""
+msgstr "ማቅረቢያ መክፈቻ እና መቀየሪያ ወደ <emph>ተንሸራታች መለያ</emph> መመልከቻ"
#: rehearse_timings.xhp
msgctxt ""
@@ -4773,7 +4773,7 @@ msgctxt ""
"bm_id3154492\n"
"help.text"
msgid "<bookmark_value>objects; selecting</bookmark_value><bookmark_value>selecting; hidden objects</bookmark_value><bookmark_value>covered objects</bookmark_value><bookmark_value>underlying objects</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>እቃዎችን; መምረጫ</bookmark_value><bookmark_value>መምረጫ; የ ተደበቁ እቃዎችን</bookmark_value><bookmark_value>የ ተሸፈኑ እቃዎችን</bookmark_value><bookmark_value>ከስራቸው የተሰመሩ እቃዎችን</bookmark_value>"
#: select_object.xhp
msgctxt ""
@@ -4782,7 +4782,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<variable id=\"select_object\"><link href=\"text/simpress/guide/select_object.xhp\" name=\"Selecting Underlying Objects\">Selecting Underlying Objects</link></variable>"
-msgstr ""
+msgstr "<variable id=\"select_object\"><link href=\"text/simpress/guide/select_object.xhp\" name=\"Selecting Underlying Objects\">ከ ስራቸው የተሰመሩ እቃዎች</link></variable>"
#: select_object.xhp
msgctxt ""
@@ -4816,7 +4816,7 @@ msgctxt ""
"bm_id5592516\n"
"help.text"
msgid "<bookmark_value>running slide shows</bookmark_value><bookmark_value>showing;slide shows</bookmark_value><bookmark_value>slide shows; starting</bookmark_value><bookmark_value>presentations; starting</bookmark_value><bookmark_value>starting; slide shows</bookmark_value><bookmark_value>automatic slide shows</bookmark_value><bookmark_value>slide transitions;automatic</bookmark_value><bookmark_value>automatic slide transition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ማስኬጃ ተንሸራታች ማሳያ</bookmark_value><bookmark_value>ማሳያ;ተንሸራታች ማሳያ</bookmark_value><bookmark_value>ተንሸራታች ማሳያ; ማስጀመሪያ</bookmark_value><bookmark_value>ማቅረቢያዎች; ማስጀመሪያ</bookmark_value><bookmark_value>ማስጀመሪያ; ተንሸራታች ማሳያ</bookmark_value><bookmark_value>ራሱ በራሱ ተንሸራታች ማሳያ</bookmark_value><bookmark_value>የ ተንሸራታች መሸጋገሪያ;ራሱ በራሱ</bookmark_value><bookmark_value>ራሱ በራሱየ ተንሸራታች መሸጋገሪያ</bookmark_value>"
#: show.xhp
msgctxt ""
@@ -4824,7 +4824,7 @@ msgctxt ""
"hd_id4901272\n"
"help.text"
msgid "<variable id=\"show\"><link href=\"text/simpress/guide/show.xhp\" name=\"Showing a Slide Show\">Showing a Slide Show</link></variable>"
-msgstr ""
+msgstr "<variable id=\"show\"><link href=\"text/simpress/guide/show.xhp\" name=\"Showing a Slide Show\">ማሳያ ተንሸራታች ማሳያ</link></variable>"
#: show.xhp
msgctxt ""
@@ -4856,7 +4856,7 @@ msgctxt ""
"par_id6860255\n"
"help.text"
msgid "Choose <emph>Slide Show - Slide Show</emph> to run the show."
-msgstr ""
+msgstr "ይምረጡ <emph>ተንሸራታች ማሳያ - ተንሸራታች ማሳያ</emph> ማሳያውን ለማስኬድ"
#: show.xhp
msgctxt ""
@@ -4976,7 +4976,7 @@ msgctxt ""
"hd_id1906491\n"
"help.text"
msgid "Running a slide show from a file"
-msgstr ""
+msgstr "ተንሸራታች ማሳያ ከ ፋይል ውስጥ ማስኬጃ"
#: show.xhp
msgctxt ""
@@ -5008,7 +5008,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Including Spreadsheets in Slides"
-msgstr ""
+msgstr "ሰንጠረዥ በ ተንሸራታች ማካተቻ"
#: table_insert.xhp
msgctxt ""
@@ -5016,7 +5016,7 @@ msgctxt ""
"bm_id3154022\n"
"help.text"
msgid "<bookmark_value>spreadsheets;in presentations</bookmark_value><bookmark_value>presentations;inserting spreadsheets</bookmark_value><bookmark_value>including spreadsheets</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ሰንጠረዥ;በ ማቅረቢያዎች</bookmark_value><bookmark_value>ማቅረቢያዎች;ማስገቢያ ሰንጠረዥ</bookmark_value><bookmark_value>ማካተቻ ሰንጠረዥ</bookmark_value>"
#: table_insert.xhp
msgctxt ""
@@ -5025,7 +5025,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"table_insert\"><link href=\"text/simpress/guide/table_insert.xhp\" name=\"Including Spreadsheets in Slides\">Including Spreadsheets in Slides</link></variable>"
-msgstr ""
+msgstr "<variable id=\"table_insert\"><link href=\"text/simpress/guide/table_insert.xhp\" name=\"Including Spreadsheets in Slides\">ሰንጠረዞች በ ተንሸራታች ማካተቻ</link></variable>"
#: table_insert.xhp
msgctxt ""
@@ -5081,7 +5081,7 @@ msgctxt ""
"par_id0916200803551553\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">All selected cells are merged into one cell.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ሁሉም የ ተመረጡት ክፍሎች ወደ አንድ ክፍል ተዋህደዋል</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5121,7 +5121,7 @@ msgctxt ""
"par_idN10626\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Selects the current table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ አሁኑን ሰንጠረዥ መምረጫ</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5129,7 +5129,7 @@ msgctxt ""
"par_id0916200803551734\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose commands for the selected or all rows.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይምረጡ ትእዛዝ ለ ተመረጡት ወይንም ለ ሁሉም ረድፎች</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5161,7 +5161,7 @@ msgctxt ""
"par_id0916200804080050\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">All rows of the current selection will be deleted.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">አሁን የ ተመረጡት ወይንም ሁሉም ረድፎች ይጠፋሉ</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5169,7 +5169,7 @@ msgctxt ""
"par_id0916200804163012\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose commands for the selected or all columns.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">አሁን ለ ተመረጡት ወይንምለ ሁሉም አምዶች ትእዛዝ ይምረጡ</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5201,7 +5201,7 @@ msgctxt ""
"par_id0916200804163127\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">All columns of the current selection will be deleted.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">አሁን የ ተመረጡት ሁሉም አምዶች ይጠፋሉ</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5233,7 +5233,7 @@ msgctxt ""
"par_id248115\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Table</item> or use the Table icon on the Standard toolbar to insert a table."
-msgstr ""
+msgstr "ይምረጡ <item type=\"menuitem\">ማስገቢያ - ሰንጠረዥ</item> ወይንም ይጠቀሙ የ ሰንጠረዥ ምልክት ከ መደበኛ እቃ መደርደሪያ ላይ ሰንጠረዥ ለማስገባት"
#: table_insert.xhp
msgctxt ""
@@ -5241,7 +5241,7 @@ msgctxt ""
"par_id2748496\n"
"help.text"
msgid "Double-click the table and enter or paste the data into the cells."
-msgstr ""
+msgstr "ሁለት ጊዜ-ይጫኑ ሰንጠረዡን እና ያስገቡ ወይንም ይለጥፉ ዳታውን ወደ ክፍሎቹ"
#: table_insert.xhp
msgctxt ""
@@ -5299,7 +5299,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "You can add a blank $[officename] Calc spreadsheet to a slide as an OLE object."
-msgstr ""
+msgstr "መጨመር ይችላሉ ባዶ ሰንጠረዥ $[officename] ሰንጠረዥ ወደ ተንሸራታች እንደ OLE እቃ"
#: table_insert.xhp
msgctxt ""
@@ -5317,7 +5317,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "Choose <emph>Insert - OLE- Object</emph>. Click <emph>Create new</emph> and select the %PRODUCTNAME Spreadsheet. Click OK. Click in the spreadsheet to enter your data."
-msgstr ""
+msgstr "ይምረጡ <emph>ማስገቢያ - OLE- Object</emph>. ይጫኑ <emph>አዲስ መፍጠሪያ</emph> እና ይምረጡ የ %PRODUCTNAME ሰንጠረዥ፡ ይጫኑ እሺ ሰንጠረዡ ላይ ይጫኑ የ እርስዎን ዳታ ለማስገባት"
#: table_insert.xhp
msgctxt ""
@@ -5343,7 +5343,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "Inserting a spreadsheet from a file"
-msgstr ""
+msgstr "ሰንጠረዥ ከ ፋይል ውስጥ ማስገቢያ"
#: table_insert.xhp
msgctxt ""
@@ -5423,7 +5423,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"Insert - Object - OLE Object\">Insert - Object - OLE Object</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"Insert - Object - OLE Object\">ማስገቢያ - እቃ - የ OLE Object</link>"
#: text2curve.xhp
msgctxt ""
@@ -5439,7 +5439,7 @@ msgctxt ""
"bm_id3150717\n"
"help.text"
msgid "<bookmark_value>text; converting to curves</bookmark_value><bookmark_value>characters; converting to curves</bookmark_value><bookmark_value>sign conversion to curves</bookmark_value><bookmark_value>converting; text to curves</bookmark_value><bookmark_value>draw objects;converting text to</bookmark_value><bookmark_value>curves;converting text to</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ጽሁፍ; መቀየሪያ ወደ ክብ</bookmark_value><bookmark_value>ባህሪዎች; መቀየሪያ ወደ ክብ</bookmark_value><bookmark_value>ምልክት መቀየሪያ ወደ ክብ</bookmark_value><bookmark_value>መቀየሪያ;ጽሁፍ ወደ ክብ</bookmark_value><bookmark_value>መሳያ እቃዎች;መቀየሪያ ጽሁፍ ወደ </bookmark_value><bookmark_value>ክብ;መቀየሪያ ጽሁፍ ወደ</bookmark_value>"
#: text2curve.xhp
msgctxt ""
@@ -5448,7 +5448,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "<variable id=\"text2curve\"><link href=\"text/simpress/guide/text2curve.xhp\" name=\"Converting Text Characters into Drawing Objects\">Converting Text Characters into Drawing Objects</link></variable>"
-msgstr ""
+msgstr "<variable id=\"text2curve\"><link href=\"text/simpress/guide/text2curve.xhp\" name=\"Converting Text Characters into Drawing Objects\">የ ጽሁፍ ባህሪዎችን ወደ ስእል እቃዎች መቀየሪያ</link></variable>"
#: text2curve.xhp
msgctxt ""
@@ -5466,7 +5466,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "To convert text into a drawing object:"
-msgstr ""
+msgstr "ጽሁፍ ወደ ስእል እቃ ለመቀየር:"
#: text2curve.xhp
msgctxt ""
@@ -5484,7 +5484,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "In $[officename] Draw, choose <emph>Modify - Convert - To Curve</emph>."
-msgstr ""
+msgstr "ከ $[officename] መሳያይምረጡ <emph>ማሻሻያ - መቀየሪያ - ወደ ክብ</emph>."
#: text2curve.xhp
msgctxt ""
@@ -5572,7 +5572,7 @@ msgctxt ""
"37\n"
"help.text"
msgid "In $[officename] Draw, choose <emph>Modify - Convert - To Polygon</emph>."
-msgstr ""
+msgstr "ከ $[officename] መሳያ ይምረጡ <emph>ማሻሻያ - መቀየሪያ - ወደ Polygon</emph>."
#: vectorize.xhp
msgctxt ""
@@ -5581,7 +5581,7 @@ msgctxt ""
"38\n"
"help.text"
msgid "In $[officename] Impress, right-click the object, and then choose <emph>Convert - To Polygon</emph>."
-msgstr ""
+msgstr "ከ $[officename] ማስደነቂያ በ ቀኝ-ይጫኑ እቃውን እና ከዛ ይምረጡ <emph>መቀየሪያ - ወደ Polygon</emph>."
#: vectorize.xhp
msgctxt ""
@@ -5590,7 +5590,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "Set the conversion options for the image, and then click <emph>OK</emph>. See <link href=\"text/simpress/01/13050200.xhp\" name=\"Convert to Polygon\"><emph>Convert to Polygon</emph></link> for a description of the conversion options."
-msgstr ""
+msgstr "ለ ምስሉ የ መቀየሪያውን ምርጫ ያሰናዱ እና ይጫኑ <emph>እሺ</emph>. ይመልከቱ <link href=\"text/simpress/01/13050200.xhp\" name=\"Convert to Polygon\"><emph>ወደ Polygon መቀየሪያ</emph></link> ለ መቀየሪያ መግለጫ ምርጫዎች"
#: vectorize.xhp
msgctxt ""
@@ -5598,4 +5598,4 @@ msgctxt ""
"par_id3147371\n"
"help.text"
msgid "<link href=\"text/simpress/01/13050200.xhp\" name=\"Convert to Polygon\">Convert to Polygon</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/13050200.xhp\" name=\"Convert to Polygon\">ወደ Polygon መቀየሪያ</link>"
diff --git a/source/am/helpcontent2/source/text/smath.po b/source/am/helpcontent2/source/text/smath.po
index f73232906cd..7f5bfd6f8cf 100644
--- a/source/am/helpcontent2/source/text/smath.po
+++ b/source/am/helpcontent2/source/text/smath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 17:10+0000\n"
+"PO-Revision-Date: 2013-07-02 16:44+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372525813.0\n"
+"X-POOTLE-MTIME: 1372783447.0\n"
#: main0000.xhp
msgctxt ""
@@ -49,7 +49,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<link href=\"text/smath/01/03091500.xhp\" name=\"Formula Reference Tables\">Formula Reference Tables</link>"
-msgstr ""
+msgstr "<link href=\"text/smath/01/03091500.xhp\" name=\"Formula Reference Tables\">የ Formula ማመሳከሪያ ሰንጠረዦች</link>"
#: main0000.xhp
msgctxt ""
@@ -127,7 +127,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "This menu contains the general commands for working with formula documents, such as open, save and print."
-msgstr ""
+msgstr "ይህ ዝርዝር የ ያዛቸው ባጠቃላይ ትእዛዞች በ formula ሰነዶች ውስጥ ለ መስራት ነው እንደ መክፈት ማስቀመጥ እና ማተም"
#: main0101.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
#: main0107.xhp
msgctxt ""
@@ -568,7 +568,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "Creating a Formula in the Commands Window"
-msgstr ""
+msgstr "Formula በ ትእዛዝ መስኮቶች መፍጠሪያ"
#: main0503.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/00.po b/source/am/helpcontent2/source/text/smath/00.po
index 71513b77c31..2e61c433c4c 100644
--- a/source/am/helpcontent2/source/text/smath/00.po
+++ b/source/am/helpcontent2/source/text/smath/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 19:17+0000\n"
+"PO-Revision-Date: 2013-07-02 15:39+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372533469.0\n"
+"X-POOTLE-MTIME: 1372779582.0\n"
#: 00000004.xhp
msgctxt ""
@@ -305,7 +305,7 @@ msgctxt ""
"70\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Unary/Binary Operators</emph>"
-msgstr ""
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>Unary/Binary Operators</emph>"
#: 00000004.xhp
msgctxt ""
@@ -331,7 +331,7 @@ msgctxt ""
"72\n"
"help.text"
msgid "Unary/Binary Operators"
-msgstr ""
+msgstr "Unary/Binary Operators"
#: 00000004.xhp
msgctxt ""
@@ -340,7 +340,7 @@ msgctxt ""
"73\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Relations</emph>"
-msgstr ""
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>ግንኙነት</emph>"
#: 00000004.xhp
msgctxt ""
@@ -375,7 +375,7 @@ msgctxt ""
"37\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Operators</emph>"
-msgstr ""
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>አንቀሳቃሾች</emph>"
#: 00000004.xhp
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Functions</emph>"
-msgstr ""
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>ተግባሮች</emph>"
#: 00000004.xhp
msgctxt ""
@@ -445,7 +445,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Brackets</emph>"
-msgstr ""
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>ቅንፎች</emph>"
#: 00000004.xhp
msgctxt ""
@@ -480,7 +480,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Attributes</emph>"
-msgstr ""
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>ባህሪዎች</emph>"
#: 00000004.xhp
msgctxt ""
@@ -497,7 +497,7 @@ msgctxt ""
"par_id3154376\n"
"help.text"
msgid "<image id=\"img_id3154390\" src=\"starmath/res/at21706.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154390\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154390\" src=\"starmath/res/at21706.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154390\">ምልክት</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -515,7 +515,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Formats</emph>"
-msgstr ""
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>አቀራረብ</emph>"
#: 00000004.xhp
msgctxt ""
@@ -524,7 +524,7 @@ msgctxt ""
"80\n"
"help.text"
msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
-msgstr ""
+msgstr "ይምረጡ <emph>መመልከቻ - አካሎች</emph> - በ አካሎች መስኮት ውስጥ ይጫኑ"
#: 00000004.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"52\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Set Operations</emph>"
-msgstr ""
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>ተግባሮች ማሰናጃ</emph>"
#: 00000004.xhp
msgctxt ""
@@ -559,7 +559,7 @@ msgctxt ""
"81\n"
"help.text"
msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
-msgstr ""
+msgstr "ይምረጡ <emph>መመልከቻ - አካሎች</emph> - በ አካሎች መስኮት ውስጥ ይጫኑ"
#: 00000004.xhp
msgctxt ""
@@ -576,7 +576,7 @@ msgctxt ""
"54\n"
"help.text"
msgid "Set Operations"
-msgstr ""
+msgstr "ተግባሮች ማሰናጃ"
#: 00000004.xhp
msgctxt ""
@@ -701,7 +701,7 @@ msgctxt ""
"90\n"
"help.text"
msgid "Open the context menu in the Commands window - choose <emph>Others</emph>"
-msgstr ""
+msgstr "የ አገባብ ዝርዝር መክፈቻ በ ትእዛዝ መስኮት ውስጥ - ይምረጡ <emph>ሌሎች</emph>"
#: 00000004.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/01.po b/source/am/helpcontent2/source/text/smath/01.po
index 3b9d5729ec0..97961d3c973 100644
--- a/source/am/helpcontent2/source/text/smath/01.po
+++ b/source/am/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 23:35+0000\n"
+"PO-Revision-Date: 2013-07-05 14:33+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372548908.0\n"
+"X-POOTLE-MTIME: 1373034815.0\n"
#: 02080000.xhp
msgctxt ""
@@ -116,7 +116,7 @@ msgctxt ""
"bm_id3150299\n"
"help.text"
msgid "<bookmark_value>error search; next error</bookmark_value><bookmark_value>finding ;errors in %PRODUCTNAME Math</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ስህተት መፈለጊያ; የሚቀጥለው ስህተት</bookmark_value><bookmark_value>መፈለጊያ ;ስህተት በ %PRODUCTNAME ሂሳብ</bookmark_value>"
#: 02100000.xhp
msgctxt ""
@@ -125,7 +125,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/smath/01/02100000.xhp\" name=\"Next Error\">Next Error</link>"
-msgstr ""
+msgstr "<link href=\"text/smath/01/02100000.xhp\" name=\"Next Error\">የሚቀጥለው ስህተት</link>"
#: 02100000.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"bm_id3147434\n"
"help.text"
msgid "<bookmark_value>error search; previous error</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ስህተት መፈለጊያ; ቀደም ያለው ስህተት</bookmark_value>"
#: 02110000.xhp
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/smath/01/02110000.xhp\" name=\"Previous Error\">Previous Error</link>"
-msgstr ""
+msgstr "<link href=\"text/smath/01/02110000.xhp\" name=\"Previous Error\">ቀደም ያለው ስህተት</link>"
#: 02110000.xhp
msgctxt ""
@@ -329,7 +329,7 @@ msgctxt ""
"bm_id3154702\n"
"help.text"
msgid "<bookmark_value>changes; accepting automatically</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ለውጦችን; ራሱ በራሱ መቀበያ</bookmark_value>"
#: 03080000.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PLUSX\">Inserts a <emph>plus</emph> with one placeholder.</ahelp> You can also type <emph>+ <?></emph> in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_PLUSX\">ማስገቢያ የ <emph>መደመሪያ</emph> ከ አንድ ቦታ ያዢ ጋር</ahelp> መጻፍ ይችላሉ <emph>+ <?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -512,7 +512,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_MINUSX\">Inserts a <emph>minus</emph> with one placeholder.</ahelp> You can also type <emph>-<?></emph> in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_MINUSX\">ማስገቢያ የ <emph>መቀነሻ</emph> ከ አንድ ቦታ ያዢ ጋር</ahelp> መጻፍ ይችላሉ <emph>-<?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -538,7 +538,7 @@ msgctxt ""
"45\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PLUSMINUSX\">Inserts a <emph>plus/minus</emph> with one placeholder.</ahelp> You can also type <emph>+-<?></emph> in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_PLUSMINUSX\">ማስገቢያ የ <emph>መደመሪያ/መቀነሻ</emph> ከ አንድ ቦታ ያዢ ጋር</ahelp> መጻፍ ይችላሉ <emph>+-<?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -564,7 +564,7 @@ msgctxt ""
"47\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_MINUSPLUSX\">Inserts a <emph>minus/plus</emph> with one placeholder.</ahelp> You can also type <emph>-+<?></emph> in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_MINUSPLUSX\">ማስገቢያ የ <emph>መደመሪያ/መቀነሻ</emph> ከ አንድ ቦታ ያዢ ጋር</ahelp> መጻፍ ይችላሉ <emph>-+<?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XPLUSY\">Inserts a <emph>plus</emph> with two placeholders.</ahelp> You can also type <emph><?>+<?></emph> in the Commands window."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_XPLUSY\">ማስገቢያ የ <emph>መደመሪያ</emph> ከ ሁለት ቦታ ያዢ ጋር</ahelp> መጻፍ ይችላሉ <emph><?>+<?></emph> በ ትእዛዝ መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -642,7 +642,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XTIMESY\">Inserts an 'x' <emph>multiplication</emph> with two placeholders.</ahelp> You can also type <emph><?>times<?></emph> in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_XTIMESY\">ማስገቢያ የ 'x' <emph>multiplication</emph> ከ ሁለት ቦታ ያዢ ጋር</ahelp> መጻፍ ይችላሉ <emph><?>ጊዜ<?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XMINUSY\">Inserts a subtraction sign with two placeholders.</ahelp> You can also type <emph><?>-<?></emph> in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_XMINUSY\">ማስገቢያ የ መቀነሻ ምልክት ከ ሁለት ቦታ ያዢ ጋር </ahelp> መጻፍ ይችላሉ <emph><?>-<?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -746,7 +746,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XDIVY\">Inserts a division sign with two placeholders.</ahelp> You can also type <emph><?>div<?></emph> in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_XDIVY\">ማስገቢያ የ ማካፈያ ምልክት ከ ሁለት ቦታ ያዢ ጋር </ahelp> መጻፍ ይችላሉ <emph><?>ማካፈያ<?></emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
#: 03090100.xhp
msgctxt ""
@@ -1061,7 +1061,7 @@ msgctxt ""
"par_idN100BF\n"
"help.text"
msgid "<image id=\"img_id3147523\" src=\"starmath/res/bi21302.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147523\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147523\" src=\"starmath/res/bi21302.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147523\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1165,7 +1165,7 @@ msgctxt ""
"par_idN101BF\n"
"help.text"
msgid "<image id=\"img_id3151030\" src=\"starmath/res/bi21323.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151030\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151030\" src=\"starmath/res/bi21323.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151030\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1295,7 +1295,7 @@ msgctxt ""
"par_idN102F3\n"
"help.text"
msgid "<image id=\"img_id3148442\" src=\"starmath/res/bi21309.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148442\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148442\" src=\"starmath/res/bi21309.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148442\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1373,7 +1373,7 @@ msgctxt ""
"par_idN103AD\n"
"help.text"
msgid "<image id=\"img_id3151195\" src=\"starmath/res/bi21312.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151195\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151195\" src=\"starmath/res/bi21312.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151195\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1737,7 +1737,7 @@ msgctxt ""
"par_idN10570\n"
"help.text"
msgid "<image id=\"img_id3148704\" src=\"starmath/res/bi21333.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148704\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148704\" src=\"starmath/res/bi21333.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148704\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1854,14 +1854,13 @@ msgid "<bookmark_value>operators; general</bookmark_value><bookmark_value>upper
msgstr ""
#: 03090300.xhp
-#, fuzzy
msgctxt ""
"03090300.xhp\n"
"hd_id3153150\n"
"1\n"
"help.text"
msgid "<link href=\"text/smath/01/03090300.xhp\" name=\"Operators\">Operators</link>"
-msgstr "<link href=\"text/smath/01/03090300.xhp\" name=\"Operators\">Operators</link>"
+msgstr "<link href=\"text/smath/01/03090300.xhp\" name=\"Operators\">አንቀሳቃሾች</link>"
#: 03090300.xhp
msgctxt ""
@@ -1974,7 +1973,7 @@ msgctxt ""
"par_idN1013E\n"
"help.text"
msgid "<image id=\"img_id3149814\" src=\"starmath/res/fo21604.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149814\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149814\" src=\"starmath/res/fo21604.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149814\">ምልክት</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -2078,7 +2077,7 @@ msgctxt ""
"par_idN10230\n"
"help.text"
msgid "<image id=\"img_id3147409\" src=\"starmath/res/fo21607.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3147409\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147409\" src=\"starmath/res/fo21607.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3147409\">ምልክት</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -2182,7 +2181,7 @@ msgctxt ""
"par_idN10322\n"
"help.text"
msgid "<image id=\"img_id3154578\" src=\"starmath/res/fo21611.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3154578\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154578\" src=\"starmath/res/fo21611.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3154578\">ምልክት</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -2208,7 +2207,7 @@ msgctxt ""
"par_idN1035E\n"
"help.text"
msgid "<image id=\"img_id3149332\" src=\"starmath/res/fo21615.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149332\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149332\" src=\"starmath/res/fo21615.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149332\">ምልክት</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -2418,7 +2417,7 @@ msgctxt ""
"par_idN10132\n"
"help.text"
msgid "<image id=\"img_id3149687\" src=\"starmath/res/fu21508.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149687\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149687\" src=\"starmath/res/fu21508.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149687\">ምልክት</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2522,7 +2521,7 @@ msgctxt ""
"par_idN10223\n"
"help.text"
msgid "<image id=\"img_id3148759\" src=\"starmath/res/fu21511.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148759\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148759\" src=\"starmath/res/fu21511.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148759\">ምልክት</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2626,7 +2625,7 @@ msgctxt ""
"par_idN10309\n"
"help.text"
msgid "<image id=\"img_id3147608\" src=\"starmath/res/fu21514.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147608\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147608\" src=\"starmath/res/fu21514.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147608\">ምልክት</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2730,7 +2729,7 @@ msgctxt ""
"par_idN103EE\n"
"help.text"
msgid "<image id=\"img_id3145633\" src=\"starmath/res/fu21517.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145633\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145633\" src=\"starmath/res/fu21517.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145633\">ምልክት</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2938,7 +2937,7 @@ msgctxt ""
"par_idN105AC\n"
"help.text"
msgid "<image id=\"img_id3150842\" src=\"starmath/res/fu21524.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150842\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150842\" src=\"starmath/res/fu21524.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150842\">ምልክት</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -3112,7 +3111,7 @@ msgctxt ""
"par_idN100F8\n"
"help.text"
msgid "<image id=\"img_id3146923\" src=\"starmath/res/al21823.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3146923\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146923\" src=\"starmath/res/al21823.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3146923\">ምልክት</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3138,7 +3137,7 @@ msgctxt ""
"par_idN10131\n"
"help.text"
msgid "<image id=\"img_id3149815\" src=\"starmath/res/al21804.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149815\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149815\" src=\"starmath/res/al21804.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149815\">ምልክት</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3242,7 +3241,7 @@ msgctxt ""
"par_idN10217\n"
"help.text"
msgid "<image id=\"img_id3155867\" src=\"starmath/res/al21821.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3155867\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155867\" src=\"starmath/res/al21821.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3155867\">ምልክት</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3346,7 +3345,7 @@ msgctxt ""
"par_idN10307\n"
"help.text"
msgid "<image id=\"img_id3153794\" src=\"starmath/res/al21824.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3153794\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153794\" src=\"starmath/res/al21824.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3153794\">ምልክት</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3528,7 +3527,7 @@ msgctxt ""
"par_idN104A0\n"
"help.text"
msgid "<image id=\"img_id3149646\" src=\"starmath/res/al21826.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149646\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149646\" src=\"starmath/res/al21826.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149646\">ምልክት</alt></image>"
#: 03090500.xhp
msgctxt ""
@@ -3751,7 +3750,7 @@ msgctxt ""
"par_idN10098\n"
"help.text"
msgid "<image id=\"img_id3150391\" src=\"starmath/res/at21701.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150391\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150391\" src=\"starmath/res/at21701.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150391\">ምልክት</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3855,7 +3854,7 @@ msgctxt ""
"par_idN10187\n"
"help.text"
msgid "<image id=\"img_id3159179\" src=\"starmath/res/at21709.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159179\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159179\" src=\"starmath/res/at21709.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159179\">ምልክት</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3884,14 +3883,13 @@ msgid "<image id=\"img_id3149808\" src=\"starmath/res/im21106.png\" width=\"0.22
msgstr "<image id=\"img_id3149808\" src=\"starmath/res/im21106.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149808\">ምልክት</alt></image>"
#: 03090600.xhp
-#, fuzzy
msgctxt ""
"03090600.xhp\n"
"par_id3153527\n"
"28\n"
"help.text"
msgid "<emph>Vector arrow</emph>"
-msgstr "<emph>Vector arrow</emph>"
+msgstr "<emph>የ አቅጣጫ ቀስት</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3960,7 +3958,7 @@ msgctxt ""
"par_idN1026E\n"
"help.text"
msgid "<image id=\"img_id3148986\" src=\"starmath/res/at21705.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148986\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148986\" src=\"starmath/res/at21705.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148986\">ምልክት</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -4142,7 +4140,7 @@ msgctxt ""
"par_idN103FD\n"
"help.text"
msgid "<image id=\"img_id3145130\" src=\"starmath/res/at21714.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145130\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145130\" src=\"starmath/res/at21714.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145130\">ምልክት</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -4151,7 +4149,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "<emph>Line below</emph>"
-msgstr ""
+msgstr "<emph>መስመር ከታች</emph>"
#: 03090600.xhp
msgctxt ""
@@ -4168,7 +4166,7 @@ msgctxt ""
"par_idN10436\n"
"help.text"
msgid "<image id=\"img_id3145318\" src=\"starmath/res/at21715.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145318\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145318\" src=\"starmath/res/at21715.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145318\">ምልክት</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -4177,7 +4175,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "<emph>Line through (overstrike)</emph>"
-msgstr ""
+msgstr "<emph>መስመር በሙሉ (መሰረዣ)</emph>"
#: 03090600.xhp
msgctxt ""
@@ -4272,7 +4270,7 @@ msgctxt ""
"par_idN1051C\n"
"help.text"
msgid "<image id=\"img_id3150038\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150038\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150038\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150038\">ምልክት</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -4526,7 +4524,7 @@ msgctxt ""
"par_idN100FF\n"
"help.text"
msgid "<image id=\"img_id3149097\" src=\"starmath/res/co21908.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149097\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149097\" src=\"starmath/res/co21908.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149097\">ምልክት</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4535,7 +4533,7 @@ msgctxt ""
"39\n"
"help.text"
msgid "Superscript right"
-msgstr ""
+msgstr "በትንንሹ ከፍ ብሎ መጻፊያ በ ቀኝ"
#: 03090700.xhp
msgctxt ""
@@ -4613,7 +4611,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "Subscript left"
-msgstr ""
+msgstr "በትንንሹ ዝቅ ብሎ መጻፊያ በ ግራ"
#: 03090700.xhp
msgctxt ""
@@ -4630,7 +4628,7 @@ msgctxt ""
"par_idN101EB\n"
"help.text"
msgid "<image id=\"img_id3149544\" src=\"starmath/res/co21917.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149544\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149544\" src=\"starmath/res/co21917.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149544\">ምልክት</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4639,7 +4637,7 @@ msgctxt ""
"61\n"
"help.text"
msgid "Subscript bottom"
-msgstr ""
+msgstr "በትንንሹ ዝቅ ብሎ መጻፊያ ከ ታች"
#: 03090700.xhp
msgctxt ""
@@ -4665,7 +4663,7 @@ msgctxt ""
"37\n"
"help.text"
msgid "Subscript right"
-msgstr ""
+msgstr "በትንንሹ ዝቅ ብሎ መጻፊያ በ ቀኝ"
#: 03090700.xhp
msgctxt ""
@@ -4734,7 +4732,7 @@ msgctxt ""
"par_idN102DC\n"
"help.text"
msgid "<image id=\"img_id3154094\" src=\"starmath/res/co21909.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154094\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154094\" src=\"starmath/res/co21909.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154094\">ምልክት</alt></image>"
#: 03090700.xhp
msgctxt ""
@@ -4743,7 +4741,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Align left"
-msgstr ""
+msgstr "በ ግራ ማሰለፊያ"
#: 03090700.xhp
msgctxt ""
@@ -4847,7 +4845,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "Gap"
-msgstr ""
+msgstr "ክፍተት"
#: 03090700.xhp
msgctxt ""
@@ -4980,7 +4978,7 @@ msgctxt ""
"47\n"
"help.text"
msgid "Click <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Brackets and Grouping</link> for more information about formatting in <emph>$[officename] Math</emph>."
-msgstr ""
+msgstr "ይጫኑ <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">ቅንፎች እና ቡድኖች</link> በበለጠ ለመረዳት ስለ አቀራረብ <emph>$[officename] ሂሳብ</emph>."
#: 03090700.xhp
msgctxt ""
@@ -5179,7 +5177,7 @@ msgctxt ""
"par_idN101A7\n"
"help.text"
msgid "<image id=\"img_id3155147\" src=\"starmath/res/op21406.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3155147\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155147\" src=\"starmath/res/op21406.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3155147\">ምልክት</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5283,7 +5281,7 @@ msgctxt ""
"par_idN1028E\n"
"help.text"
msgid "<image id=\"img_id3155974\" src=\"starmath/res/op21409.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3155974\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155974\" src=\"starmath/res/op21409.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3155974\">ምልክት</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5387,7 +5385,7 @@ msgctxt ""
"par_idN1037A\n"
"help.text"
msgid "<image id=\"img_id3149318\" src=\"starmath/res/op21413.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3149318\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149318\" src=\"starmath/res/op21413.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3149318\">ምልክት</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5413,7 +5411,7 @@ msgctxt ""
"par_idN103B7\n"
"help.text"
msgid "<image id=\"img_id3151193\" src=\"starmath/res/op21414.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3151193\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151193\" src=\"starmath/res/op21414.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3151193\">ምልክት</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5517,7 +5515,7 @@ msgctxt ""
"par_idN104A7\n"
"help.text"
msgid "<image id=\"img_id3147383\" src=\"starmath/res/op21418.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3147383\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147383\" src=\"starmath/res/op21418.png\" width=\"8.47mm\" height=\"8.47mm\"><alt id=\"alt_id3147383\">ምልክት</alt></image>"
#: 03090800.xhp
msgctxt ""
@@ -5810,7 +5808,7 @@ msgctxt ""
"par_id3153915\n"
"help.text"
msgid "<image id=\"img_id3150213\" src=\"res/helpimg/smzb5.png\" width=\"16.51cm\" height=\"4.971cm\"><alt id=\"alt_id3150213\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150213\" src=\"res/helpimg/smzb5.png\" width=\"16.51cm\" height=\"4.971cm\"><alt id=\"alt_id3150213\">ምልክት</alt></image>"
#: 03090904.xhp
msgctxt ""
@@ -5930,7 +5928,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"res/helpimg/smzb7.png\" width=\"7.987cm\" height=\"2.768cm\"><alt id=\"alt_id3148871\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"res/helpimg/smzb7.png\" width=\"7.987cm\" height=\"2.768cm\"><alt id=\"alt_id3148871\">ምልክት</alt></image>"
#: 03090908.xhp
msgctxt ""
@@ -6684,7 +6682,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "a_{2^3}^{4_5}"
-msgstr ""
+msgstr "a_{2^3}^{4_5}"
#: 03091200.xhp
msgctxt ""
@@ -7132,7 +7130,7 @@ msgctxt ""
"par_id3146336\n"
"help.text"
msgid "<image id=\"Graphic14\" src=\"starmath/res/un21214.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic14\" src=\"starmath/res/un21214.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_\">ምልክት</alt></image>"
#: 03091501.xhp
msgctxt ""
@@ -7174,7 +7172,7 @@ msgctxt ""
"par_id1713309\n"
"help.text"
msgid "No symbol. Usage:"
-msgstr ""
+msgstr "ምልክት የለም፡ አጠቃቀም:"
#: 03091501.xhp
msgctxt ""
@@ -7182,7 +7180,7 @@ msgctxt ""
"par_id4594256\n"
"help.text"
msgid "uoper %SYM2 b"
-msgstr ""
+msgstr "uoper %SYM2 b"
#: 03091501.xhp
msgctxt ""
@@ -7208,7 +7206,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "Multiplication, small multiply symbol"
-msgstr ""
+msgstr "ማባዣ፡ ትንሽ የ ማባዣ ምልክት"
#: 03091501.xhp
msgctxt ""
@@ -7267,7 +7265,7 @@ msgctxt ""
"par_id3959776\n"
"help.text"
msgid "No symbol."
-msgstr ""
+msgstr "ምልክት የለም"
#: 03091501.xhp
msgctxt ""
@@ -7284,7 +7282,7 @@ msgctxt ""
"par_id1206701\n"
"help.text"
msgid "No symbol."
-msgstr ""
+msgstr "ምልክት የለም"
#: 03091501.xhp
msgctxt ""
@@ -7293,7 +7291,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "Small multiply symbol in circle"
-msgstr ""
+msgstr "ትንሽ የ ማባዣ ምልክት በ ክብ ውስጥ"
#: 03091501.xhp
msgctxt ""
@@ -7301,7 +7299,7 @@ msgctxt ""
"par_id815759\n"
"help.text"
msgid "No symbol."
-msgstr ""
+msgstr "ምልክት የለም"
#: 03091501.xhp
msgctxt ""
@@ -7310,7 +7308,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "Subtract symbol in circle"
-msgstr ""
+msgstr "የ መቀነሻ ምልክት በ ክብ ውስጥ"
#: 03091501.xhp
msgctxt ""
@@ -7318,7 +7316,7 @@ msgctxt ""
"par_id7664113\n"
"help.text"
msgid "No symbol."
-msgstr ""
+msgstr "ምልክት የለም"
#: 03091501.xhp
msgctxt ""
@@ -7411,7 +7409,7 @@ msgctxt ""
"par_id4930875\n"
"help.text"
msgid "No symbol."
-msgstr ""
+msgstr "ምልክት የለም"
#: 03091501.xhp
msgctxt ""
@@ -7428,7 +7426,7 @@ msgctxt ""
"par_id4568620\n"
"help.text"
msgid "No symbol."
-msgstr ""
+msgstr "ምልክት የለም"
#: 03091501.xhp
msgctxt ""
@@ -7663,7 +7661,7 @@ msgctxt ""
"74\n"
"help.text"
msgid "Much greater than"
-msgstr ""
+msgstr "በጣም ይበልጣል"
#: 03091502.xhp
msgctxt ""
@@ -7680,7 +7678,7 @@ msgctxt ""
"86\n"
"help.text"
msgid "Is approximately"
-msgstr ""
+msgstr "በግምት"
#: 03091502.xhp
msgctxt ""
@@ -7697,7 +7695,7 @@ msgctxt ""
"par_id3154050\n"
"help.text"
msgid "<image id=\"img_id3154056\" src=\"starmath/res/bi21322.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154056\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154056\" src=\"starmath/res/bi21322.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154056\">ምልክት</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7723,7 +7721,7 @@ msgctxt ""
"383\n"
"help.text"
msgid "Arrow with double line to the left"
-msgstr ""
+msgstr "ቀስት በ ድርብ መስመር ወደ ግራ"
#: 03091502.xhp
msgctxt ""
@@ -7740,7 +7738,7 @@ msgctxt ""
"387\n"
"help.text"
msgid "Arrow with double line to the left and the right"
-msgstr ""
+msgstr "ቀስት በ ድርብ መስመር ወደ ግራ እና ወደ ቀኝ"
#: 03091502.xhp
msgctxt ""
@@ -7757,7 +7755,7 @@ msgctxt ""
"385\n"
"help.text"
msgid "Arrow with double line to the right"
-msgstr ""
+msgstr "ቀስት በ ድርብ መስመር ወደ ቀኝ"
#: 03091502.xhp
msgctxt ""
@@ -7799,7 +7797,7 @@ msgctxt ""
"par_id3153648\n"
"help.text"
msgid "<image id=\"img_id3153653\" src=\"starmath/res/bi21309.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153653\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153653\" src=\"starmath/res/bi21309.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153653\">ምልክት</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7952,7 +7950,7 @@ msgctxt ""
"par_id3153959\n"
"help.text"
msgid "<image id=\"img_id3153964\" src=\"starmath/res/bi21328.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153964\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153964\" src=\"starmath/res/bi21328.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153964\">ምልክት</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -7969,7 +7967,7 @@ msgctxt ""
"par_id3153960\n"
"help.text"
msgid "<image id=\"img_id3153965\" src=\"starmath/res/bi21329.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153965\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153965\" src=\"starmath/res/bi21329.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153965\">ምልክት</alt></image>"
#: 03091502.xhp
msgctxt ""
@@ -8207,7 +8205,7 @@ msgctxt ""
"par_id3158212\n"
"help.text"
msgid "<image id=\"img_id3158218\" src=\"starmath/res/op21402.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158218\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3158218\" src=\"starmath/res/op21402.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158218\">ምልክት</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -8224,7 +8222,7 @@ msgctxt ""
"par_id3158819\n"
"help.text"
msgid "<image id=\"img_id3158825\" src=\"starmath/res/op21413.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158825\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3158825\" src=\"starmath/res/op21413.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3158825\">ምልክት</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -8359,7 +8357,7 @@ msgctxt ""
"par_id3163149\n"
"help.text"
msgid "<image id=\"img_id3163156\" src=\"starmath/res/op21417.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163156\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3163156\" src=\"starmath/res/op21417.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3163156\">ምልክት</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -8444,7 +8442,7 @@ msgctxt ""
"par_id3146652\n"
"help.text"
msgid "<image id=\"img_id3146659\" src=\"starmath/res/op21409.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146659\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146659\" src=\"starmath/res/op21409.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146659\">ምልክት</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -8461,7 +8459,7 @@ msgctxt ""
"par_id3146800\n"
"help.text"
msgid "<image id=\"img_id3146806\" src=\"starmath/res/op21410.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146806\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146806\" src=\"starmath/res/op21410.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146806\">ምልክት</alt></image>"
#: 03091503.xhp
msgctxt ""
@@ -8579,7 +8577,7 @@ msgctxt ""
"par_id3166018\n"
"help.text"
msgid "<image id=\"img_id3166024\" src=\"starmath/res/fu21501.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3166024\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3166024\" src=\"starmath/res/fu21501.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3166024\">ምልክት</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8681,7 +8679,7 @@ msgctxt ""
"par_id3164987\n"
"help.text"
msgid "<image id=\"img_id3164994\" src=\"starmath/res/fu21519.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3164994\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3164994\" src=\"starmath/res/fu21519.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3164994\">ምልክት</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8775,7 +8773,7 @@ msgctxt ""
"par_id3151944\n"
"help.text"
msgid "<image id=\"img_id3151950\" src=\"starmath/res/fu21512.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151950\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151950\" src=\"starmath/res/fu21512.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151950\">ምልክት</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8792,7 +8790,7 @@ msgctxt ""
"par_id3165871\n"
"help.text"
msgid "<image id=\"img_id3165877\" src=\"starmath/res/fu21516.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165877\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3165877\" src=\"starmath/res/fu21516.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165877\">ምልክት</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8809,7 +8807,7 @@ msgctxt ""
"par_id3157074\n"
"help.text"
msgid "<image id=\"img_id3157080\" src=\"starmath/res/fu21507.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3157080\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3157080\" src=\"starmath/res/fu21507.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3157080\">ምልክት</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8894,7 +8892,7 @@ msgctxt ""
"par_id3165282\n"
"help.text"
msgid "<image id=\"img_id3165288\" src=\"starmath/res/fu21504.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165288\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3165288\" src=\"starmath/res/fu21504.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3165288\">ምልክት</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -8911,7 +8909,7 @@ msgctxt ""
"par_id3151502\n"
"help.text"
msgid "<image id=\"img_id3151509\" src=\"starmath/res/fu21509.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151509\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151509\" src=\"starmath/res/fu21509.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151509\">ምልክት</alt></image>"
#: 03091504.xhp
msgctxt ""
@@ -9140,7 +9138,7 @@ msgctxt ""
"par_id3144936\n"
"help.text"
msgid "<image id=\"img_id3144943\" src=\"starmath/res/fo21606.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144943\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3144943\" src=\"starmath/res/fo21606.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144943\">ምልክት</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -9157,7 +9155,7 @@ msgctxt ""
"par_id3144789\n"
"help.text"
msgid "<image id=\"img_id3144796\" src=\"starmath/res/fo21605.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144796\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3144796\" src=\"starmath/res/fo21605.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144796\">ምልክት</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -9252,7 +9250,7 @@ msgctxt ""
"par_id3144387\n"
"help.text"
msgid "<image id=\"img_id3144394\" src=\"starmath/res/fo21603.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144394\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3144394\" src=\"starmath/res/fo21603.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3144394\">ምልክት</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -9269,7 +9267,7 @@ msgctxt ""
"par_id3144240\n"
"help.text"
msgid "<image id=\"img_id3144247\" src=\"starmath/res/fo21602.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3144247\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3144247\" src=\"starmath/res/fo21602.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3144247\">ምልክት</alt></image>"
#: 03091505.xhp
msgctxt ""
@@ -9370,7 +9368,7 @@ msgctxt ""
"par_id3167709\n"
"help.text"
msgid "<image id=\"img_id3167716\" src=\"starmath/res/at21701.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3167716\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3167716\" src=\"starmath/res/at21701.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3167716\">ምልክት</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -9387,7 +9385,7 @@ msgctxt ""
"par_id3159771\n"
"help.text"
msgid "<image id=\"img_id3159778\" src=\"starmath/res/at21705.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3159778\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159778\" src=\"starmath/res/at21705.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3159778\">ምልክት</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -9489,7 +9487,7 @@ msgctxt ""
"par_id3161104\n"
"help.text"
msgid "<image id=\"img_id3161111\" src=\"starmath/res/at21712.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3161111\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3161111\" src=\"starmath/res/at21712.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3161111\">ምልክት</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -9506,7 +9504,7 @@ msgctxt ""
"par_id3160512\n"
"help.text"
msgid "<image id=\"img_id3160519\" src=\"starmath/res/at21711.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160519\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3160519\" src=\"starmath/res/at21711.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160519\">ምልክት</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -9626,7 +9624,7 @@ msgctxt ""
"par_id3160956\n"
"help.text"
msgid "<image id=\"img_id3160962\" src=\"starmath/res/at21715.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160962\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3160962\" src=\"starmath/res/at21715.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160962\">ምልክት</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -9711,7 +9709,7 @@ msgctxt ""
"par_id3160364\n"
"help.text"
msgid "<image id=\"img_id3160370\" src=\"starmath/res/at21722.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160370\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3160370\" src=\"starmath/res/at21722.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160370\">ምልክት</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -9728,7 +9726,7 @@ msgctxt ""
"par_id3160215\n"
"help.text"
msgid "<image id=\"img_id3160222\" src=\"starmath/res/at21723.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160222\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3160222\" src=\"starmath/res/at21723.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3160222\">ምልክት</alt></image>"
#: 03091506.xhp
msgctxt ""
@@ -9982,7 +9980,7 @@ msgctxt ""
"par_id3162922\n"
"help.text"
msgid "<image id=\"img_id3178464\" src=\"starmath/res/mi22014.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3178464\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3178464\" src=\"starmath/res/mi22014.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3178464\">ምልክት</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -10092,7 +10090,7 @@ msgctxt ""
"par_id3162332\n"
"help.text"
msgid "<image id=\"img_id3162339\" src=\"starmath/res/mi22006.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3162339\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3162339\" src=\"starmath/res/mi22006.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3162339\">ምልክት</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -10126,7 +10124,7 @@ msgctxt ""
"par_id3179342\n"
"help.text"
msgid "<image id=\"img_id3179349\" src=\"starmath/res/mi22017.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179349\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3179349\" src=\"starmath/res/mi22017.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3179349\">ምልክት</alt></image>"
#: 03091507.xhp
msgctxt ""
@@ -10244,7 +10242,7 @@ msgctxt ""
"par_id3180930\n"
"help.text"
msgid "<image id=\"img_id3180936\" src=\"starmath/res/al21802.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3180936\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3180936\" src=\"starmath/res/al21802.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3180936\">ምልክት</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -10363,7 +10361,7 @@ msgctxt ""
"par_id3181973\n"
"help.text"
msgid "<image id=\"img_id3181980\" src=\"starmath/res/al21808.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3181980\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3181980\" src=\"starmath/res/al21808.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3181980\">ምልክት</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -10380,7 +10378,7 @@ msgctxt ""
"par_id3182083\n"
"help.text"
msgid "<image id=\"img_id3182090\" src=\"starmath/res/al21809.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3182090\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182090\" src=\"starmath/res/al21809.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3182090\">ምልክት</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -10465,7 +10463,7 @@ msgctxt ""
"par_id3182702\n"
"help.text"
msgid "<image id=\"img_id3182709\" src=\"starmath/res/al21814.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3182709\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182709\" src=\"starmath/res/al21814.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3182709\">ምልክት</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -10482,7 +10480,7 @@ msgctxt ""
"par_id3182825\n"
"help.text"
msgid "<image id=\"img_id3182832\" src=\"starmath/res/al21811.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3182832\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182832\" src=\"starmath/res/al21811.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3182832\">ምልክት</alt></image>"
#: 03091508.xhp
msgctxt ""
@@ -10714,7 +10712,7 @@ msgctxt ""
"par_id3184418\n"
"help.text"
msgid "<image id=\"img_id3184425\" src=\"starmath/res/co21916.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3184425\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3184425\" src=\"starmath/res/co21916.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3184425\">ምልክት</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10807,7 +10805,7 @@ msgctxt ""
"par_id3185119\n"
"help.text"
msgid "<image id=\"img_id3185126\" src=\"starmath/res/co21912.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185126\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185126\" src=\"starmath/res/co21912.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3185126\">ምልክት</alt></image>"
#: 03091509.xhp
msgctxt ""
@@ -10909,7 +10907,7 @@ msgctxt ""
"285\n"
"help.text"
msgid "Align left"
-msgstr ""
+msgstr "በ ግራ ማሰለፊያ"
#: 03091509.xhp
msgctxt ""
@@ -10977,7 +10975,7 @@ msgctxt ""
"297\n"
"help.text"
msgid "Wide space/gap"
-msgstr ""
+msgstr "ሰፊ ቦታ/ክፍተት"
#: 03091509.xhp
msgctxt ""
@@ -10993,7 +10991,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Other Symbols"
-msgstr ""
+msgstr "ሌሎች ምልክቶች"
#: 03091600.xhp
msgctxt ""
@@ -11010,7 +11008,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/smath/01/03091600.xhp\" name=\"Other Symbols\">Other Symbols</link>"
-msgstr ""
+msgstr "<link href=\"text/smath/01/03091600.xhp\" name=\"Other Symbols\">ሌሎች ምልክቶች</link>"
#: 03091600.xhp
msgctxt ""
@@ -11028,7 +11026,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Symbols in detail"
-msgstr ""
+msgstr "ምልክቶች በ ዝርዝር"
#: 03091600.xhp
msgctxt ""
@@ -11140,7 +11138,7 @@ msgctxt ""
"par_idA3155330\n"
"help.text"
msgid "<image id=\"img_idA3155336\" src=\"starmath/res/mi21618.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_idA3155336\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_idA3155336\" src=\"starmath/res/mi21618.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_idA3155336\">ምልክት</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -11244,7 +11242,7 @@ msgctxt ""
"par_id3150651\n"
"help.text"
msgid "<image id=\"img_id3154285\" src=\"starmath/res/mi22003.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154285\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154285\" src=\"starmath/res/mi22003.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154285\">ምልክት</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -11322,7 +11320,7 @@ msgctxt ""
"par_id3155267\n"
"help.text"
msgid "<image id=\"img_id3155273\" src=\"starmath/res/mi22016.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155273\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155273\" src=\"starmath/res/mi22016.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155273\">ምልክት</alt></image>"
#: 03091600.xhp
msgctxt ""
@@ -11744,7 +11742,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "Serif"
-msgstr ""
+msgstr "Serif"
#: 05010000.xhp
msgctxt ""
@@ -11762,7 +11760,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "Sans"
-msgstr ""
+msgstr "Sans"
#: 05010000.xhp
msgctxt ""
@@ -11869,7 +11867,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "<ahelp hid=\"STARMATH_COMBOBOX_RID_FONTDIALOG_1\" visibility=\"visible\">Select a font from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"STARMATH_COMBOBOX_RID_FONTDIALOG_1\" visibility=\"visible\">ፊደል ከ ዝርዝር ውስጥ ይምረጡ</ahelp>"
#: 05010100.xhp
msgctxt ""
@@ -12648,7 +12646,7 @@ msgctxt ""
"53\n"
"help.text"
msgid "Primary height"
-msgstr ""
+msgstr "መሰረታዊ ቁመት"
#: 05030000.xhp
msgctxt ""
@@ -12666,7 +12664,7 @@ msgctxt ""
"55\n"
"help.text"
msgid "Minimum spacing"
-msgstr ""
+msgstr "ዝቅተኛው ክፍተት"
#: 05030000.xhp
msgctxt ""
@@ -13207,7 +13205,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "Modifying the Name of a Symbol"
-msgstr ""
+msgstr "የ ምልክቱን ስም ማሻሻያ"
#: 06010100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/04.po b/source/am/helpcontent2/source/text/smath/04.po
index 2ec38683e4b..c714e039e06 100644
--- a/source/am/helpcontent2/source/text/smath/04.po
+++ b/source/am/helpcontent2/source/text/smath/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-28 00:25+0000\n"
+"PO-Revision-Date: 2013-07-02 15:05+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372379129.0\n"
+"X-POOTLE-MTIME: 1372777547.0\n"
#: 01020000.xhp
msgctxt ""
@@ -210,7 +210,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "Selects a category (within the category section) or inserts a function in the <emph>Commands</emph> window (within the function section)."
-msgstr ""
+msgstr "ምድብ ይምረጡ (በ ምድብ ክፍል ውስጥ) ወይንም ተግባር ያስገቡ በ <emph>ትእዛዝ</emph> መስኮት (በ ተግባር ክፍል ውስጥ)."
#: 01020000.xhp
msgctxt ""
@@ -228,7 +228,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "Jump from the first category item to the first function of the category."
-msgstr ""
+msgstr "መዝለያ ከ መጀመሪያው ምድብ እቃ ወደ መጀመሪያው ምድብ ተግባር"
#: 01020000.xhp
msgctxt ""
@@ -246,4 +246,4 @@ msgctxt ""
"30\n"
"help.text"
msgid "Jump from the last category item to the last function of the category."
-msgstr ""
+msgstr "መዝለያ ከ መጨረሻው ምድብ እቃ ወደ መጨረሻው ምድብ ተግባር"
diff --git a/source/am/helpcontent2/source/text/smath/guide.po b/source/am/helpcontent2/source/text/smath/guide.po
index 240b7829aeb..3323a854058 100644
--- a/source/am/helpcontent2/source/text/smath/guide.po
+++ b/source/am/helpcontent2/source/text/smath/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 20:12+0000\n"
+"PO-Revision-Date: 2013-07-01 22:19+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372536752.0\n"
+"X-POOTLE-MTIME: 1372717184.0\n"
#: align.xhp
msgctxt ""
@@ -127,7 +127,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "Can default formats in $[officename] Math be modified?"
-msgstr ""
+msgstr "ነባር አቀራረብ በ $[officename] ሂሳብ ውስጥ ማሻሻል ይቻላል?"
#: attributes.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Shortcuts ($[officename] Math Accessibility)"
-msgstr ""
+msgstr "አቋራጮች በ ($[officename] ሂሳብ የሚደረስባቸው)"
#: keyboard.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"bm_id3149018\n"
"help.text"
msgid "<bookmark_value>accessibility; $[officename] Math shortcuts</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የሚደረስባቸው በ; $[officename] ሂሳብ አቋራጮች</bookmark_value>"
#: keyboard.xhp
msgctxt ""
@@ -335,7 +335,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<variable id=\"keyboard\"><link href=\"text/smath/guide/keyboard.xhp\" name=\"Shortcuts ($[officename] Math Accessibility)\">Shortcuts ($[officename] Math Accessibility)</link></variable>"
-msgstr ""
+msgstr "<variable id=\"keyboard\"><link href=\"text/smath/guide/keyboard.xhp\" name=\"Shortcuts ($[officename] Math Accessibility)\">አቋራጮች በ ($[officename] ሂሳብ የሚደረስባቸው)</link></variable>"
#: keyboard.xhp
msgctxt ""
@@ -353,7 +353,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "Inserting a Formula Directly"
-msgstr ""
+msgstr "Formula በቀጥታ ማስገቢያ"
#: keyboard.xhp
msgctxt ""
@@ -555,7 +555,7 @@ msgctxt ""
"par_id4731894\n"
"help.text"
msgid "n"
-msgstr ""
+msgstr "n"
#: limits.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter.po b/source/am/helpcontent2/source/text/swriter.po
index f9d9bbef84c..bb11d972af2 100644
--- a/source/am/helpcontent2/source/text/swriter.po
+++ b/source/am/helpcontent2/source/text/swriter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-30 00:15+0000\n"
+"PO-Revision-Date: 2013-07-14 19:50+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372551309.0\n"
+"X-POOTLE-MTIME: 1373831412.0\n"
#: main0000.xhp
msgctxt ""
@@ -707,7 +707,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:WindowList\" visibility=\"visible\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:WindowList\" visibility=\"visible\">የ ያዛቸው ትእዛዞች ለ ማዘጋጃ እና የ ሰንድ መስኮቶችን ለማሳያ ነው</ahelp>"
#: main0110.xhp
msgctxt ""
@@ -1043,7 +1043,7 @@ msgctxt ""
"par_idN1072D\n"
"help.text"
msgid "<ahelp hid=\"20520\">Repeats the table headers on subsequent pages if the table spans one or more pages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"20520\">የ ሰንጠረዥ ራስጌ መድገሚያ ተራውን ጠብቆ ለሚመጣ ገጽ የ ሰንጠረዥ እርቀቱን ጠብቆ ለ እንድ ወይንም ተጨማሪ ገጾች</ahelp>"
#: main0110.xhp
msgctxt ""
@@ -1139,7 +1139,7 @@ msgctxt ""
"par_idN107CA\n"
"help.text"
msgid "Shows or hides the boundaries around table cells. The boundaries are only visible on screen and are not printed."
-msgstr ""
+msgstr "ማሳያ ወይንም መደበቂያ ድንበሮችን በ ሰንጠረዥ ክፍሎች ዙሪያ፡ ድንበሮቹ የሚታዩት በመመልከቻው ላይ ብቻ ነው፡ በሚታተም ጊዜ አይታይም"
#: main0110.xhp
msgctxt ""
@@ -1334,7 +1334,7 @@ msgctxt ""
"par_id3147756\n"
"help.text"
msgid "<ahelp hid=\"HID_GRAFIK_TOOLBOX\">The <emph>Picture</emph> Bar contains functions for formatting and positioning selected bitmap graphics.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_GRAFIK_TOOLBOX\">የ <emph>ስእል</emph> መደርደሪያ የ ያዛቸውተግባሮች ለ አቀራረብ እና የተመረጡትን bitmap ንድፎች ቦታ ለመመደብ ነው</ahelp>"
#: main0203.xhp
msgctxt ""
@@ -1613,7 +1613,7 @@ msgctxt ""
"par_id8796349\n"
"help.text"
msgid "<ahelp hid=\".\">Drag the Zoom slider to the left to show more pages, drag to the right to zoom into a page and show a smaller area of the page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ይጎትቱ ተንሸራታች ማሳያውን ወደ ግራ በኩል ተጨማሪ ገጽ ለማየት፡ ይጎትቱ ወደ ቀኝ አንድ ገጽ ለማየት</ahelp>"
#: main0210.xhp
msgctxt ""
@@ -1700,7 +1700,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Formula</emph> Bar allows you to create and insert calculations into a text document.</ahelp> To activate the <emph>Formula</emph> Bar, press F2."
-msgstr ""
+msgstr "<ahelp hid=\".\">የ <emph>Formula</emph> መደርደሪያ የሚያስችለው በ ሰነድ ጽሁፍ ውስጥ ስሌቶችን ለ መፍጠር እና ለማስገባት ነው</ahelp> ለ ማስነሳት <emph>Formula</emph> መደርደሪያ ይጫኑ F2."
#: main0215.xhp
msgctxt ""
@@ -1967,7 +1967,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "Here you can define the indents, spacing, alignment and line spacing for the paragraph currently selected."
-msgstr ""
+msgstr "እዚህ ማስረጊያ፡ ክፍተት፡ ማሰለፊያ እና የመስመር ክፍተት አሁን ለ ተመረጠው አንቀጽ መግለጽ ይችላሉ"
#: main0503.xhp
msgctxt ""
@@ -2101,7 +2101,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "The $[officename] Writer <link href=\"text/shared/02/01140000.xhp\" name=\"drawing tool\">drawing tool</link> lets you create drawings, graphics, legends, and other types of drawings directly in text documents."
-msgstr ""
+msgstr "የ $[officename] መጻፊያ <link href=\"text/shared/02/01140000.xhp\" name=\"drawing tool\">መሳያ መሳሪያዎች</link> እንደ ስእሎች፡ ንድፎች፡ መግለጫዎች እና ሌሎች አይነት ስእሎች በ ቀጥታ ወደ ጽሁፍ ሰነድ ውስጥ መፍጠር ያስችሎታል"
#: main0503.xhp
msgctxt ""
@@ -2119,7 +2119,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "You can insert pictures with <link href=\"text/shared/00/00000020.xhp\" name=\"different formats\">different formats</link> into a text document, including graphics with a JPG or GIF format. In addition, the <link href=\"text/shared/01/gallery.xhp\" name=\"Gallery\">Gallery</link> provides a collection of clipart graphics, and the <link href=\"text/shared/guide/fontwork.xhp\">Fontwork Gallery</link> creates stunning font effects."
-msgstr "ስእል ማስገባት ይችላሉ በ <link href=\"text/shared/00/00000020.xhp\" name=\"different formats\">ተለያየ አቀራረብ</link>ወደ ጽሁፍ ሰነድ፡ እንዲሁም ንድፎችን እንደ JPG ወይንም GIF አቀራረብ ፡ በተጨማሪም በ<link href=\"text/shared/01/gallery.xhp\" name=\"Gallery\">አዳራሽ</link> የተለያዩ የ ቁራጭ ስእሎች ስብስብ ንድፍ እና <link href=\"text/shared/guide/fontwork.xhp\">የፊደል ስራ አዳራሽ </link> አስደናቂ የፊደል ስራ ውጤቶች ይፈጥራል"
+msgstr "ስእል ማስገባት ይችላሉ በ <link href=\"text/shared/00/00000020.xhp\" name=\"different formats\">ተለያየ አቀራረብ</link> ወደ ጽሁፍ ሰነድ፡ እንዲሁም ንድፎችን እንደ JPG ወይንም GIF አቀራረብ፡ በተጨማሪም በ<link href=\"text/shared/01/gallery.xhp\" name=\"Gallery\">አዳራሽ</link> የተለያዩ የ ቁራጭ ስእሎች ስብስብ ንድፍ እና <link href=\"text/shared/guide/fontwork.xhp\">የፊደል ስራ አዳራሽ</link> አስደናቂ የፊደል ስራ ውጤቶች ይፈጥራል"
#: main0503.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index 9456ed80b2c..31732a37836 100644
--- a/source/am/helpcontent2/source/text/swriter/01.po
+++ b/source/am/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-06-13 17:25+0200\n"
-"PO-Revision-Date: 2013-06-29 23:35+0000\n"
+"PO-Revision-Date: 2013-07-14 18:09+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372548924.0\n"
+"X-POOTLE-MTIME: 1373825371.0\n"
#: 01120000.xhp
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "During printing, the database information replaces the corresponding database fields (placeholders). For more information about inserting database fields refer to the <link href=\"text/swriter/01/04090006.xhp\" name=\"Database\"><emph>Database</emph></link> tab page under <emph>Insert - Fields - Other</emph>."
-msgstr ""
+msgstr "በሚታተም ጊዜ የ ዳታቤዝ መረጃ ይቀየራል በ ተመሳሳይ የ ዳታቤዝ ሜዳዎች (ቦታ ያዢዎች) በ በለጠ ለ መረዳት ስለ ዳታቤዝ ሜዳዎች ማስገቢያ ያመሳክሩ የ <link href=\"text/swriter/01/04090006.xhp\" name=\"Database\"><emph>ዳታቤዝ</emph></link> tab ገጽ ስር <emph>ማስገቢያ - ሜዳዎች - ሌላ</emph>."
#: 01150000.xhp
msgctxt ""
@@ -145,7 +145,7 @@ msgctxt ""
"par_id5631580\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Generate each file name from data contained in a database.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ዳታቤዝ ውስጥ ባለው ዳታ መሰረት የ እያንዳንዱን ፋይል ስም ማመንጫ</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -225,7 +225,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "<ahelp hid=\"SW:RADIOBUTTON:DLG_MAILMERGE:RB_FROM\">Specifies which records to include in your form letter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SW:RADIOBUTTON:DLG_MAILMERGE:RB_FROM\">በ ፎርም ደብዳቤ ውስጥ የትኛው መዝገብ እንደሚካተቱ መወሰኛ</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -243,7 +243,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<ahelp hid=\"SW:NUMERICFIELD:DLG_MAILMERGE:NF_FROM\">Specifies the number of the first record to be printed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SW:NUMERICFIELD:DLG_MAILMERGE:NF_FROM\">የ መጀመሪያው መዝገብ ምን ያህል ቁጥር እንደሚታተም መወሰኛ</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -261,7 +261,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "<ahelp hid=\"SW:NUMERICFIELD:DLG_MAILMERGE:NF_TO\">Specifies the number of the last record to be printed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SW:NUMERICFIELD:DLG_MAILMERGE:NF_TO\">የ መጨረሻው መዝገብ ምን ያህል ቁጥር እንደሚታተም መወሰኛ</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:SendAbstractToStarImpre\">Opens the current document as a $[officename] Impress presentation. The current document must contain at least one predefined heading paragraph style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SendAbstractToStarImpre\">የ አሁኑን ሰነድ መክፈቻ እንደ $[officename] ማስደነቂያ ማቅረቢያ፡ የ አሁኑ ሰነድ ቢያንስ አንድ በቅድሚያ የተወሰነ አንቀጽ ዘዴ ሊኖረው ይገባል</ahelp>"
#: 01160400.xhp
msgctxt ""
@@ -741,7 +741,7 @@ msgctxt ""
"64\n"
"help.text"
msgid "To jump to the next or previous item in a document, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> icon to open the Navigation toolbar, click the item category, and then click the up or down arrows."
-msgstr ""
+msgstr "ወደ ሚቀጥለው ወይንም ቀደም ወዳለው እቃ ለመዝለል ይጫኑ የ <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">መቃኛ</link> ምልክት የ መቃኛ እቃ መደርደሪያ ለመክፈት ይጫኑ የ እቃ ምድብ እና ከዛ ይጫኑ የ ወደ ላይ ወይንም ወደ ታች ቀስቶች"
#: 02110000.xhp
msgctxt ""
@@ -803,7 +803,7 @@ msgctxt ""
"70\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the <emph>Navigation</emph> toolbar, where you can quickly jump to the next or the previous item in the category that you select. Select the category, and then click the \"Previous\" and \"Next\" arrows.</ahelp> Opens the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> toolbar, where you can quickly jump to the next or the previous item in the category that you select. Select the category, and then click the \"Previous\" and \"Next\" arrows."
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">መክፈቻ የ <emph>መቃኛ</emph> እቃ መደርደሪያ በ መረጡት ምድብ ውስጥ በፍጥነት ወደሚቀጥለው ወይንም ቀደም ያለው እቃ የሚዘሉበት፡ ምድብ ይምረጡ እና ከዛ ይጫኑ የ \"ቀደም ያለው\" እና \"ወደሚቀጥለው\" ቀስቶች ይጫኑ</ahelp> መክፈቻ የ <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">መቃኛ</link> እቃ መደርደሪያ በ መረጡት ምድብ ውስጥ በፍጥነት ወደሚቀጥለው ወይንም ቀደም ያለው እቃ የሚዘሉበት፡ ምድብ ይምረጡ እና ከዛ ይጫኑ የ \"ቀደም ያለው\" እና \"ወደሚቀጥለው\" ቀስቶች ይጫኑ"
#: 02110000.xhp
msgctxt ""
@@ -979,7 +979,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<ahelp hid=\"HID_NAVI_TBX8\">Switches between the display of all categories in the Navigator and the selected category.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_NAVI_TBX8\">ሁሉንም ምድቦች በ መቃኛ ውስጥ ማሳያ እና በ ተመረጠው ምድብ መካከል መቀያየሪያ</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1128,7 +1128,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "<ahelp hid=\"HID_NAVI_TBX12\">Jumps between the footnote text and the footnote anchor.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_NAVI_TBX12\">በ ግርጌ ማስታወሻ ጽሁፍ እና በ ግርጌ ማስታወሻ ማቆሚያ መካከል መዝለያ</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1234,7 +1234,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "<ahelp hid=\"HID_NAVI_DRAG_COPY\">Inserts a copy of the selected item where you drag and drop in the current document. You cannot drag and drop copies of graphics, OLE objects, references and indexes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_NAVI_DRAG_COPY\">የ ተመረጠውን እቃ በ አሁኑ ሰነድ ውስጥ መጎተቻ እና መጣያ፡ እነዚህን መጎተት እና መጣል አይቻልም የ ንድፎችን ኮፒ፡ የ OLE እቃዎች፡ ማመሳከሪያዎች እና ማውጫዎችን</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1699,7 +1699,7 @@ msgctxt ""
"par_idN1080B\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the cursor to the previous object of the selected type.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">መጠቆሚያውን ቀደም ወዳለው እቃ ወደ ተመረጠው አይነት መውሰጃ</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1782,7 +1782,7 @@ msgctxt ""
"52\n"
"help.text"
msgid "You can also click the arrow next to the <emph>AutoText</emph> icon on the <emph>Insert</emph> bar, and then choose the AutoText that you want to insert."
-msgstr ""
+msgstr "መጫን ይችላሉ ቀስቱን ከ <emph>በራሱ ጽሁፍ</emph> ምልክት አጠገብ ያለውን ከ <emph>ማስገቢያ</emph> መደርደሪያ ላይ፡ እና ከዛ ይምረጡ በራሱ ጽሁፍ ማስገባት የሚፈልጉትን"
#: 02120000.xhp
msgctxt ""
@@ -2196,7 +2196,7 @@ msgctxt ""
"68\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/editcategories/rename\">Changes the name of the selected AutoText category to the name that you enter in the <emph>Name </emph>box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/editcategories/rename\">የ ተመረጠውን በራሱ አራሚ ምድብ ወደ አስገቡት ስም መቀየሪያ በ <emph>ስም </emph>ሳጥን ውስጥ</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -2241,7 +2241,7 @@ msgctxt ""
"61\n"
"help.text"
msgid "To add a new path to an AutoText directory, click the <emph>Path</emph> button in the <emph>AutoText </emph>dialog."
-msgstr ""
+msgstr "አዲስ መንገድ ለመጨመር ወደ በራሱ ጽሁፍ ዳይሬክቶሪ ይጫኑ የ <emph>መንገድ</emph> ቁልፍ ከ <emph>በራሱ ጽሁፍ </emph>ንግግር ውስጥ"
#: 02120000.xhp
msgctxt ""
@@ -2598,7 +2598,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "You can also double-click a field in your document to open the field for editing."
-msgstr ""
+msgstr "ይችላሉ ሁለት ጊዜ-መጫን ሜዳውን በ ሰነዱ ውስጥ ሜዳ ለማረም"
#: 02140000.xhp
msgctxt ""
@@ -2643,7 +2643,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "Lists the type of field that you are editing."
-msgstr ""
+msgstr "የሚያርሙት የሜዳ አይነት ዝርዝር"
#: 02140000.xhp
msgctxt ""
@@ -2831,7 +2831,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "Macro name"
-msgstr ""
+msgstr "የ Macro ስም"
#: 02140000.xhp
msgctxt ""
@@ -2840,7 +2840,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "Displays the name of the macro assigned to the selected field."
-msgstr ""
+msgstr "ለ ተመረጠው ሜዳ የ ተመደበውን የ macro ስም ማሳያ"
#: 02140000.xhp
msgctxt ""
@@ -2858,7 +2858,7 @@ msgctxt ""
"33\n"
"help.text"
msgid "Displays the placeholder text of the selected field."
-msgstr ""
+msgstr "ለ ተመረጠው ሜዳ የ ጽሁፍ ቦታ ያዢ ማሳያ"
#: 02140000.xhp
msgctxt ""
@@ -2876,7 +2876,7 @@ msgctxt ""
"37\n"
"help.text"
msgid "Displays the text that is linked to a condition."
-msgstr ""
+msgstr "ከ ሁኔታው ጋር የተገናኘውን ጽሁፍ ማሳያ"
#: 02140000.xhp
msgctxt ""
@@ -2894,7 +2894,7 @@ msgctxt ""
"62\n"
"help.text"
msgid "Displays the formula of a formula field."
-msgstr ""
+msgstr "ለ formula ሜዳ formula ማሳያ"
#: 02140000.xhp
msgctxt ""
@@ -3062,7 +3062,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "Select the numbering type for the footnote or endnote."
-msgstr ""
+msgstr "ለ ግርጌ ማስታወሻ እና ለ መጨረሻ ማስታወሻ የ ቁጥር መስጫ አይነት መምረጫ"
#: 02150000.xhp
msgctxt ""
@@ -3266,7 +3266,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "To insert an index entry, select a word in the document, and then choose <link href=\"text/swriter/01/04120100.xhp\" name=\"Insert - Indexes and Tables - Entry\"><emph>Insert - Indexes and Tables - Entry</emph></link>."
-msgstr ""
+msgstr "ለ ማስገባት የ ማውጫ ማስገቢያ፡ ከ ሰነዱ ውስጥ ቃላት ይምረጡ እና ከዛ ይምረጡ <link href=\"text/swriter/01/04120100.xhp\" name=\"Insert - Indexes and Tables - Entry\"><emph>ማስገቢያ - ማውውጫዎች እና ሰንጠረዦች - ማስገቢያ</emph></link>."
#: 02160000.xhp
msgctxt ""
@@ -3665,7 +3665,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:Ruler\">Shows or hides the horizontal ruler, that you can use to adjust page margins, tab stops, indents, borders, table cells, and to arrange objects on the page.</ahelp> To show the vertical ruler, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer - View\">%PRODUCTNAME Writer - View</link></emph>, and then select the <emph>Vertical ruler</emph> check box in the <emph>Ruler</emph> area."
-msgstr ""
+msgstr "<ahelp hid=\".uno:Ruler\">የ አግድም ማስመሪያ ማሳያ ወይንም መደበቂያ፡ የሚጠቅመው የ ገጽ መስመሮችን ማስተካከያ፡ ማስረጊያ ማስቆሚያ፡ ማስረጊያዎች፡ ድንበሮች፡ የ ሰንጠረዥ ክፍሎች እና እቃዎችን ለ ማዘጋጃ በ ገጽ ላይ </ahelp> ለ ማሳየት በ ቁመት ማስመሪያ ይምረጡ <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer - View\">%PRODUCTNAME መጻፊያ - መመልከቻ</link></emph>, እና ከዛ ይምረጡ የ <emph>በቁመት ማስመሪያ</emph> ሳጥን ውስጥ ምልክት ያድርጉ <emph>ማስመሪያ</emph> ቦታ"
#: 03050000.xhp
msgctxt ""
@@ -3699,7 +3699,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ViewBounds\">Shows or hides the boundaries of the printable area of a page. The boundary lines are not printed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ViewBounds\">ማሳያ ወይንም መደበቂያ የሚታተመውን የ ገጹን ቦታ ድንበሮች፡ የ ድንበር መስመሮች አይታተሙም</ahelp>"
#: 03080000.xhp
msgctxt ""
@@ -3769,7 +3769,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "To change the default field display to field names instead of the field contents, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - View</emph>, and then select the<emph> Field codes </emph>checkbox in the <emph>Display</emph> area."
-msgstr ""
+msgstr "ለ መቀየር ነባር የ ሜዳ ማሳያ ወደ ሜዳ ስሞች በ ሜዳ ይዞታዎች ምትክ ይምረጡ <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - %PRODUCTNAME መጻፊያ - መመልከቻ</emph>, እና ከዛ ይምረጡ የ <emph> ሜዳ codes </emph>ሳጥን ውስጥ ምልክት ያድርጉ በ <emph>ማሳያ</emph> ቦታ"
#: 03090000.xhp
msgctxt ""
@@ -3962,7 +3962,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"umbruch\"><ahelp hid=\".uno:InsertBreak\">Inserts a manual line break, column break or a page break at the current cursor position.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"umbruch\"><ahelp hid=\".uno:InsertBreak\">ማስገቢያ በ እጅ የ መስመር መጨረሻ፡ የ አምድ መጨረሻ ወይንም የ ገጽ መጨረሻ መጠቆሚያው አሁን ባለበት ቦታ</ahelp></variable>"
#: 04010000.xhp
msgctxt ""
@@ -3980,7 +3980,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Select the type of break that you want to insert."
-msgstr ""
+msgstr "ማስገባት የሚፈልጉት መጨርሻ አይነት ይምረጡ"
#: 04010000.xhp
msgctxt ""
@@ -4007,7 +4007,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "You can also insert a line break by pressing Shift+Enter."
-msgstr ""
+msgstr "የ መስመር መጨረሻ ማስገባት ይችላሉ በ መጫን Shift+Enter."
#: 04010000.xhp
msgctxt ""
@@ -4115,7 +4115,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "To display manual breaks, choose <link href=\"text/swriter/01/03100000.xhp\" name=\"View - Nonprinting Characters\"><emph>View - Nonprinting Characters</emph></link>."
-msgstr ""
+msgstr "ለ ማሳየት በ እጅ መጨረሻ ይምረጡ<link href=\"text/swriter/01/03100000.xhp\" name=\"View - Nonprinting Characters\"><emph>መመልከቻ - ሊታተሙ የማይችሉ ባህሪዎ</emph></link>."
#: 04020000.xhp
msgctxt ""
@@ -4409,7 +4409,7 @@ msgctxt ""
"45\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/editsectiondialog/withpassword\">Protects the selected section with a password. The password must have a minimum of 5 characters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/editsectiondialog/withpassword\">የ ተመረጠውን ክፍል በ መግቢያ ቃል መጠበቂያ፡ የ መግቢያ ቃሉ ቢያንስ 5 ባህሪዎች መያዝ አለበት</ahelp>"
#: 04020100.xhp
msgctxt ""
@@ -4646,7 +4646,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "<variable id=\"endnoten\">The following applies to both footnotes and endnotes. </variable>"
-msgstr ""
+msgstr "<variable id=\"endnoten\">የሚቀጥለው መፈጸሚያ ለ ሁለቱም ነው ለ ግርጌ ማስታወሻ እና ለ መጨረሻ ማስታወሻ</variable>"
#: 04030000.xhp
msgctxt ""
@@ -4655,7 +4655,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "<variable id=\"endnotetext\">Footnotes are inserted at the end of a page, and endnotes are inserted at the end of a document. </variable>"
-msgstr ""
+msgstr "<variable id=\"endnotetext\">የ ግርጌ ማስታወሻ የሚገባው ከ ገጹ መጨረሻ ላይ ነው፡ እና የ መጨረሻ ማስታወሻ የሚገባው ከ ሰነዱ መጨረሻ ላይ ነው </variable>"
#: 04030000.xhp
msgctxt ""
@@ -4673,7 +4673,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "Select the type of numbering that you want to use for footnotes and endnotes."
-msgstr ""
+msgstr "ይምረጡ የ ቁጥር መስጫ አይነት ለ ግርጌ ማስታወሻ እና ለ መጨረሻ ማስታወሻ መጠቀም የሚፈልጉትን"
#: 04030000.xhp
msgctxt ""
@@ -4691,7 +4691,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "<variable id=\"bearbeitenautomatisch\"><ahelp hid=\"modules/swriter/ui/insertfootnote/automatic\">Automatically assigns consecutive numbers to the footnotes or endnotes that you insert.</ahelp> To change the settings for automatic numbering, choose <link href=\"text/swriter/01/06080000.xhp\" name=\"Tools - Footnotes\"><emph>Tools - Footnotes/Endnotes</emph></link>. </variable>"
-msgstr ""
+msgstr "<variable id=\"bearbeitenautomatisch\"><ahelp hid=\"modules/swriter/ui/insertfootnote/automatic\">ራሱ በራሱ ተከታታይ ቁጥር መስጫ ለሚያስገቡት የ ግርጌ ማስታወሻ እና የ መጨረሻ ማስታወሻ</ahelp> ለ መቀየር ራሱ በራሱ ቁጥር መስጫን ይምረጡ <link href=\"text/swriter/01/06080000.xhp\" name=\"Tools - Footnotes\"><emph>መሳሪያዎች - የ ግርጌ ማስታወሻ/የ መጨረሻ ማስታወሻ</emph></link>. </variable>"
#: 04030000.xhp
msgctxt ""
@@ -5124,7 +5124,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/captionoptions/separator\">Enter the character that you want to insert between the chapter number and the caption number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/captionoptions/separator\">የሚፈልጉትን ባህሪ ማስገቢያ በ ምእራፍ ቁጥሮች እና በ መግለጫ ቁጥሮች መካከል</ahelp>"
#: 04060100.xhp
msgctxt ""
@@ -5166,7 +5166,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/captionoptions/border_and_shadow\">Applies the border and shadow of the object to the caption frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/captionoptions/border_and_shadow\">ለ እቃው መግለጫ ክፈፍ የ ድንበር እና ጥላ መፈጸሚያ</ahelp>"
#: 04070000.xhp
msgctxt ""
@@ -5252,7 +5252,7 @@ msgctxt ""
"par_id396130\n"
"help.text"
msgid "Click into the envelope page to make it the current page."
-msgstr ""
+msgstr "ይጫኑ የ ፖስታ ገጽ የ አሁኑ ገጽ ለማድረግ"
#: 04070000.xhp
msgctxt ""
@@ -5276,7 +5276,7 @@ msgctxt ""
"par_id5187536\n"
"help.text"
msgid "Choose the \"Default\" page style from the submenu."
-msgstr ""
+msgstr "ይምረጡ የ \"ነባር\" ገጽ ዘዴ ከ ንዑስ ዝርዝር ውስጥ"
#: 04070000.xhp
msgctxt ""
@@ -5284,7 +5284,7 @@ msgctxt ""
"par_id6952726\n"
"help.text"
msgid "This removes the special \"Envelope\" page formatting."
-msgstr ""
+msgstr "ይህ ያስወግዳል የተለየ \"ፖስታ\" ገጽ አቀራረብ"
#: 04070000.xhp
msgctxt ""
@@ -5372,7 +5372,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<ahelp hid=\"SW:LISTBOX:TP_ENV_ENV:LB_DATABASE\" visibility=\"visible\">Select the database containing the address data that you want to insert.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SW:LISTBOX:TP_ENV_ENV:LB_DATABASE\" visibility=\"visible\">ማስገባት የሚፈልጉትን የ አድራሻ ዳታ የያዘውን ዳታቤዝ ይምረጡ</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -5390,7 +5390,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<ahelp hid=\"SW:LISTBOX:TP_ENV_ENV:LB_TABLE\" visibility=\"visible\">Select the database table containing the address data that you want to insert.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SW:LISTBOX:TP_ENV_ENV:LB_TABLE\" visibility=\"visible\">ማስገባት የሚፈልጉትን የ አድራሻ ዳታ የያዘውን የ ዳታቤዝ ሰንጠረዥ ይምረጡ</ahelp>"
#: 04070100.xhp
msgctxt ""
@@ -5955,7 +5955,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "<ahelp hid=\"SW:METRICFIELD:TP_ENV_PRT:FLD_RIGHT\">Enter the amount to shift the print area to the right.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SW:METRICFIELD:TP_ENV_PRT:FLD_RIGHT\">በ ምን ያህል መጠን ወደ ቀኝ ከ ማተሚያው ቦታ እንደሚቀየር ያስገቡ</ahelp>"
#: 04070300.xhp
msgctxt ""
@@ -5973,7 +5973,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "<ahelp hid=\"SW:METRICFIELD:TP_ENV_PRT:FLD_DOWN\">Enter the amount to shift the print area down.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SW:METRICFIELD:TP_ENV_PRT:FLD_DOWN\">በ ምን ያህል መጠን ወደ ታች ከ ማተሚያው ቦታ እንደሚቀየር ያስገቡ.</ahelp>"
#: 04070300.xhp
msgctxt ""
@@ -6096,7 +6096,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "For the HTML export and import of date and time fields, <link href=\"text/swriter/01/04090007.xhp#datumuhrzeit\" name=\"special $[officename] formats\">special $[officename] formats</link> are used."
-msgstr ""
+msgstr "ለ HTML መላኪያ እና ማምጫ የ ቀን እና ሰአት ሜዳዎች <link href=\"text/swriter/01/04090007.xhp#datumuhrzeit\" name=\"special $[officename] formats\">የተለየ $[officename] አቀራረብ</link> ተጠቅሟል"
#: 04090001.xhp
msgctxt ""
@@ -6186,7 +6186,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "Inserts the current date. You can insert the date as a fixed field - <item type=\"literal\">Date (fixed)</item> - that does not change, or as a dynamic field - <item type=\"literal\">Date</item> - that it is updated automatically. To manually update the <item type=\"literal\">Date</item> field, press F9."
-msgstr ""
+msgstr "የ አሁኑን ቀን ማስገቢያ፡ ቀን እንደ የተወሰነ ሜዳ ማስገባት ይችላሉ - <item type=\"literal\">ቀን (የተወሰነ)</item> - የማይቀያየር ወይንም እንደ dynamic ሜዳ - <item type=\"literal\">ቀን</item> - ራሱ በራሱ የሚሻሻል፡ በ እጅ ለማሻሻል የ <item type=\"literal\">ቀን</item> ሜዳ ይጫኑ F9."
#: 04090001.xhp
msgctxt ""
@@ -6222,7 +6222,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "Inserts the page number of the current, previous, or next page."
-msgstr ""
+msgstr "የ ገጽ ቁጥር ለ አሁኑ፡ ላለፈው ወይንም ለሚቀጥለው ገጽ ማስገቢያ"
#: 04090001.xhp
msgctxt ""
@@ -6240,7 +6240,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Inserts fields containing user data. You can change the user-data that is displayed by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User Data\">$[officename] - User Data</link></emph>."
-msgstr ""
+msgstr "የ ተጠቃሚ ዳታ ማስገቢያ ሜዳዎች፡ መቀየር ይችላሉ የተጠቃሚ-ዳታ የሚታየውን በመምረጥ <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች - ምርጫ</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User Data\">$[officename] - የተጠቃሚ ዳታ</link></emph>."
#: 04090001.xhp
msgctxt ""
@@ -6447,7 +6447,7 @@ msgctxt ""
"54\n"
"help.text"
msgid "If you want to change the actual page number and not the displayed number, do not use the <emph>Offset</emph> value. To change page numbers, read the <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Page Numbers\"><emph>Page Numbers</emph></link> guide."
-msgstr ""
+msgstr "መቀየር ከፈለጉ ትክክለኛውን የ ገጽ ቁጥር እና የሚታየውን ቁጥር ሳይሆን አይጠቀሙ የ <emph>ማካካሻ</emph> ዋጋ፡ የ ገጽቁጥሮች ለ መቀየር ያንብቡ የ <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Page Numbers\"><emph>ገጽ ቁጥሮች</emph></link> መምሪያ"
#: 04090001.xhp
msgctxt ""
@@ -6474,7 +6474,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "<variable id=\"datumuhrzeitformat\">When you click \"Additional formats\", the <link href=\"text/shared/01/05020300.xhp\" name=\"Number Format\"><emph>Number Format</emph></link> dialog opens, where you can define a custom format. </variable>"
-msgstr ""
+msgstr "<variable id=\"datumuhrzeitformat\">በሚጫኑ ጊዜ \"ተጨማሪ አቀራረብ\" የ <link href=\"text/shared/01/05020300.xhp\" name=\"Number Format\"><emph>ቁጥር አቀራረብ</emph></link> ንግግር ይከፈታል እዚያ የ custom አቀራረብ መግለጽ ይችላሉ </variable>"
#: 04090001.xhp
msgctxt ""
@@ -6555,7 +6555,7 @@ msgctxt ""
"62\n"
"help.text"
msgid "The format only contains the reference number"
-msgstr ""
+msgstr "አቀራረቡ የ ያዘው የማመሳከሪያ ቁጥር ነው"
#: 04090001.xhp
msgctxt ""
@@ -6872,7 +6872,7 @@ msgctxt ""
"par_id7729728\n"
"help.text"
msgid "To quickly insert a field from the list, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and double-click the field."
-msgstr ""
+msgstr "ከ ዝርዝር ውስጥ ሜዳዎች በፍጥነት ለማስገባት ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> እና ሁለት ጊዜ-ይጫኑ ሜዳውን"
#: 04090002.xhp
msgctxt ""
@@ -6880,7 +6880,7 @@ msgctxt ""
"par_id2171086\n"
"help.text"
msgid "In the <emph>Insert reference to</emph> list, click the format that you want to use."
-msgstr ""
+msgstr "ከ <emph>ማመሳከሪያ ማስገቢያ ወደ</emph> ዝርዝር, ይጫኑ መጠቀም የሚፈልጉትን አቀራረብ"
#: 04090002.xhp
msgctxt ""
@@ -6898,7 +6898,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "<ahelp hid=\"SW:LISTBOX:TP_FLD_REF:LB_REFFORMAT\">Select the format that you want to use for the selected reference field.</ahelp> The following formats are available:"
-msgstr ""
+msgstr "<ahelp hid=\"SW:LISTBOX:TP_FLD_REF:LB_REFFORMAT\">ለተመረጠው የ ማመሳከሪያ ሜዳ አቀራረብ መጠቀም የሚፈልጉትን ይምረጡ</ahelp> የሚቀጥሉት አቀራረቦች ዝግጁ ናቸው:"
#: 04090002.xhp
msgctxt ""
@@ -7504,7 +7504,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "Macro name"
-msgstr ""
+msgstr "የ Macro ስም"
#: 04090003.xhp
msgctxt ""
@@ -7585,7 +7585,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "Enter a value for the selected field."
-msgstr ""
+msgstr "ለ ተመረጠው ሜዳ ዋጋ ያስገቡ"
#: 04090003.xhp
msgctxt ""
@@ -7612,7 +7612,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "The following controls are displayed for <emph>Input list</emph> fields:"
-msgstr ""
+msgstr "የሚቀጥሉት መቆጣጠሪያዎች ይታያሉ ለ <emph>ማስገቢያ ዝርዝር</emph> ሜዳዎች:"
#: 04090003.xhp
msgctxt ""
@@ -7880,7 +7880,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Inserts the name of the author, and the date, or the time of the last save."
-msgstr ""
+msgstr "ማስገቢያ የ ደራሲውን ስም እና ቀን ወይንም መጨረሻ የተቀመጠበትን ሰአት"
#: 04090004.xhp
msgctxt ""
@@ -7916,7 +7916,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "Inserts the comments as entered in the <emph>Description</emph> tab page of the <emph>Properties</emph> dialog."
-msgstr ""
+msgstr "ማስገቢያ አስተያየቶች እንደገቡ ከ <emph>መግለጫ</emph> tab ገጽ የ <emph>ባህሪዎች</emph> ንግግር"
#: 04090004.xhp
msgctxt ""
@@ -7934,7 +7934,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "Inserts the version number of the current document."
-msgstr ""
+msgstr "የ አሁኑን ሰነድ እትም ቁጥር ማስገቢያ"
#: 04090004.xhp
msgctxt ""
@@ -7952,7 +7952,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "Inserts the name of the author, and the date, or the time when the document was created."
-msgstr ""
+msgstr "ማስገቢያ የ ደራሲውን ስም እና ቀን ወይንም ሰንዱ የተፈጠረበትን ሰአት"
#: 04090004.xhp
msgctxt ""
@@ -7970,7 +7970,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Inserts the contents of the info fields found on the <emph>User Defined </emph>tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>File - Properties</emph></link> dialog."
-msgstr ""
+msgstr "ማስገቢያ የ መረጃ ሜዳዎች ይዞታ የተገኘውን በ <emph>ተጠቃሚ የሚገለጽ</emph>tab የ <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>ፋይል - ባህሪዎች</emph></link> ንግግር"
#: 04090004.xhp
msgctxt ""
@@ -8110,7 +8110,7 @@ msgctxt ""
"bm_id8526261\n"
"help.text"
msgid "<bookmark_value>user-defined fields, restriction</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>በተጠቃሚ-የሚገለጽ ሜዳዎች የሚከለክል</bookmark_value>"
#: 04090005.xhp
msgctxt ""
@@ -8137,7 +8137,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "User-defined fields are only available in the current document."
-msgstr ""
+msgstr "በ ተጠቃሚ-የሚወሰኑ ሜዳዎች ዝግጁ የሚሆኑት ለ አሁኑ ሰነድ ብቻ ነው"
#: 04090005.xhp
msgctxt ""
@@ -8226,7 +8226,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "Insert Formula"
-msgstr ""
+msgstr "Formula ማስገቢያ"
#: 04090005.xhp
msgctxt ""
@@ -8289,7 +8289,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Inserts automatic numbering for tables, graphics, or text frames."
-msgstr ""
+msgstr "ራሱ በራሱ ቁጥር ማስገቢያ ለ ሰንጠረዦች፡ ንድፎች ወይንም ለጽሁፍ ክፈፎች"
#: 04090005.xhp
msgctxt ""
@@ -8409,7 +8409,7 @@ msgctxt ""
"par_id3326822\n"
"help.text"
msgid "To quickly insert a field from the list, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and double-click the field."
-msgstr ""
+msgstr "በፍጥነት ሜዳዎች ለማስገባት፡ ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline> እና ሁለት ጊዜ-ይጫኑ ሜዳውን"
#: 04090005.xhp
msgctxt ""
@@ -20715,7 +20715,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"hoehetext\"><ahelp hid=\".uno:SetRowHeight\">Changes the height of the selected row(s).</ahelp></variable>"
-msgstr "<variable id=\"hoehetext\"><ahelphid=\".uno:SetRowHeight\">መቀየሪያ የተመረጠውን እርዝመት ye ረድፍ(ፎች)</ahelp></variable>"
+msgstr "<variable id=\"hoehetext\"><ahelphid=\".uno:SetRowHeight\">መቀየሪያ የተመረጠውን እርዝመት የ ረድፍ(ፎች)</ahelp></variable>"
#: 05110100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/02.po b/source/am/helpcontent2/source/text/swriter/02.po
index e62189d9862..9344269f242 100644
--- a/source/am/helpcontent2/source/text/swriter/02.po
+++ b/source/am/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-06-13 17:25+0200\n"
-"PO-Revision-Date: 2013-06-29 23:32+0000\n"
+"PO-Revision-Date: 2013-07-13 15:13+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372548779.0\n"
+"X-POOTLE-MTIME: 1373728423.0\n"
#: 02110000.xhp
msgctxt ""
@@ -296,7 +296,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "<ahelp hid=\".uno:TableModeFix\" visibility=\"visible\">If this mode is active, changes to a line and/or column affect only the neighboring lines or columns in question.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TableModeFix\" visibility=\"visible\">ዘዴው ንቁ ከሆነ ለውጡ ወደ መስመር እና/ወይንም አምድ ተጽእኖ የሚኖረው በ ጎረቤቱ መስመሮች ላይ ወይንም በ ጥያቄ ውስጥ ላለው አምዶች ነው</ahelp>"
#: 04220000.xhp
msgctxt ""
@@ -425,7 +425,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:AutoSum\">Activates the sum function. Note that the cursor must be in the cell where you want the sum to appear.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:AutoSum\">የ ድምር ተግባሮ ማስነሻ፡ ማስታወሻ መጠቆሚያው ድምሩን በሚፈልጉበት ክፍል ውስጥ መሆን አለበት</ahelp>"
#: 04250000.xhp
msgctxt ""
@@ -443,7 +443,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Click <emph>Apply</emph> to accept the sum formula as it appears in the entry line."
-msgstr ""
+msgstr "ይጫኑ <emph>መፈጸሚያ</emph> የ ድምሩን formula ለመቀበል በ ማስገቢያ መስመር እንደቀረበው"
#: 04250000.xhp
msgctxt ""
@@ -529,7 +529,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:DecrementSubLevels\">Shifts paragraphs with subpoints down one level.</ahelp> This is only visible when the cursor is positioned within numbered or bulleted text."
-msgstr ""
+msgstr "<ahelp hid=\".uno:DecrementSubLevels\">አንቀጹን መቀየሪያ በ ንዑስ ነጥቦች ወደ ታች አንድ ደረጃ</ahelp> ይህ የሚታየው መጠቆሚያው ቁጥር የተሰጠው ወይንም ነጥብ ለ ተሰጠው ጽሁፍ ብቻ ነው"
#: 06070000.xhp
msgctxt ""
@@ -572,7 +572,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:IncrementSubLevels\">Shifts paragraphs with subpoints up one numbering level.</ahelp> This is only visible when the cursor is positioned within numbered or bulleted text."
-msgstr ""
+msgstr "<ahelp hid=\".uno:IncrementSubLevels\">አንቀጹን መቀየሪያ በ ንዑስ ነጥቦች ወደ ላይ በ ቁጥር አንድ ደረጃ</ahelp> ይህ የሚታየው መጠቆሚያው ቁጥር የተሰጠው ወይንም ነጥብ ለ ተሰጠው ጽሁፍ ብቻ ነው"
#: 06080000.xhp
msgctxt ""
@@ -658,7 +658,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:MoveUpSubItems\" visibility=\"visible\">Moves a paragraph with subpoints to above the previous paragraph.</ahelp> This is only visible when the cursor is positioned within numbered or bulleted text."
-msgstr ""
+msgstr "<ahelp hid=\".uno:MoveUpSubItems\" visibility=\"visible\">አንቀጹን ማንቀሳቀሻ በ ንዑስ ነጥቦች ወደ ላይ ቀደም ካለው አንቀጽ በፊት</ahelp> ይህ የሚታየው መጠቆሚያው ቁጥር የተሰጠው ወይንም ነጥብ ለ ተሰጠው ጽሁፍ ብቻ ነው"
#: 06120000.xhp
msgctxt ""
@@ -701,7 +701,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:MoveDownSubItems\" visibility=\"visible\">Moves a paragraph with all its subpoints below the following paragraph.</ahelp> This is only visible when the cursor is positioned within numbered or bulleted text."
-msgstr ""
+msgstr "<ahelp hid=\".uno:MoveDownSubItems\" visibility=\"visible\">አንቀጹን ማንቀሳቀሻ በ ንዑስ ነጥቦች ወደ ታች ቀጥሎ ካለው ካለው አንቀጽ በኋላ</ahelp> ይህ የሚታየው መጠቆሚያው ቁጥር የተሰጠው ወይንም ነጥብ ለ ተሰጠው ጽሁፍ ብቻ ነው"
#: 06130000.xhp
msgctxt ""
@@ -744,7 +744,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">Restarts the text numbering.</ahelp> This is only visible when the cursor is positioned within numbered or bulleted text."
-msgstr ""
+msgstr "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">የ ጽሁፍ ቁጥር መስጫ እንደገና ማስጀመሪያ</ahelp> ይህ የሚታየው መጠቆሚያውን በ ቁጥር መስጫው ወይንም ነጥብ የተደረገባቸው ጽሁፍ ላይ ሲያደርጉ ብቻ ነው"
#: 06140000.xhp
msgctxt ""
@@ -1005,7 +1005,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowTwoPages\" visibility=\"visible\">Displays two pages in the Page Preview window.</ahelp> Uneven numbers will always appear on the right side, even numbers on the left."
-msgstr ""
+msgstr "<ahelp hid=\".uno:ShowTwoPages\" visibility=\"visible\">ሁለት ገጾች ማሳያ በ ገጽ ቅድመ እይታ መስኮት</ahelp> ጎዶሎ ቁጥሮች ሁል ጊዜ የሚታዩት በ ቀኝ በኩል ነው ሙሉ ቁጥሮች በ ቀኝ በኩል ነው"
#: 10050000.xhp
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"par_idN1054C\n"
"help.text"
msgid "<ahelp hid=\"FN_SHOW_BOOKVIEW\">Select to display the first page on the right side in the page preview.</ahelp> If not selected, the first page is displayed on the left side of the preview."
-msgstr ""
+msgstr "<ahelp hid=\"FN_SHOW_BOOKVIEW\">ይምረጡ በ ገጽ ቅድመ እይታ ጊዜ የመጀመሪያውን ገጽ በ ቀኝ በኩል ለማሳየት </ahelp> ካልተመረጠ የ መጀመሪያው ገጽ የሚታየው በ ግራ በኩል ነው በ ገጽ ቅድመ እይታ ጊዜ"
#: 10080000.xhp
msgctxt ""
@@ -1280,7 +1280,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<ahelp hid=\"SW:NUMERICFIELD:DLG_PAGEPREVIEW_PRINTOPTIONS:NF_ROWS\" visibility=\"visible\">Defines the number of rows of pages (horizontally stacked document pages).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SW:NUMERICFIELD:DLG_PAGEPREVIEW_PRINTOPTIONS:NF_ROWS\" visibility=\"visible\">በ ገጽ ላይ የሚታየው የ ረድፎች ቁጥር መግለጫ (በ አግድም የሚከመሩ የ ሰነድ ገጾች).</ahelp>"
#: 10110000.xhp
msgctxt ""
@@ -1298,7 +1298,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<ahelp hid=\"SW:NUMERICFIELD:DLG_PAGEPREVIEW_PRINTOPTIONS:NF_COLS\" visibility=\"visible\">Defines the number of pages shown in columns (vertically tiled document pages).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SW:NUMERICFIELD:DLG_PAGEPREVIEW_PRINTOPTIONS:NF_COLS\" visibility=\"visible\">በ ገጽ ላይ የሚታየው የ አምዶች ቁጥር መግለጫ (በ ቁመት የሚከመሩ የ ሰነድ ገጾች).</ahelp>"
#: 10110000.xhp
msgctxt ""
@@ -1771,7 +1771,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "Basic Functions in the Submenu"
-msgstr ""
+msgstr "መሰረታዊ ተግባሮች በ ንዑስ ዝርዝር ውስጥ"
#: 14020000.xhp
msgctxt ""
@@ -1996,7 +1996,7 @@ msgctxt ""
"47\n"
"help.text"
msgid "<ahelp hid=\"HID_MN_CALC_LISTSEP\">Separates the elements in a list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_MN_CALC_LISTSEP\">አካሎችን ከ ዝርዝር ውስጥ መለያ</ahelp>"
#: 14020000.xhp
msgctxt ""
@@ -2779,7 +2779,7 @@ msgctxt ""
"197\n"
"help.text"
msgid "WORD"
-msgstr ""
+msgstr "ቃላት"
#: 14020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/04.po b/source/am/helpcontent2/source/text/swriter/04.po
index a9e7f767ef2..f1094f3c82a 100644
--- a/source/am/helpcontent2/source/text/swriter/04.po
+++ b/source/am/helpcontent2/source/text/swriter/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-28 18:12+0000\n"
+"PO-Revision-Date: 2013-07-03 15:10+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372443139.0\n"
+"X-POOTLE-MTIME: 1372864231.0\n"
#: 01020000.xhp
msgctxt ""
@@ -1936,7 +1936,7 @@ msgctxt ""
"215\n"
"help.text"
msgid "If the active cell is empty: selects the whole table. Otherwise: selects the contents of the active cell. Pressing again selects the entire table."
-msgstr ""
+msgstr "ንቁው ክፍል ባዶ ከሆነ: ጠቅላላ ሰንጠረዡን ይመርጣል፡ ያለበለዚያ: የ ንቁውን ክፍል ይዞታዎች ይመርጣል: በድጋሚ ከተጫኑ ጠቅላላ ሰንጠረዡ ይመረጣል"
#: 01020000.xhp
msgctxt ""
@@ -2203,7 +2203,7 @@ msgctxt ""
"306\n"
"help.text"
msgid "Cursor is inside a text frame and no text is selected: Escape selects the text frame."
-msgstr ""
+msgstr "መጠቆሚያው በ ጽሁፍ ክፈፍ ውስጥ ነው እና ምንም ጽሁፍ አልተመረጠም: መዝለያ የ ጽሁፍ ክፈፍ ይመርጣል"
#: 01020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index da1acb0a60e..fcb9c127401 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: 2013-06-29 23:40+0000\n"
+"PO-Revision-Date: 2013-07-14 19:27+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372549251.0\n"
+"X-POOTLE-MTIME: 1373830024.0\n"
#: anchor_object.xhp
msgctxt ""
@@ -92,7 +92,7 @@ msgctxt ""
"par_idN10674\n"
"help.text"
msgid "To center an image on an HTML page, insert the image, anchor it \"as character\", then center the paragraph."
-msgstr ""
+msgstr "በ HTML ገጽ ውስጥ ስእል መሀከል ለማድረግ፡ ምስሉን ያስገቡ እና አንድ ቦታ ላይ ያድርጉ \"እንደ ባህሪ\", እና ከዛ አንቀጹን መሀከል ያድርጉ"
#: anchor_object.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "Clear the \"Capitalize first letter of every sentence\" check box."
-msgstr ""
+msgstr "ማጽጃ የ \"በ አቢይ ፊደል የሚጀምረውን እያንዳንዱ አረፍተ ነገር\" ሳጥኑ ውስጥ ምልክት ያድርጉ"
#: auto_off.xhp
msgctxt ""
@@ -639,7 +639,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "To Stop Drawing a Line When You Type Three Identical Characters"
-msgstr ""
+msgstr "መስመር መሳሉን ለማስቆም ሶስት አንድ አይነት ባህሪዎች በሚጽፉ ጊዜ"
#: auto_off.xhp
msgctxt ""
@@ -648,7 +648,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "$[officename] automatically draws a line when you type three of the following characters and press Enter: - _ = * ~ #"
-msgstr ""
+msgstr "$[officename] ራሱ በራሱ መስመር ይስላል እነዚህ የሚቀጥሉትን ሶስት ባህሪዎች በሚጽፉ ጊዜ እና ይጫኑ ማስገቢያውን: - _ = * ~ #"
#: auto_off.xhp
msgctxt ""
@@ -709,7 +709,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "You can have $[officename] automatically check spelling while you type and underline possible misspelt words with a red wavy line."
-msgstr ""
+msgstr "ማድረግ ይችላሉ $[officename] ራሱ በራሱ ፊደል እንዲያርም እርስዎ በሚጽፉበት ጊዜ የተሳሳተ የፊደል ግድፈት ሲያገኝ በ ቀይ ማዕበል መስመር ከ ስሩ እንዲያሰምርበት"
#: auto_spellcheck.xhp
msgctxt ""
@@ -1082,7 +1082,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "Using AutoText in Network Installations"
-msgstr ""
+msgstr "በራሱ ጽሁፍ በ ኔትዎርክ መግጠሚያዎች ውስጥ መጠቀሚያ"
#: autotext.xhp
msgctxt ""
@@ -1091,7 +1091,7 @@ msgctxt ""
"50\n"
"help.text"
msgid "You can store AutoText entries in different directories on a network."
-msgstr ""
+msgstr "በራሱ ጽሁፍ ማስገቢያዎች ማስቀመጥ ይችላሉ በ ተለየ ዳይሬክቶሪ በ ኔትዎርክ ውስጥ"
#: autotext.xhp
msgctxt ""
@@ -1100,7 +1100,7 @@ msgctxt ""
"51\n"
"help.text"
msgid "For example, you can store \"read-only\" AutoText entries for your company on a central server, and user-defined AutoText entries in a local directory."
-msgstr ""
+msgstr "ለምሳሌ በራሱ ጽሁፍን ማስቀመጥ ይችላሉ \"ለማንበብ-ብቻ\" በ ድርጅቱ መካከለኛ ሰርቨር ውስጥ እና በተጠቃሚው-የሚወሰን በራሱ ጽሁፍ ማስገቢያ ደግሞ በ አካባቢ ዳይሬክቶሪ ውስጥ"
#: autotext.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"53\n"
"help.text"
msgid "Two directories are listed here. The first entry is on the server installation and the second entry is in the user directory. If there are two AutoText entries with the same name in both directories, the entry from the user directory is used."
-msgstr ""
+msgstr "እዚህ ሁለት ዳይሬክቶሪዎች አሉ፡ የ መጀመሪያው ማስገቢያ ለ ሰርቨር መግጠሚያ ነው፡ እና ሁለተኛው መግጠሚያ በ ተጠቃሚው ዳይሬክቶሪ ውስጥ ነው፡ ሁለት በራሱ ጽሁፍ ማስገቢያዎች ካሉ በ ተመሳሳይ ስም በ ሁለቱም ዳይሬክቶሪዎች ውስጥ በ ተጠቃሚው በኩል ያለውን ዳይሬክቶሪ ይጠቀማል"
#: autotext.xhp
msgctxt ""
@@ -1169,7 +1169,7 @@ msgctxt ""
"par_id7355265\n"
"help.text"
msgid "You can define a background color or use a graphic as a background for various objects in $[officename] Writer."
-msgstr ""
+msgstr "የ መደብ ቀለም መግለጽ ይችላሉ ወይንም ለተለያዩ እቃዎች ንድፎችን እንደ መደብ መጠቀም ይችላሉ በ $[officename] መጻፊያ"
#: background.xhp
msgctxt ""
@@ -1303,7 +1303,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "You may also use an icon to apply a background to table parts."
-msgstr ""
+msgstr "ምልክቶችን መጠቀም ይችላሉ መደቦችን ለ ሰንጠረዥ አካል ለመፈጸም"
#: background.xhp
msgctxt ""
@@ -1321,7 +1321,7 @@ msgctxt ""
"33\n"
"help.text"
msgid "To apply a background color to a text paragraph within a cell, place the cursor into the text paragraph, then click the color on the <item type=\"menuitem\">Background Color</item> toolbar."
-msgstr ""
+msgstr "በ ክፍል ውስጥ የ ጽሁፍ አንቀጽ መደብ ቀለም ለመፈጸም፡ መጠቆሚያውን በ ጽሁፉ አንቀጽ ውስጥ ያድርጉ እና ይጫኑ ቀለም የ <item type=\"menuitem\">መደብ ቀለም</item> ከ እቃ መደርደሪያ ላይ"
#: background.xhp
msgctxt ""
@@ -1424,7 +1424,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "Click one of the predefined border styles. This replaces the current border style of the object with the selected style."
-msgstr ""
+msgstr "ይጫኑ አንዱን በቅድሚያ የተወሰኑ ዘዴዎች፡ ይህ የ አሁኑን ድንበር ዘዴ እቃ በ ተመረጠው ዘዴ ይቀይረዋል"
#: border_object.xhp
msgctxt ""
@@ -1487,7 +1487,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "Select the distance between the border lines and the page contents in the <emph>Spacing to Contents</emph> area."
-msgstr ""
+msgstr "ይምረጡ እርቀቱን በ ድንበር መስመር እና በ ገጽ ይዞታዎች መካከል ከ <emph>ክፍተት ለ ይዞታዎች</emph> ቦታ ውስጥ"
#: border_object.xhp
msgctxt ""
@@ -1638,7 +1638,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "Select the distance between the border lines and the page contents in the <emph>Spacing to contents</emph> area."
-msgstr ""
+msgstr "ይምረጡ እርቀቱን በ ድንበር መስመር እና በ ገጽ ይዞታዎች መካከል ከ <emph>ክፍተት ለ ይዞታዎች</emph> ቦታ ውስጥ"
#: border_page.xhp
msgctxt ""
@@ -1943,7 +1943,7 @@ msgctxt ""
"par_id1820734\n"
"help.text"
msgid "In the <emph>User defined</emph> area, you can click to set or remove individual lines. The preview shows lines in three different states."
-msgstr ""
+msgstr "በ <emph>ተጠቃሚው የሚወሰን</emph> ቦታ፡ ይጫኑ ለ ማዘጋጀት ወይንም ለማስወገድ እያንዳንዱን መስመር፡ ቅድመ እይታው የሚያሳያቸው መስመሮች በ ሶስት የተለያያ ሁኔታ ነው"
#: borders.xhp
msgctxt ""
@@ -2232,7 +2232,7 @@ msgctxt ""
"par_id5172582\n"
"help.text"
msgid "Place the cursor where you want to insert the result of the formula, and then choose <item type=\"menuitem\">Edit - Paste</item>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V.<br/>The selected formula is replaced by the result."
-msgstr ""
+msgstr "መጠቆሚያውን የ formula ውጤት ማስገባት በሚፈልጉበት አካባቢ ያደርጉ፡ እና ከዛ ይምረጡ<item type=\"menuitem\">ማረሚያ - መለጠፊያ</item>, ወይንም ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V.<br/>የ ተመረጠው formula ውጤቱን ይቀየራል"
#: calculate_intable.xhp
msgctxt ""
@@ -2248,7 +2248,7 @@ msgctxt ""
"bm_id3147400\n"
"help.text"
msgid "<bookmark_value>calculating;sums in text tables</bookmark_value> <bookmark_value>totals in text tables</bookmark_value> <bookmark_value>tables;calculating sums</bookmark_value> <bookmark_value>cells;calculating sums</bookmark_value> <bookmark_value>table cells;calculating sums</bookmark_value> <bookmark_value>sums of table cell series</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ማስሊያ;ድምሮች በ ጽሁፍ ሰንጠረዥ ውስጥ</bookmark_value> <bookmark_value>ጠቅላላ በ ጽሁፍ ሰንጠረዥ ውስጥ</bookmark_value> <bookmark_value>ሰንጠረዥ;ማስሊያ ድምር</bookmark_value> <bookmark_value>ክፍሎች;ማስሊያ ድምር</bookmark_value> <bookmark_value>ሰንጠረዥ ክፍሎች;ማስሊያ ድምር</bookmark_value> <bookmark_value>ድምር በ ሰንጠረዥ ተከታታይ ክፍል</bookmark_value>"
#: calculate_intable.xhp
msgctxt ""
@@ -2257,7 +2257,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "<variable id=\"calculate_intable\"><link href=\"text/swriter/guide/calculate_intable.xhp\" name=\"Calculating Cell Totals in Tables\">Calculating the Sum of a Series of Table Cells</link></variable>"
-msgstr ""
+msgstr "<variable id=\"calculate_intable\"><link href=\"text/swriter/guide/calculate_intable.xhp\" name=\"Calculating Cell Totals in Tables\">የተከታታይ ሰንጠረዥ ክፍሎች ድምር ማስሊያ</link></variable>"
#: calculate_intable.xhp
msgctxt ""
@@ -2275,7 +2275,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Type a number in each cell of the column, but leave the last cell in the column empty."
-msgstr ""
+msgstr "ቁጥር ይጻፉ በ አምድ ክፍሎች ውስጥ፡ ነገር ግን የ መጨረሻውን ክፍል በ አምዱ ውስጥ ባዶ ይተውት"
#: calculate_intable.xhp
msgctxt ""
@@ -2284,7 +2284,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "Place the cursor in the last cell of the column, and then click the <item type=\"menuitem\">Sum</item> icon on the <item type=\"menuitem\">Table Bar</item>.<br/>The <item type=\"menuitem\">Formula Bar</item> appears with the entry \"=sum\"."
-msgstr ""
+msgstr "መጠቆሚያውን በ መጨረሻው ክፍል አምድ ውስጥ ያድርጉ፡ እና ከዛ ይጫኑ የ <item type=\"menuitem\">ድምር</item> ምልክት ከ <item type=\"menuitem\">ሰንጠረዥ መደርደሪያ ላይ</item>.<br/>የ <item type=\"menuitem\">Formula Bar</item> ይታያል ማስገቢያ ይዞ \"=ድምር\"."
#: calculate_intable.xhp
msgctxt ""
@@ -2302,7 +2302,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "Press Enter, or click <emph>Apply</emph> in the Formula bar. <br/>The sum of the values in the current column is entered in the cell."
-msgstr ""
+msgstr "ይጫኑ ማስገቢያውን ወይንም ይጫኑ <emph>መፈጸሚያ</emph> በ Formula bar. <br/>የ አሁኑ አምድ ጠቅላላ ድምር ወደ ክፍሉ ይገባል"
#: calculate_intable.xhp
msgctxt ""
@@ -2311,7 +2311,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "If you enter a different number anywhere in the column, the sum is updated as soon as you click in the last column cell."
-msgstr ""
+msgstr "በ ማንኛውም አምድ የተለየ ቁጥር ካስገቡ፡ የመጨረሻው አምድ ክፍል ሲጫኑ ድምሩ ወዲያውኑ ይሻሻላል"
#: calculate_intable.xhp
msgctxt ""
@@ -2424,7 +2424,7 @@ msgctxt ""
"bm_id3153899\n"
"help.text"
msgid "<bookmark_value>calculating;in text tables</bookmark_value> <bookmark_value>tables; performing calculations in</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ማስሊያ;በ ጽሁፍ ሰንጠረዥ ውስጥ</bookmark_value> <bookmark_value>ሰንጠረዥ; መፈጸሚያ በ ማስሊያ ውስጥ</bookmark_value>"
#: calculate_intext2.xhp
msgctxt ""
@@ -2557,7 +2557,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "Place your cursor in an empty cell in one of the tables."
-msgstr ""
+msgstr "መጠቆሚያውን በ ባዶ ክፍል ውስጥ ያድርጉ ከ ሰንጠረዦቹ በ አንዱ ውስጥ"
#: calculate_multitable.xhp
msgctxt ""
@@ -2575,7 +2575,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "In the <item type=\"menuitem\">Formula Bar</item>, enter the function that you want to perform, for example, <item type=\"literal\">=SUM</item>."
-msgstr ""
+msgstr "በ <item type=\"menuitem\">Formula Bar</item>, መፈጸም የሚፈልጉትን ተግባር ያስገቡ፡ ለምሳሌ <item type=\"literal\">=ድምር</item>."
#: calculate_multitable.xhp
msgctxt ""
@@ -4042,7 +4042,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "To update a field that was inserted from a database, select the field, and then press F9."
-msgstr ""
+msgstr "ከ ዳታቤዝ ውስጥ የገባውን ሜዳ ለማሻሻል፡ ሜዳውን ይምረጡ እና ከዛ ይጫኑ F9."
#: fields_date.xhp
msgctxt ""
@@ -4815,7 +4815,7 @@ msgctxt ""
"par_id703451\n"
"help.text"
msgid "When you click <emph>Replace</emph>, Writer will search the whole document for the text in the <emph>Search for</emph> box, starting at the current cursor position. When text is found, Writer highlights the text and waits for your response. Click <emph>Replace</emph> to replace the highlighted text in the document with the text in the <emph>Replace with</emph> text box. Click <emph>Find</emph> to advance to the next found text without replacing the current selection."
-msgstr ""
+msgstr "ይህን ሲጫኑ <emph>መቀየሪያ</emph>, መጻፊያ ጠቅላላ ሰነዱ ውስጥ ጽሁፉን ይፈልጋል በ <emph>መፈለጊያ</emph> ሳጥን ውስጥ፡ መጠቆሚያው አሁን ካለበት ቦታ ጀምሮ ቃሉን ይፈልጋል፡ ቃሉን ሲያገኝ ያደምቀው እና የ እርስዎን መልስ ይጠብቃል፡ ይጫኑ <emph>መቀየሪያ</emph> የ ደመቀውን ቃላት በጽሁፉ ውስጥ ለ መቀየር በ <emph>መቀየሪያ በ</emph> ጽሁፍ ሳጥን ውስጥ ባለው መቀየሪያ፡ ይጫኑ <emph>መፈለጊያ</emph> ለ መቀጠል ወደ ሚቀጥለው ጽሁፍ የ አሁኑን ምርጫ ሳይቀይር"
#: finding.xhp
msgctxt ""
@@ -4999,7 +4999,7 @@ msgctxt ""
"par_id6417432\n"
"help.text"
msgid "Click the icon with the blue circle at the bottom right part of your document to open the small <emph>Navigation</emph> window."
-msgstr ""
+msgstr "ይጫኑ ሰማያዊ ክብ ምልክት በ ቀኝ በኩል ከታች በ እርስዎ ሰነድ ውስጥ ለ መክፈት ትንሽ የ <emph>መቃኛ</emph> መስኮት"
#: finding.xhp
msgctxt ""
@@ -5393,7 +5393,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "To edit the properties of the text area for footnotes or endnotes, choose <emph>Format - Page</emph>, and then click the <link href=\"text/swriter/01/05040600.xhp\" name=\"Footnote\"><emph>Footnote</emph></link> tab."
-msgstr ""
+msgstr "የ ግርጌ ማስታወሻ ወይንም የ መጨረሻ ማስታወሻ ጽሁፍ አካባቢ ባህሪዎችን ለማረም ይጫኑ <emph>አቀራረብ - ገጽ</emph>, እና ከዛ ይጫኑ የ <link href=\"text/swriter/01/05040600.xhp\" name=\"Footnote\"><emph>ግርጌ ማስታወሻ</emph></link> tab."
#: footnote_usage.xhp
msgctxt ""
@@ -5463,7 +5463,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "Right-click the Paragraph Style that you want to modify, for example, \"Footnote\", and choose <emph>Modify</emph>."
-msgstr ""
+msgstr "በቀኝ-ይጫኑ ማሻሻል የሚፈልጉትን የ አንቀጽ ዘዴ ለምሳሌ \"የ ግርጌ ማስታወሻ\" እና ይምረጡ <emph>ማሻሻያ</emph>."
#: footnote_with_line.xhp
msgctxt ""
@@ -5909,7 +5909,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "To insert an existing file as a subdocument, choose <emph>File</emph>, locate the file that you want to include, and then click <emph>OK</emph>."
-msgstr ""
+msgstr "ቀደም ብሎ የነበረ ፋይል ለማስገባት እንደ ንዑስ ሰነድ፡ ይምረጡ <emph>ፋይል</emph>, የሚፈልጉትን ፋይል ፈልገው ያግኙ፡ እና ከዛ ይጫኑ <emph>እሺ</emph>."
#: globaldoc_howtos.xhp
msgctxt ""
@@ -6181,7 +6181,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "The page style for the current page is displayed in the <emph>Status Bar</emph>."
-msgstr ""
+msgstr "የ ገጽ ዘዴ ለ አሁኑ ገጽ ይታያል በ <emph>ሁኔታዎች መደርደሪያ ላይ</emph>."
#: header_footer.xhp
msgctxt ""
@@ -6429,7 +6429,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Inserting a Chapter Name and Number in a Header or a Footer"
-msgstr ""
+msgstr "የ ምእራፍ ስም እና ቁጥር ማስገቢያ በ ራስጌ ወይንም በ ግርጌ ውስጥ"
#: header_with_chapter.xhp
msgctxt ""
@@ -7038,7 +7038,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Enable the check mark at <emph>View - Hidden Paragraphs</emph>."
-msgstr ""
+msgstr "ምልክት ማድረጊያውን ያስችሉ የ <emph>መመልከቻ - የተደበቁ አንቀጾች</emph>."
#: hidden_text_display.xhp
msgctxt ""
@@ -7289,7 +7289,7 @@ msgctxt ""
"par_id0302200910262867\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Formatting Mark - No-width no break</item>."
-msgstr ""
+msgstr "ይምረጡ <item type=\"menuitem\">ማስገቢያ - የ ምልክት አቀራረብ - ስፋት-የለም መጨረሻ የለም</item>."
#: hyphen_prevent.xhp
msgctxt ""
@@ -7418,7 +7418,7 @@ msgctxt ""
"bm_id3155186\n"
"help.text"
msgid "<bookmark_value>indexes; editing or deleting entries</bookmark_value> <bookmark_value>tables of contents; editing or deleting entries</bookmark_value> <bookmark_value>deleting;entries of indexes/tables of contents</bookmark_value> <bookmark_value>editing;table/index entries</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ማውጫዎች; ማረሚያ ወይንም ማጥፊያ ማስገቢያዎች</bookmark_value> <bookmark_value>የ ሰንጠረዥ ማውጫ; ማረሚያ ወይንም ማጥፊያ ማስገቢያዎች</bookmark_value> <bookmark_value>ማጥፊያ;ማስገቢያዎች የ ማውጫዎች/የ ሰንጠረዥ ማውጫ</bookmark_value> <bookmark_value>ማረሚያ;ሰንጠረዥ/ማውጫ ማስገቢያዎች</bookmark_value>"
#: indices_delete.xhp
msgctxt ""
@@ -7427,7 +7427,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<variable id=\"indices_delete\"><link href=\"text/swriter/guide/indices_delete.xhp\" name=\"Editing or Deleting Index and Table Entries\">Editing or Deleting Index and Table Entries</link></variable>"
-msgstr ""
+msgstr "<variable id=\"indices_delete\"><link href=\"text/swriter/guide/indices_delete.xhp\" name=\"Editing or Deleting Index and Table Entries\">ማረሚያ ወይንም ማጥፊያ ማውጫ እና የ ሰንጠረዥ ማስገቢያ</link></variable>"
#: indices_delete.xhp
msgctxt ""
@@ -7497,7 +7497,7 @@ msgctxt ""
"bm_id3149695\n"
"help.text"
msgid "<bookmark_value>indexes; editing/updating/deleting</bookmark_value> <bookmark_value>tables of contents; editing and deleting</bookmark_value> <bookmark_value>updating;indexes/tables of contents</bookmark_value> <bookmark_value>editing;indexes/tables of contents</bookmark_value> <bookmark_value>deleting;indexes/tables of contents</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ማውጫዎች; ማረሚያ/ማሻሻያ/ማጥፊያ</bookmark_value> <bookmark_value>የ ሰንጠረዥ ማውጫ; ማረሚያ እና ማጥፊያ</bookmark_value> <bookmark_value>ማሻሻያ;ማውጫ/የ ሰንጠረዥ ማውጫ</bookmark_value> <bookmark_value>ማረሚያ;ማውጫዎች/የ ሰንጠረዥ ማውጫ</bookmark_value> <bookmark_value>ማጥፊያ;ማውጫዎች/የ ሰንጠረዥ ማውጫ</bookmark_value>"
#: indices_edit.xhp
msgctxt ""
@@ -7506,7 +7506,7 @@ msgctxt ""
"56\n"
"help.text"
msgid "<variable id=\"indices_edit\"><link href=\"text/swriter/guide/indices_edit.xhp\" name=\"Updating, Editing and Deleting Indexes and Tables of Contents\">Updating, Editing and Deleting Indexes and Tables of Contents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"indices_edit\"><link href=\"text/swriter/guide/indices_edit.xhp\" name=\"Updating, Editing and Deleting Indexes and Tables of Contents\">ማሻሻያ፡ ማረሚያ እና ማጥፊያ ማውጫዎችን እና የ ሰንጠረዥ ማውጫዎች</link></variable>"
#: indices_edit.xhp
msgctxt ""
@@ -7550,7 +7550,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Defining Index or Table of Contents Entries"
-msgstr ""
+msgstr "ማውጫ መግለጫ ወይንም የ ሰንጠረዥ ማውጫ ማስገቢያ"
#: indices_enter.xhp
msgctxt ""
@@ -7630,7 +7630,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "To Define Table of Contents Entries"
-msgstr ""
+msgstr "የ ሰንጠረዥ ማውጫ ማስገቢያዎች ለመግለጽ"
#: indices_enter.xhp
msgctxt ""
@@ -7966,7 +7966,7 @@ msgctxt ""
"bm_id3149687\n"
"help.text"
msgid "<bookmark_value>indexes;creating bibliographies</bookmark_value> <bookmark_value>databases;creating bibliographies</bookmark_value> <bookmark_value>bibliographies</bookmark_value> <bookmark_value>entries;bibliographies</bookmark_value> <bookmark_value>storing bibliographic information</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ማውጫዎች;መፍጠሪያ bibliographies</bookmark_value> <bookmark_value>ዳታቤዝ;መፍጠሪያ bibliographies</bookmark_value> <bookmark_value>bibliographies</bookmark_value> <bookmark_value>ማስገቢያዎች;bibliographies</bookmark_value> <bookmark_value>ማስቀመጫ bibliographic information</bookmark_value>"
#: indices_literature.xhp
msgctxt ""
@@ -7975,7 +7975,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "<variable id=\"indices_literature\"><link href=\"text/swriter/guide/indices_literature.xhp\" name=\"Creating a Bibliography\">Creating a Bibliography</link></variable>"
-msgstr ""
+msgstr "<variable id=\"indices_literature\"><link href=\"text/swriter/guide/indices_literature.xhp\" name=\"Creating a Bibliography\">Bibliography መፍጠሪያ</link></variable>"
#: indices_literature.xhp
msgctxt ""
@@ -8020,7 +8020,7 @@ msgctxt ""
"50\n"
"help.text"
msgid "Choose <link href=\"text/shared/01/02250000.xhp\" name=\"Tools - Bibliography Database\"><emph>Tools - Bibliography Database</emph></link>"
-msgstr ""
+msgstr "ይምረጡ <link href=\"text/shared/01/02250000.xhp\" name=\"Tools - Bibliography Database\"><emph>መሳሪያዎች - Bibliography ዳታቤዝ</emph></link>"
#: indices_literature.xhp
msgctxt ""
@@ -8047,7 +8047,7 @@ msgctxt ""
"66\n"
"help.text"
msgid "Close the <item type=\"menuitem\">Bibliography Database</item> window."
-msgstr ""
+msgstr "መዝጊያ የ <item type=\"menuitem\">Bibliography ዳታቤዝ</item> መስኮት"
#: indices_literature.xhp
msgctxt ""
@@ -8119,7 +8119,7 @@ msgctxt ""
"73\n"
"help.text"
msgid "In the <item type=\"menuitem\">Insert Bibliography Entry</item> dialog, click <item type=\"menuitem\">Insert</item>, and then <item type=\"menuitem\">Close</item>."
-msgstr ""
+msgstr "በ <item type=\"menuitem\">ማስገቢያ Bibliography Entry</item> ንግግር ውስጥ ይጫኑ <item type=\"menuitem\">ማስገቢያ</item>, እና ከዛ <item type=\"menuitem\">መዝጊያ</item>."
#: indices_literature.xhp
msgctxt ""
@@ -8155,7 +8155,7 @@ msgctxt ""
"53\n"
"help.text"
msgid "Select <emph>From bibliography database</emph>."
-msgstr ""
+msgstr "ይምረጡ <emph>ከ bibliography ዳታቤዝ</emph>."
#: indices_literature.xhp
msgctxt ""
@@ -8259,7 +8259,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating a Table of Contents"
-msgstr ""
+msgstr "የ ሰንጠረዥ ማውጫ መፍጠሪያ"
#: indices_toc.xhp
msgctxt ""
@@ -8267,7 +8267,7 @@ msgctxt ""
"bm_id3147104\n"
"help.text"
msgid "<bookmark_value>tables of contents; creating and updating</bookmark_value> <bookmark_value>updating; tables of contents</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ሰንጠረዥ ማውጫ; መፍጠሪያ እና ማሻሻያ</bookmark_value> <bookmark_value>ማሻሻያ; የ ሰንጠረዥ ማውጫ</bookmark_value>"
#: indices_toc.xhp
msgctxt ""
@@ -8276,7 +8276,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<variable id=\"indices_toc\"><link href=\"text/swriter/guide/indices_toc.xhp\" name=\"Creating a Table of Contents\">Creating a Table of Contents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"indices_toc\"><link href=\"text/swriter/guide/indices_toc.xhp\" name=\"Creating a Table of Contents\">የ ሰንጠረዥ ማውጫ መፍጠሪያ</link></variable>"
#: indices_toc.xhp
msgctxt ""
@@ -8302,7 +8302,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Click in your document where you want to create the table of contents."
-msgstr ""
+msgstr "የ ሰንጠረዥ ማውጫ መፍጠር በሚፈልጉበት ቦታ ሰነዱ ላይ ይጫኑ"
#: indices_toc.xhp
msgctxt ""
@@ -10056,7 +10056,7 @@ msgctxt ""
"25\n"
"help.text"
msgid "To Specify the Starting Line Number"
-msgstr ""
+msgstr "የ መስመር ቁጥር ማስጀመሪያ መወሰኛ"
#: numbering_lines.xhp
msgctxt ""
@@ -10144,7 +10144,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Modifying Numbering in a Numbered List"
-msgstr ""
+msgstr "ቁጥር የተሰጣቸውን ዝርዝር ቁጥር መስጫ ማሻሻያ"
#: numbering_paras.xhp
msgctxt ""
@@ -10161,7 +10161,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Modifying Numbering in a Numbered List\">Modifying Numbering in a Numbered List</link></variable>"
-msgstr ""
+msgstr "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Modifying Numbering in a Numbered List\">ቁጥር የተሰጣቸውን ዝርዝር ቁጥር መስጫ ማሻሻያ</link></variable>"
#: numbering_paras.xhp
msgctxt ""
@@ -10187,7 +10187,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "To Remove the Number From a Paragraph in a Numbered List"
-msgstr ""
+msgstr "ቁጥር የተሰጣቸውን ዝርዝር ከ አንቀጽ ውስጥ ቁጥር መስጫ ለማስወገድ"
#: numbering_paras.xhp
msgctxt ""
diff --git a/source/am/svx/source/dialog.po b/source/am/svx/source/dialog.po
index a0d5b1ba2ff..855c721c345 100644
--- a/source/am/svx/source/dialog.po
+++ b/source/am/svx/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-06-22 14:15+0200\n"
-"PO-Revision-Date: 2013-06-30 00:53+0000\n"
+"PO-Revision-Date: 2013-07-02 19:33+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372553609.0\n"
+"X-POOTLE-MTIME: 1372793598.0\n"
#: bmpmask.src
msgctxt ""
@@ -640,7 +640,7 @@ msgid ""
msgstr ""
"የስህተት መግለጫ መሳሪያ የሚሰበስበው መረጃ ስለ ስህተቱ እንዴት %PRODUCTNAME እንደተፈጠረ እና ስህተቱትን ለ Document Foundation ለመላክ እና የወደፊት አትሞችን ለማሻሻል እንዲረዳን ነው\n"
"\n"
-"የስህተት መግለጫ መላክ በጣም ቀላል-ነው 'መላኪያ' የሚለውን መጫን ነው ፡ በሚቀጥለው ንግግር ወይንም በሰፊው ችግሩ እንዴት እንደተፈጠረ ሊገልጹ ይችላሉ እና 'መላኪያ' የሚለውን ይጫኑ 'መላኪያ' መግለጫ ማየት ከፈለጉ ይጫኑ 'መግለጫ ማሳያ' የሚለውን ቁልፍ ፡ ወይንም ምንም ዳታ አይላክም 'አትላክ' የሚለውን ከተጫኑ\n"
+"የስህተት መግለጫ መላክ በጣም ቀላል-ነው 'መላኪያ' የሚለውን መጫን ነው ፡ በሚቀጥለው ንግግር ወይንም በሰፊው ችግሩ እንዴት እንደተፈጠረ ሊገልጹ ይችላሉ እና 'መላኪያ' የሚለውን ይጫኑ 'መላኪያ' መግለጫ ማየት ከፈለጉ ይጫኑ 'መግለጫ ማሳያ' የሚለውን ቁልፍ፡ ወይንም ምንም ዳታ አይላክም 'አትላክ' የሚለውን ከተጫኑ\n"
"\n"
"የደንበኞቻችን ምስጢር\n"
"የተሰበሰበው መረጃ የተወሰነ ነው ችግሩን በሚመለከት %PRODUCTNAME %PRODUCTVERSION ችግሩ ሲፈጠር ሌሎች መረጃዎች እንደ መግቢያ ቃል ያሉ ወይንም የሰነዶች ይዞታ አይሰበሰብም\n"
@@ -3338,7 +3338,7 @@ msgctxt ""
"RID_SVXSTR_GRDT67\n"
"string.text"
msgid "Purple Pipe"
-msgstr ""
+msgstr "የ ወይን ጠጅ ቧንቧ"
#: sdstring.src
msgctxt ""
diff --git a/source/am/sw/source/ui/app.po b/source/am/sw/source/ui/app.po
index 9479d00a8a2..bb2ddb1c8b6 100644
--- a/source/am/sw/source/ui/app.po
+++ b/source/am/sw/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-05-25 21:31+0000\n"
+"PO-Revision-Date: 2013-06-30 19:39+0000\n"
"Last-Translator: Samson <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1369517503.0\n"
+"X-POOTLE-MTIME: 1372621199.0\n"
#: app.src
msgctxt ""
@@ -866,7 +866,7 @@ msgid ""
"\n"
"Please check the connections settings."
msgstr ""
-"የዳታ ምንጭ'%1' አልተገኘም ፡ ስለዚህ ወደ ዳታ ምንጩ ግንኙነት መመስረት አልተቻለም \n"
+"የዳታ ምንጭ'%1' አልተገኘም፡ ስለዚህ ወደ ዳታ ምንጩ ግንኙነት መመስረት አልተቻለም \n"
"\n"
"እባክዎን የግንኙነት ማሰናጃውን ይመርምሩ"
diff --git a/source/an/android/sdremote/res/values.po b/source/an/android/sdremote/res/values.po
index 37d1382d80f..debf9c6171e 100644
--- a/source/an/android/sdremote/res/values.po
+++ b/source/an/android/sdremote/res/values.po
@@ -28,7 +28,7 @@ msgctxt ""
"menu_settings\n"
"string.text"
msgid "Settings"
-msgstr "Configuración"
+msgstr ""
#: strings.xml
msgctxt ""
@@ -60,7 +60,7 @@ msgctxt ""
"options\n"
"string.text"
msgid "Options"
-msgstr "Opcions"
+msgstr ""
#: strings.xml
msgctxt ""
@@ -92,7 +92,7 @@ msgctxt ""
"clock_timer_start\n"
"string.text"
msgid "Start"
-msgstr "Iniciar"
+msgstr ""
#: strings.xml
msgctxt ""
@@ -100,7 +100,7 @@ msgctxt ""
"clock_timer_pause\n"
"string.text"
msgid "Pause"
-msgstr "Meter en pausa"
+msgstr ""
#: strings.xml
msgctxt ""
@@ -272,7 +272,7 @@ msgctxt ""
"selector_dialog_connectionfailed_ok\n"
"string.text"
msgid "OK"
-msgstr "D'alcuerdo"
+msgstr ""
#: strings.xml
msgctxt ""
@@ -336,7 +336,7 @@ msgctxt ""
"about_close\n"
"string.text"
msgid "Close"
-msgstr "Zarrar"
+msgstr ""
#: strings.xml
msgctxt ""
@@ -415,7 +415,7 @@ msgctxt ""
"addserver_add\n"
"string.text"
msgid "Add"
-msgstr "Adhibir"
+msgstr ""
#: strings.xml
msgctxt ""
@@ -423,7 +423,7 @@ msgctxt ""
"addserver_cancel\n"
"string.text"
msgid "Cancel"
-msgstr "Cancelar"
+msgstr ""
#: strings.xml
msgctxt ""
diff --git a/source/an/basctl/source/basicide.po b/source/an/basctl/source/basicide.po
index 47c0f157d88..cdb059cf7b5 100644
--- a/source/an/basctl/source/basicide.po
+++ b/source/an/basctl/source/basicide.po
@@ -35,6 +35,7 @@ msgid "All ~Pages"
msgstr ""
#: basicprint.src
+#, fuzzy
msgctxt ""
"basicprint.src\n"
"RID_PRINTDLG_STRLIST\n"
@@ -305,6 +306,7 @@ msgid "Generating source"
msgstr ""
#: basidesh.src
+#, fuzzy
msgctxt ""
"basidesh.src\n"
"RID_STR_FILENAME\n"
@@ -534,7 +536,7 @@ msgctxt ""
"RID_STR_ALL\n"
"string.text"
msgid "All"
-msgstr "Totz"
+msgstr ""
#: basidesh.src
msgctxt ""
@@ -643,6 +645,7 @@ msgid "%PRODUCTNAME Macros & Dialogs"
msgstr ""
#: basidesh.src
+#, fuzzy
msgctxt ""
"basidesh.src\n"
"RID_POPUP_BRKPROPS\n"
@@ -652,6 +655,7 @@ msgid "Active"
msgstr "activo"
#: basidesh.src
+#, fuzzy
msgctxt ""
"basidesh.src\n"
"RID_POPUP_BRKPROPS\n"
@@ -661,6 +665,7 @@ msgid "Properties..."
msgstr "Propiedatz..."
#: basidesh.src
+#, fuzzy
msgctxt ""
"basidesh.src\n"
"RID_POPUP_BRKPROPS\n"
@@ -713,6 +718,7 @@ msgid "Insert"
msgstr ""
#: basidesh.src
+#, fuzzy
msgctxt ""
"basidesh.src\n"
"RID_POPUP_TABBAR\n"
@@ -722,6 +728,7 @@ msgid "Delete"
msgstr "Eliminar"
#: basidesh.src
+#, fuzzy
msgctxt ""
"basidesh.src\n"
"RID_POPUP_TABBAR\n"
@@ -749,6 +756,7 @@ msgid "Modules..."
msgstr ""
#: basidesh.src
+#, fuzzy
msgctxt ""
"basidesh.src\n"
"RID_POPUP_DLGED\n"
@@ -814,6 +822,7 @@ msgid "Class Modules"
msgstr ""
#: basidesh.src
+#, fuzzy
msgctxt ""
"basidesh.src\n"
"RID_STR_DLGIMP_CLASH_RENAME\n"
@@ -907,6 +916,7 @@ msgid "New"
msgstr "Nuevo"
#: brkdlg.src
+#, fuzzy
msgctxt ""
"brkdlg.src\n"
"RID_BASICIDE_BREAKPOINTDLG\n"
@@ -916,6 +926,7 @@ msgid "Delete"
msgstr "Eliminar"
#: brkdlg.src
+#, fuzzy
msgctxt ""
"brkdlg.src\n"
"RID_BASICIDE_BREAKPOINTDLG\n"
@@ -951,6 +962,7 @@ msgid "Manage Breakpoints"
msgstr ""
#: macrodlg.src
+#, fuzzy
msgctxt ""
"macrodlg.src\n"
"RID_STR_BTNDEL\n"
@@ -1044,6 +1056,7 @@ msgid "~Edit"
msgstr ""
#: moduldlg.src
+#, fuzzy
msgctxt ""
"moduldlg.src\n"
"RID_TP_MODULS\n"
@@ -1071,6 +1084,7 @@ msgid "~New..."
msgstr ""
#: moduldlg.src
+#, fuzzy
msgctxt ""
"moduldlg.src\n"
"RID_TP_MODULS\n"
@@ -1098,6 +1112,7 @@ msgid "~Edit"
msgstr ""
#: moduldlg.src
+#, fuzzy
msgctxt ""
"moduldlg.src\n"
"RID_TP_DLGS\n"
@@ -1125,6 +1140,7 @@ msgid "~New..."
msgstr ""
#: moduldlg.src
+#, fuzzy
msgctxt ""
"moduldlg.src\n"
"RID_TP_DLGS\n"
@@ -1161,6 +1177,7 @@ msgid "~Edit"
msgstr ""
#: moduldlg.src
+#, fuzzy
msgctxt ""
"moduldlg.src\n"
"RID_TP_LIBS\n"
@@ -1170,6 +1187,7 @@ msgid "Close"
msgstr "Zarrar"
#: moduldlg.src
+#, fuzzy
msgctxt ""
"moduldlg.src\n"
"RID_TP_LIBS\n"
@@ -1206,6 +1224,7 @@ msgid "E~xport..."
msgstr ""
#: moduldlg.src
+#, fuzzy
msgctxt ""
"moduldlg.src\n"
"RID_TP_LIBS\n"
@@ -1251,6 +1270,7 @@ msgid "~Line Number:"
msgstr ""
#: moduldlg.src
+#, fuzzy
msgctxt ""
"moduldlg.src\n"
"RID_DLG_NEWLIB\n"
@@ -1310,6 +1330,7 @@ msgid "Extension"
msgstr ""
#: moptions.src
+#, fuzzy
msgctxt ""
"moptions.src\n"
"RID_MACROOPTIONS\n"
@@ -1346,6 +1367,7 @@ msgid "Help file name"
msgstr ""
#: moptions.src
+#, fuzzy
msgctxt ""
"moptions.src\n"
"RID_MACROOPTIONS\n"
diff --git a/source/an/basctl/source/dlged.po b/source/an/basctl/source/dlged.po
index 0e979c6e3e3..a896ec6d2e9 100644
--- a/source/an/basctl/source/dlged.po
+++ b/source/an/basctl/source/dlged.po
@@ -17,6 +17,7 @@ msgstr ""
"X-POOTLE-MTIME: 1352990627.0\n"
#: dlgresid.src
+#, fuzzy
msgctxt ""
"dlgresid.src\n"
"RID_STR_BRWTITLE_PROPERTIES\n"
@@ -50,6 +51,7 @@ msgid "Present Languages"
msgstr ""
#: managelang.src
+#, fuzzy
msgctxt ""
"managelang.src\n"
"RID_DLG_MANAGE_LANGUAGE\n"
diff --git a/source/an/chart2/source/controller/dialogs.po b/source/an/chart2/source/controller/dialogs.po
index 024399d17da..4ce5ca1af5d 100644
--- a/source/an/chart2/source/controller/dialogs.po
+++ b/source/an/chart2/source/controller/dialogs.po
@@ -113,6 +113,7 @@ msgid "Transparency"
msgstr ""
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_PAGE_FONT\n"
@@ -121,6 +122,7 @@ msgid "Font"
msgstr "Tipo de letra"
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_PAGE_FONT_EFFECTS\n"
@@ -137,6 +139,7 @@ msgid "Numbers"
msgstr "Numeros"
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_PAGE_POSITION\n"
@@ -177,6 +180,7 @@ msgid "Options"
msgstr "Opcions"
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_PAGE_SCALE\n"
@@ -201,6 +205,7 @@ msgid "Type"
msgstr "Tipo"
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_PAGE_XERROR_BARS\n"
@@ -209,6 +214,7 @@ msgid "X Error Bars"
msgstr "~Barras d'Error Y ..."
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_PAGE_YERROR_BARS\n"
@@ -217,6 +223,7 @@ msgid "Y Error Bars"
msgstr "~Barras d'Error Y ..."
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_PAGE_ZERROR_BARS\n"
@@ -225,6 +232,7 @@ msgid "Z Error Bars"
msgstr "~Barras d'Error Y ..."
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_PAGE_ALIGNMENT\n"
@@ -257,6 +265,7 @@ msgid "Illumination"
msgstr ""
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_PAGE_ASIAN\n"
@@ -305,6 +314,7 @@ msgid "Z Axis"
msgstr ""
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_SECONDARY_X_AXIS\n"
@@ -313,6 +323,7 @@ msgid "Secondary X Axis"
msgstr "Eixe ~secundario X..."
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_SECONDARY_Y_AXIS\n"
@@ -329,6 +340,7 @@ msgid "Axes"
msgstr ""
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_GRIDS\n"
@@ -337,6 +349,7 @@ msgid "Grids"
msgstr "~Rella"
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_GRID\n"
@@ -345,6 +358,7 @@ msgid "Grid"
msgstr "~Rella"
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_GRID_MAJOR_X\n"
@@ -353,6 +367,7 @@ msgid "X Axis Major Grid"
msgstr "Quadricula prencipal de l'eixe ~X..."
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_GRID_MAJOR_Y\n"
@@ -361,6 +376,7 @@ msgid "Y Axis Major Grid"
msgstr "Quadricula prencipal de l'eixe ~Y..."
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_GRID_MAJOR_Z\n"
@@ -369,6 +385,7 @@ msgid "Z Axis Major Grid"
msgstr "Quadricula prencipal de l'eixe ~Z..."
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_GRID_MINOR_X\n"
@@ -377,6 +394,7 @@ msgid "X Axis Minor Grid"
msgstr "Quadricula auxiliar de l'eixe ~X..."
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_GRID_MINOR_Y\n"
@@ -385,6 +403,7 @@ msgid "Y Axis Minor Grid"
msgstr "Quadricula auxiliar de l'eixe ~Y..."
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_GRID_MINOR_Z\n"
@@ -409,6 +428,7 @@ msgid "Title"
msgstr "Titol"
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_TITLES\n"
@@ -473,6 +493,7 @@ msgid "Secondary Y Axis Title"
msgstr ""
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_LABEL\n"
@@ -553,6 +574,7 @@ msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
msgstr ""
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_AVERAGE_LINE\n"
@@ -569,6 +591,7 @@ msgid "Equation"
msgstr ""
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_ERROR_BARS_X\n"
@@ -577,6 +600,7 @@ msgid "X Error Bars"
msgstr "~Barras d'Error Y ..."
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_ERROR_BARS_Y\n"
@@ -585,6 +609,7 @@ msgid "Y Error Bars"
msgstr "~Barras d'Error Y ..."
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_ERROR_BARS_Z\n"
@@ -641,6 +666,7 @@ msgid "Chart Floor"
msgstr ""
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_OBJECT_SHAPE\n"
@@ -849,6 +875,7 @@ msgid "Name"
msgstr "Nombre"
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_DATA_ROLE_X\n"
@@ -857,6 +884,7 @@ msgid "X-Values"
msgstr "Valuras"
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_DATA_ROLE_Y\n"
@@ -873,6 +901,7 @@ msgid "Bubble Sizes"
msgstr ""
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_DATA_ROLE_X_ERROR\n"
@@ -897,6 +926,7 @@ msgid "Negative X-Error-Bars"
msgstr ""
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_DATA_ROLE_Y_ERROR\n"
@@ -1035,6 +1065,7 @@ msgid "Left-to-right"
msgstr ""
#: Strings.src
+#, fuzzy
msgctxt ""
"Strings.src\n"
"STR_TEXT_DIRECTION_RTL\n"
@@ -1067,6 +1098,7 @@ msgid "Realistic"
msgstr ""
#: Strings_AdditionalControls.src
+#, fuzzy
msgctxt ""
"Strings_AdditionalControls.src\n"
"STR_3DSCHEME_CUSTOM\n"
@@ -1091,6 +1123,7 @@ msgid "~Number of lines"
msgstr ""
#: Strings_AdditionalControls.src
+#, fuzzy
msgctxt ""
"Strings_AdditionalControls.src\n"
"STR_TEXT_SEPARATOR\n"
@@ -1419,6 +1452,7 @@ msgid "Negative"
msgstr ""
#: Strings_Statistic.src
+#, fuzzy
msgctxt ""
"Strings_Statistic.src\n"
"STR_INDICATE_UP\n"
@@ -1475,6 +1509,7 @@ msgid "Mean (%SERIESNAME)"
msgstr ""
#: dlg_DataEditor.src
+#, fuzzy
msgctxt ""
"dlg_DataEditor.src\n"
"DLG_DIAGRAM_DATA.TBX_DATA\n"
@@ -1502,6 +1537,7 @@ msgid "Insert Text Column"
msgstr ""
#: dlg_DataEditor.src
+#, fuzzy
msgctxt ""
"dlg_DataEditor.src\n"
"DLG_DIAGRAM_DATA.TBX_DATA\n"
@@ -1599,6 +1635,7 @@ msgid "~Z axis"
msgstr ""
#: dlg_InsertAxis_Grid.src
+#, fuzzy
msgctxt ""
"dlg_InsertAxis_Grid.src\n"
"DLG_AXIS_OR_GRID\n"
@@ -1617,6 +1654,7 @@ msgid "Minor grids"
msgstr ""
#: dlg_ShapeFont.src
+#, fuzzy
msgctxt ""
"dlg_ShapeFont.src\n"
"DLG_SHAPE_FONT.1\n"
@@ -1626,6 +1664,7 @@ msgid "Font"
msgstr "Tipo de letra"
#: dlg_ShapeFont.src
+#, fuzzy
msgctxt ""
"dlg_ShapeFont.src\n"
"DLG_SHAPE_FONT.1\n"
@@ -1661,6 +1700,7 @@ msgid "Indents & Spacing"
msgstr ""
#: dlg_ShapeParagraph.src
+#, fuzzy
msgctxt ""
"dlg_ShapeParagraph.src\n"
"DLG_SHAPE_PARAGRAPH.1\n"
@@ -1670,6 +1710,7 @@ msgid "Alignment"
msgstr "Aliniación"
#: dlg_ShapeParagraph.src
+#, fuzzy
msgctxt ""
"dlg_ShapeParagraph.src\n"
"DLG_SHAPE_PARAGRAPH.1\n"
@@ -1679,6 +1720,7 @@ msgid "Asian Typography"
msgstr "Tipografía asiatica"
#: dlg_ShapeParagraph.src
+#, fuzzy
msgctxt ""
"dlg_ShapeParagraph.src\n"
"DLG_SHAPE_PARAGRAPH.1\n"
@@ -1992,6 +2034,7 @@ msgid "Error Category"
msgstr ""
#: res_ErrorBar_tmpl.hrc
+#, fuzzy
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
"RESOURCE_ERRORBARS(availablewidth, yoffset)\n"
@@ -2019,6 +2062,7 @@ msgid "~Percentage"
msgstr ""
#: res_ErrorBar_tmpl.hrc
+#, fuzzy
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
"RESOURCE_ERRORBARS(availablewidth, yoffset)\n"
@@ -2082,6 +2126,7 @@ msgid "Positive ~and Negative"
msgstr ""
#: res_ErrorBar_tmpl.hrc
+#, fuzzy
msgctxt ""
"res_ErrorBar_tmpl.hrc\n"
"RESOURCE_ERRORBARS(availablewidth, yoffset)\n"
@@ -2127,6 +2172,7 @@ msgid "~Right"
msgstr "~Dreita"
#: res_LegendPosition_tmpl.hrc
+#, fuzzy
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
"RESOURCE_LEGENDPOSITION( xpos , ypos )\n"
@@ -2136,6 +2182,7 @@ msgid "~Top"
msgstr "Cobalto"
#: res_LegendPosition_tmpl.hrc
+#, fuzzy
msgctxt ""
"res_LegendPosition_tmpl.hrc\n"
"RESOURCE_LEGENDPOSITION( xpos , ypos )\n"
@@ -2172,6 +2219,7 @@ msgid "Z axi~s"
msgstr ""
#: res_TextSeparator.src
+#, fuzzy
msgctxt ""
"res_TextSeparator.src\n"
"LB_TEXT_SEPARATOR\n"
@@ -2181,6 +2229,7 @@ msgid "Space"
msgstr "~Espacio"
#: res_TextSeparator.src
+#, fuzzy
msgctxt ""
"res_TextSeparator.src\n"
"LB_TEXT_SEPARATOR\n"
@@ -2190,6 +2239,7 @@ msgid "Comma"
msgstr "Co~ma"
#: res_TextSeparator.src
+#, fuzzy
msgctxt ""
"res_TextSeparator.src\n"
"LB_TEXT_SEPARATOR\n"
@@ -2262,6 +2312,7 @@ msgid "~Z axis"
msgstr ""
#: res_Titlesx_tmpl.hrc
+#, fuzzy
msgctxt ""
"res_Titlesx_tmpl.hrc\n"
"TITLES( xpos, ypos, availableWidth, indentLabel, fixedLinesHeight )\n"
@@ -2298,6 +2349,7 @@ msgid "Regression Type"
msgstr ""
#: res_Trendline_tmpl.hrc
+#, fuzzy
msgctxt ""
"res_Trendline_tmpl.hrc\n"
"RESOURCE_TRENDLINE(availablewidth, yoffset)\n"
@@ -2485,6 +2537,7 @@ msgid "Light Preview"
msgstr ""
#: tp_AxisLabel.src
+#, fuzzy
msgctxt ""
"tp_AxisLabel.src\n"
"TP_AXIS_LABEL\n"
@@ -2557,6 +2610,7 @@ msgid "Order"
msgstr ""
#: tp_AxisLabel.src
+#, fuzzy
msgctxt ""
"tp_AxisLabel.src\n"
"TP_AXIS_LABEL\n"
@@ -2584,6 +2638,7 @@ msgid "Stagger ~even"
msgstr ""
#: tp_AxisLabel.src
+#, fuzzy
msgctxt ""
"tp_AxisLabel.src\n"
"TP_AXIS_LABEL\n"
@@ -2647,6 +2702,7 @@ msgid "Value"
msgstr "Valura"
#: tp_AxisPositions.src
+#, fuzzy
msgctxt ""
"tp_AxisPositions.src\n"
"TP_AXIS_POSITIONS.LB_CROSSES_OTHER_AXIS_AT\n"
@@ -2665,6 +2721,7 @@ msgid "Axis ~between categories"
msgstr ""
#: tp_AxisPositions.src
+#, fuzzy
msgctxt ""
"tp_AxisPositions.src\n"
"TP_AXIS_POSITIONS\n"
@@ -2827,6 +2884,7 @@ msgid "At axis and labels"
msgstr ""
#: tp_AxisPositions.src
+#, fuzzy
msgctxt ""
"tp_AxisPositions.src\n"
"TP_AXIS_POSITIONS\n"
@@ -3007,6 +3065,7 @@ msgid "Ran~ge for %VALUETYPE"
msgstr ""
#: tp_DataSource.src
+#, fuzzy
msgctxt ""
"tp_DataSource.src\n"
"TP_DATA_SOURCE\n"
@@ -3034,6 +3093,7 @@ msgid "~Add"
msgstr "~Adhibir"
#: tp_DataSource.src
+#, fuzzy
msgctxt ""
"tp_DataSource.src\n"
"TP_DATA_SOURCE\n"
@@ -3043,6 +3103,7 @@ msgid "~Remove"
msgstr "Borrar"
#: tp_LegendPosition.src
+#, fuzzy
msgctxt ""
"tp_LegendPosition.src\n"
"TP_LEGEND_POS\n"
@@ -3196,6 +3257,7 @@ msgid "Years"
msgstr "Anyos"
#: tp_Scale.src
+#, fuzzy
msgctxt ""
"tp_Scale.src\n"
"TP_SCALE\n"
@@ -3223,6 +3285,7 @@ msgid "~Logarithmic scale"
msgstr ""
#: tp_Scale.src
+#, fuzzy
msgctxt ""
"tp_Scale.src\n"
"TP_SCALE\n"
@@ -3286,6 +3349,7 @@ msgid "Ma~ximum"
msgstr "Ma~ximo"
#: tp_Scale.src
+#, fuzzy
msgctxt ""
"tp_Scale.src\n"
"TP_SCALE\n"
@@ -3304,6 +3368,7 @@ msgid "R~esolution"
msgstr ""
#: tp_Scale.src
+#, fuzzy
msgctxt ""
"tp_Scale.src\n"
"TP_SCALE\n"
@@ -3322,6 +3387,7 @@ msgid "Ma~jor interval"
msgstr ""
#: tp_Scale.src
+#, fuzzy
msgctxt ""
"tp_Scale.src\n"
"TP_SCALE\n"
@@ -3349,6 +3415,7 @@ msgid "Minor inter~val"
msgstr ""
#: tp_Scale.src
+#, fuzzy
msgctxt ""
"tp_Scale.src\n"
"TP_SCALE\n"
@@ -3367,6 +3434,7 @@ msgid "Re~ference value"
msgstr ""
#: tp_Scale.src
+#, fuzzy
msgctxt ""
"tp_Scale.src\n"
"TP_SCALE\n"
@@ -3394,6 +3462,7 @@ msgid "Primary Y axis"
msgstr ""
#: tp_SeriesToAxis.src
+#, fuzzy
msgctxt ""
"tp_SeriesToAxis.src\n"
"TP_OPTIONS\n"
diff --git a/source/an/chart2/uiconfig/ui.po b/source/an/chart2/uiconfig/ui.po
index 418c161bdaf..b71a0a79ac1 100644
--- a/source/an/chart2/uiconfig/ui.po
+++ b/source/an/chart2/uiconfig/ui.po
@@ -1,18 +1,20 @@
#. extracted from chart2/uiconfig/ui
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2012-08-09 15:48+0000\n"
+"Last-Translator: Chesús Daniel <xuxinho7@gmail.com>\n"
+"Language-Team: none\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1344527326.0\n"
#: smoothlinesdlg.ui
msgctxt ""
diff --git a/source/an/connectivity/source/resource.po b/source/an/connectivity/source/resource.po
index 2ef0c919393..f8ac55fd9e6 100644
--- a/source/an/connectivity/source/resource.po
+++ b/source/an/connectivity/source/resource.po
@@ -227,6 +227,7 @@ msgid "This statement type not supported by this database driver."
msgstr ""
#: conn_shared_res.src
+#, fuzzy
msgctxt ""
"conn_shared_res.src\n"
"STR_UNSPECIFIED_ERROR\n"
diff --git a/source/an/cui/source/customize.po b/source/an/cui/source/customize.po
index b7f5c8247ee..1ad6ce18d7a 100644
--- a/source/an/cui/source/customize.po
+++ b/source/an/cui/source/customize.po
@@ -73,6 +73,7 @@ msgid "~Category"
msgstr ""
#: acccfg.src
+#, fuzzy
msgctxt ""
"acccfg.src\n"
"FIXEDTEXT_TEXT_FUNCTION\n"
@@ -311,6 +312,7 @@ msgid "Menu Content"
msgstr ""
#: cfg.src
+#, fuzzy
msgctxt ""
"cfg.src\n"
"RID_SVXPAGE_MENUS\n"
@@ -320,6 +322,7 @@ msgid "Entries"
msgstr "~Entradas"
#: cfg.src
+#, fuzzy
msgctxt ""
"cfg.src\n"
"RID_SVXPAGE_MENUS\n"
@@ -597,6 +600,7 @@ msgid "Toolbar Content"
msgstr ""
#: cfg.src
+#, fuzzy
msgctxt ""
"cfg.src\n"
"RID_SVXSTR_COMMANDS\n"
@@ -605,6 +609,7 @@ msgid "Commands"
msgstr "Comentarios"
#: cfg.src
+#, fuzzy
msgctxt ""
"cfg.src\n"
"RID_SVXSTR_COMMAND\n"
@@ -754,6 +759,7 @@ msgid "M~acro..."
msgstr ""
#: eventdlg.src
+#, fuzzy
msgctxt ""
"eventdlg.src\n"
"RID_SVXPAGE_EVENTS\n"
@@ -808,6 +814,7 @@ msgid "Com~ponent..."
msgstr ""
#: macropg.src
+#, fuzzy
msgctxt ""
"macropg.src\n"
"RID_SVXPAGE_MACROASSIGN\n"
@@ -890,6 +897,7 @@ msgid "Open Document"
msgstr ""
#: macropg.src
+#, fuzzy
msgctxt ""
"macropg.src\n"
"RID_SVXSTR_EVENT_SAVEDOC\n"
@@ -898,6 +906,7 @@ msgid "Save Document"
msgstr "Compartir o documento"
#: macropg.src
+#, fuzzy
msgctxt ""
"macropg.src\n"
"RID_SVXSTR_EVENT_SAVEASDOC\n"
diff --git a/source/an/cui/source/dialogs.po b/source/an/cui/source/dialogs.po
index 9789112fad0..60c158795e9 100644
--- a/source/an/cui/source/dialogs.po
+++ b/source/an/cui/source/dialogs.po
@@ -43,6 +43,7 @@ msgid "RGB"
msgstr ""
#: colorpicker.src
+#, fuzzy
msgctxt ""
"colorpicker.src\n"
"RID_CUI_DIALOG_COLORPICKER\n"
@@ -52,6 +53,7 @@ msgid "~Red"
msgstr "Royo"
#: colorpicker.src
+#, fuzzy
msgctxt ""
"colorpicker.src\n"
"RID_CUI_DIALOG_COLORPICKER\n"
@@ -61,6 +63,7 @@ msgid "~Green"
msgstr "Verde"
#: colorpicker.src
+#, fuzzy
msgctxt ""
"colorpicker.src\n"
"RID_CUI_DIALOG_COLORPICKER\n"
@@ -160,6 +163,7 @@ msgid "~Key"
msgstr ""
#: commonlingui.src
+#, fuzzy
msgctxt ""
"commonlingui.src\n"
"RID_SVX_WND_COMMON_LINGU\n"
@@ -232,6 +236,7 @@ msgid "Options..."
msgstr "Opcions..."
#: commonlingui.src
+#, fuzzy
msgctxt ""
"commonlingui.src\n"
"RID_SVX_WND_COMMON_LINGU\n"
@@ -259,6 +264,7 @@ msgid "F~rame"
msgstr ""
#: cuiimapdlg.src
+#, fuzzy
msgctxt ""
"cuiimapdlg.src\n"
"RID_SVXDLG_IMAPURL\n"
@@ -277,6 +283,7 @@ msgid "Alternative ~text"
msgstr ""
#: cuiimapdlg.src
+#, fuzzy
msgctxt ""
"cuiimapdlg.src\n"
"RID_SVXDLG_IMAPURL\n"
@@ -286,6 +293,7 @@ msgid "~Description"
msgstr "Descripción"
#: cuiimapdlg.src
+#, fuzzy
msgctxt ""
"cuiimapdlg.src\n"
"RID_SVXDLG_IMAPURL\n"
@@ -342,6 +350,7 @@ msgid "Run"
msgstr ""
#: cuires.src
+#, fuzzy
msgctxt ""
"cuires.src\n"
"RID_SVXSTR_ROW\n"
@@ -350,6 +359,7 @@ msgid "Insert Rows"
msgstr "F~icar ringleras"
#: cuires.src
+#, fuzzy
msgctxt ""
"cuires.src\n"
"RID_SVXSTR_COL\n"
@@ -358,6 +368,7 @@ msgid "Insert Columns"
msgstr "~Ficar columnas"
#: cuires.src
+#, fuzzy
msgctxt ""
"cuires.src\n"
"RID_SVXSTR_AUTO_ENTRY\n"
@@ -383,6 +394,7 @@ msgid "Search for"
msgstr ""
#: fmsearch.src
+#, fuzzy
msgctxt ""
"fmsearch.src\n"
"RID_SVXDLG_SEARCHFORM\n"
@@ -446,6 +458,7 @@ msgid "Single field"
msgstr ""
#: fmsearch.src
+#, fuzzy
msgctxt ""
"fmsearch.src\n"
"RID_SVXDLG_SEARCHFORM\n"
@@ -455,6 +468,7 @@ msgid "Settings"
msgstr "Configuración"
#: fmsearch.src
+#, fuzzy
msgctxt ""
"fmsearch.src\n"
"RID_SVXDLG_SEARCHFORM\n"
@@ -590,6 +604,7 @@ msgid "Search"
msgstr ""
#: fmsearch.src
+#, fuzzy
msgctxt ""
"fmsearch.src\n"
"RID_SVXDLG_SEARCHFORM\n"
@@ -730,6 +745,7 @@ msgid "General"
msgstr ""
#: gallery.src
+#, fuzzy
msgctxt ""
"gallery.src\n"
"RID_SVXTABDLG_GALLERYTHEME.1\n"
@@ -747,6 +763,7 @@ msgid "Properties of "
msgstr ""
#: gallery.src
+#, fuzzy
msgctxt ""
"gallery.src\n"
"RID_SVXTABPAGE_GALLERY_GENERAL\n"
@@ -765,6 +782,7 @@ msgid "Location:"
msgstr ""
#: gallery.src
+#, fuzzy
msgctxt ""
"gallery.src\n"
"RID_SVXTABPAGE_GALLERY_GENERAL\n"
@@ -801,6 +819,7 @@ msgid "~Find Files..."
msgstr ""
#: gallery.src
+#, fuzzy
msgctxt ""
"gallery.src\n"
"RID_SVXTABPAGE_GALLERYTHEME_FILES\n"
@@ -889,6 +908,7 @@ msgid "Find"
msgstr ""
#: gallery.src
+#, fuzzy
msgctxt ""
"gallery.src\n"
"RID_SVXDLG_GALLERY_TAKE_PROGRESS\n"
@@ -898,6 +918,7 @@ msgid "File"
msgstr "~Fichero"
#: gallery.src
+#, fuzzy
msgctxt ""
"gallery.src\n"
"RID_SVXDLG_GALLERY_TAKE_PROGRESS\n"
@@ -906,6 +927,7 @@ msgid "Apply"
msgstr "Aplicar"
#: gallery.src
+#, fuzzy
msgctxt ""
"gallery.src\n"
"RID_SVXDLG_GALLERY_ACTUALIZE_PROGRESS\n"
@@ -1198,6 +1220,7 @@ msgid "~Find"
msgstr ""
#: hangulhanjadlg.src
+#, fuzzy
msgctxt ""
"hangulhanjadlg.src\n"
"RID_SVX_MDLG_HANGULHANJA\n"
@@ -1341,6 +1364,7 @@ msgid "User-defined dictionaries"
msgstr ""
#: hangulhanjadlg.src
+#, fuzzy
msgctxt ""
"hangulhanjadlg.src\n"
"RID_SVX_MDLG_HANGULHANJA_OPT\n"
@@ -1386,6 +1410,7 @@ msgid "New..."
msgstr ""
#: hangulhanjadlg.src
+#, fuzzy
msgctxt ""
"hangulhanjadlg.src\n"
"RID_SVX_MDLG_HANGULHANJA_OPT\n"
@@ -1395,6 +1420,7 @@ msgid "Edit..."
msgstr "~Editar..."
#: hangulhanjadlg.src
+#, fuzzy
msgctxt ""
"hangulhanjadlg.src\n"
"RID_SVX_MDLG_HANGULHANJA_OPT\n"
@@ -1421,6 +1447,7 @@ msgid "Dictionary"
msgstr ""
#: hangulhanjadlg.src
+#, fuzzy
msgctxt ""
"hangulhanjadlg.src\n"
"RID_SVX_MDLG_HANGULHANJA_NEWDICT\n"
@@ -1483,6 +1510,7 @@ msgid "New"
msgstr "Nuevo"
#: hangulhanjadlg.src
+#, fuzzy
msgctxt ""
"hangulhanjadlg.src\n"
"RID_SVX_MDLG_HANGULHANJA_EDIT\n"
@@ -1492,6 +1520,7 @@ msgid "Delete"
msgstr "Eliminar"
#: hangulhanjadlg.src
+#, fuzzy
msgctxt ""
"hangulhanjadlg.src\n"
"RID_SVX_MDLG_HANGULHANJA_EDIT\n"
@@ -1509,6 +1538,7 @@ msgid "Edit Custom Dictionary"
msgstr ""
#: hlmarkwn.src
+#, fuzzy
msgctxt ""
"hlmarkwn.src\n"
"RID_SVXFLOAT_HYPERLINK_MARKWND\n"
@@ -1518,6 +1548,7 @@ msgid "Apply"
msgstr "Aplicar"
#: hlmarkwn.src
+#, fuzzy
msgctxt ""
"hlmarkwn.src\n"
"RID_SVXFLOAT_HYPERLINK_MARKWND\n"
@@ -1640,6 +1671,7 @@ msgid "Open web browser, copy an URL, and paste it to Target field"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_INTERNET\n"
@@ -1667,6 +1699,7 @@ msgid "F~orm"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_INTERNET.LB_FORM\n"
@@ -1685,6 +1718,7 @@ msgid "Button"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_INTERNET\n"
@@ -1694,6 +1728,7 @@ msgid "Te~xt"
msgstr "Texto"
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_INTERNET\n"
@@ -1738,6 +1773,7 @@ msgid "Mail & news"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_MAIL\n"
@@ -1747,6 +1783,7 @@ msgid "~E-mail"
msgstr "Correu-e"
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_MAIL\n"
@@ -1792,6 +1829,7 @@ msgid "Data Sources..."
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_MAIL\n"
@@ -1819,6 +1857,7 @@ msgid "F~orm"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_MAIL.LB_FORM\n"
@@ -1837,6 +1876,7 @@ msgid "Button"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_MAIL\n"
@@ -1846,6 +1886,7 @@ msgid "Te~xt"
msgstr "Texto"
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_MAIL\n"
@@ -1881,6 +1922,7 @@ msgid "Hyperlink"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_DOCUMENT\n"
@@ -1971,6 +2013,7 @@ msgid "Target in Document"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_DOCUMENT\n"
@@ -1998,6 +2041,7 @@ msgid "F~orm"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_DOCUMENT.LB_FORM\n"
@@ -2016,6 +2060,7 @@ msgid "Button"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_DOCUMENT\n"
@@ -2025,6 +2070,7 @@ msgid "Te~xt"
msgstr "Texto"
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_DOCUMENT\n"
@@ -2123,6 +2169,7 @@ msgid "Select Path"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_NEWDOCUMENT\n"
@@ -2150,6 +2197,7 @@ msgid "F~orm"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_NEWDOCUMENT.LB_FORM\n"
@@ -2168,6 +2216,7 @@ msgid "Button"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_NEWDOCUMENT\n"
@@ -2177,6 +2226,7 @@ msgid "Te~xt"
msgstr "Texto"
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXPAGE_HYPERLINK_NEWDOCUMENT\n"
@@ -2220,6 +2270,7 @@ msgid "Hyperlink"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXSTR_HYPDLG_APPLYBUT\n"
@@ -2228,6 +2279,7 @@ msgid "Apply"
msgstr "Aplicar"
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXSTR_HYPDLG_CLOSEBUT\n"
@@ -2300,6 +2352,7 @@ msgid "This is where you create a hyperlink to an e-mail address or newsgroup."
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXSTR_HYPERDLG_HLDOCTP\n"
@@ -2340,6 +2393,7 @@ msgid "Button"
msgstr ""
#: hyperdlg.src
+#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXSTR_HYPERDLG_FROM_TEXT\n"
@@ -2433,6 +2487,7 @@ msgid "Select files"
msgstr ""
#: multipat.src
+#, fuzzy
msgctxt ""
"multipat.src\n"
"RID_SVXSTR_FILE_HEADLINE\n"
@@ -2635,6 +2690,7 @@ msgid "Enter the name for the new macro."
msgstr ""
#: scriptdlg.src
+#, fuzzy
msgctxt ""
"scriptdlg.src\n"
"RID_DLG_NEWLIB\n"
@@ -2821,6 +2877,7 @@ msgid "A Scripting Framework error occurred while running the %LANGUAGENAME scri
msgstr ""
#: scriptdlg.src
+#, fuzzy
msgctxt ""
"scriptdlg.src\n"
"RID_SVXSTR_ERROR_TYPE_LABEL\n"
@@ -2837,6 +2894,7 @@ msgid "Message:"
msgstr ""
#: sdrcelldlg.src
+#, fuzzy
msgctxt ""
"sdrcelldlg.src\n"
"RID_SVX_FORMAT_CELLS_DLG.1\n"
@@ -2846,6 +2904,7 @@ msgid "Font"
msgstr "Tipo de letra"
#: sdrcelldlg.src
+#, fuzzy
msgctxt ""
"sdrcelldlg.src\n"
"RID_SVX_FORMAT_CELLS_DLG.1\n"
@@ -2864,6 +2923,7 @@ msgid "Borders"
msgstr "Cantos"
#: sdrcelldlg.src
+#, fuzzy
msgctxt ""
"sdrcelldlg.src\n"
"RID_SVX_FORMAT_CELLS_DLG.1\n"
@@ -2882,6 +2942,7 @@ msgid "Return"
msgstr ""
#: sdrcelldlg.src
+#, fuzzy
msgctxt ""
"sdrcelldlg.src\n"
"RID_SVX_FORMAT_CELLS_DLG\n"
@@ -2907,6 +2968,7 @@ msgid "Show columns"
msgstr ""
#: srchxtra.src
+#, fuzzy
msgctxt ""
"srchxtra.src\n"
"RID_SVXDLG_SEARCHFORMAT.1\n"
@@ -2916,6 +2978,7 @@ msgid "Font"
msgstr "Tipo de letra"
#: srchxtra.src
+#, fuzzy
msgctxt ""
"srchxtra.src\n"
"RID_SVXDLG_SEARCHFORMAT.1\n"
@@ -2925,6 +2988,7 @@ msgid "Font Effects"
msgstr "Efectos de letra"
#: srchxtra.src
+#, fuzzy
msgctxt ""
"srchxtra.src\n"
"RID_SVXDLG_SEARCHFORMAT.1\n"
@@ -2979,6 +3043,7 @@ msgid "Asian Typography"
msgstr "Tipografía asiatica"
#: srchxtra.src
+#, fuzzy
msgctxt ""
"srchxtra.src\n"
"RID_SVXDLG_SEARCHFORMAT.1\n"
@@ -2996,6 +3061,7 @@ msgid "Text Format"
msgstr ""
#: srchxtra.src
+#, fuzzy
msgctxt ""
"srchxtra.src\n"
"RID_SVXDLG_SEARCHATTR\n"
@@ -3049,6 +3115,7 @@ msgid "~Combine"
msgstr ""
#: srchxtra.src
+#, fuzzy
msgctxt ""
"srchxtra.src\n"
"RID_SVXDLG_SEARCHSIMILARITY\n"
@@ -3102,6 +3169,7 @@ msgid "Status"
msgstr "Estau"
#: svuidlg.src
+#, fuzzy
msgctxt ""
"svuidlg.src\n"
"MD_UPDATE_BASELINKS\n"
@@ -3120,6 +3188,7 @@ msgid "~Update"
msgstr ""
#: svuidlg.src
+#, fuzzy
msgctxt ""
"svuidlg.src\n"
"MD_UPDATE_BASELINKS\n"
@@ -3165,6 +3234,7 @@ msgid "Element:"
msgstr ""
#: svuidlg.src
+#, fuzzy
msgctxt ""
"svuidlg.src\n"
"MD_UPDATE_BASELINKS\n"
@@ -3192,6 +3262,7 @@ msgid "~Automatic"
msgstr "~Automatico"
#: svuidlg.src
+#, fuzzy
msgctxt ""
"svuidlg.src\n"
"MD_UPDATE_BASELINKS\n"
@@ -3210,6 +3281,7 @@ msgid "Automatic"
msgstr "Automatica"
#: svuidlg.src
+#, fuzzy
msgctxt ""
"svuidlg.src\n"
"MD_UPDATE_BASELINKS\n"
@@ -3228,6 +3300,7 @@ msgid "Not available"
msgstr ""
#: svuidlg.src
+#, fuzzy
msgctxt ""
"svuidlg.src\n"
"MD_UPDATE_BASELINKS\n"
@@ -3237,6 +3310,7 @@ msgid "Graphic"
msgstr "Graficos"
#: svuidlg.src
+#, fuzzy
msgctxt ""
"svuidlg.src\n"
"MD_UPDATE_BASELINKS\n"
@@ -3334,6 +3408,7 @@ msgid "~Search..."
msgstr ""
#: svuidlg.src
+#, fuzzy
msgctxt ""
"svuidlg.src\n"
"MD_INSERT_OBJECT_APPLET\n"
@@ -3343,6 +3418,7 @@ msgid "File"
msgstr "~Fichero"
#: svuidlg.src
+#, fuzzy
msgctxt ""
"svuidlg.src\n"
"MD_INSERT_OBJECT_APPLET\n"
diff --git a/source/an/cui/source/options.po b/source/an/cui/source/options.po
index fd47e657f9e..e9bff7c8dc6 100644
--- a/source/an/cui/source/options.po
+++ b/source/an/cui/source/options.po
@@ -35,6 +35,7 @@ msgid "Select or add the correct Network Security Services Certificate directory
msgstr ""
#: certpath.src
+#, fuzzy
msgctxt ""
"certpath.src\n"
"RID_SVXDLG_CERTPATH\n"
@@ -53,6 +54,7 @@ msgid "Select a Certificate directory"
msgstr ""
#: certpath.src
+#, fuzzy
msgctxt ""
"certpath.src\n"
"RID_SVXDLG_CERTPATH\n"
@@ -196,6 +198,7 @@ msgid "Registered name"
msgstr ""
#: dbregister.src
+#, fuzzy
msgctxt ""
"dbregister.src\n"
"RID_SFXPAGE_DBREGISTER\n"
@@ -214,6 +217,7 @@ msgid "~New..."
msgstr ""
#: dbregister.src
+#, fuzzy
msgctxt ""
"dbregister.src\n"
"RID_SFXPAGE_DBREGISTER\n"
@@ -223,6 +227,7 @@ msgid "~Edit..."
msgstr "~Editar..."
#: dbregister.src
+#, fuzzy
msgctxt ""
"dbregister.src\n"
"RID_SFXPAGE_DBREGISTER\n"
@@ -249,6 +254,7 @@ msgid "Registered databases"
msgstr ""
#: doclinkdialog.src
+#, fuzzy
msgctxt ""
"doclinkdialog.src\n"
"DLG_DOCUMENTLINK\n"
@@ -469,6 +475,7 @@ msgid "~Language"
msgstr ""
#: optasian.src
+#, fuzzy
msgctxt ""
"optasian.src\n"
"RID_SVXPAGE_ASIAN_LAYOUT\n"
@@ -540,6 +547,7 @@ msgid "~Add"
msgstr "~Adhibir"
#: optchart.src
+#, fuzzy
msgctxt ""
"optchart.src\n"
"RID_OPTPAGE_CHART_DEFCOLORS\n"
@@ -549,6 +557,7 @@ msgid "~Remove"
msgstr "Borrar"
#: optchart.src
+#, fuzzy
msgctxt ""
"optchart.src\n"
"RID_OPTPAGE_CHART_DEFCOLORS\n"
@@ -574,6 +583,7 @@ msgid "Data Series $(ROW)"
msgstr ""
#: optchart.src
+#, fuzzy
msgctxt ""
"optchart.src\n"
"RID_OPTQB_COLOR_CHART_DELETE\n"
@@ -590,6 +600,7 @@ msgid "Chart Color Deletion"
msgstr ""
#: optcolor.src
+#, fuzzy
msgctxt ""
"optcolor.src\n"
"RID_SVXQB_DELETE_COLOR_CONFIG\n"
@@ -676,6 +687,7 @@ msgid "Movement"
msgstr ""
#: optctl.src
+#, fuzzy
msgctxt ""
"optctl.src\n"
"RID_SVXPAGE_OPTIONS_CTL\n"
@@ -739,6 +751,7 @@ msgid "System"
msgstr ""
#: optctl.src
+#, fuzzy
msgctxt ""
"optctl.src\n"
"RID_SVXPAGE_OPTIONS_CTL.LB_NUMERALS\n"
@@ -845,6 +858,7 @@ msgid "~New"
msgstr "~Nuevo"
#: optdict.src
+#, fuzzy
msgctxt ""
"optdict.src\n"
"RID_SFXDLG_EDITDICT\n"
@@ -1263,6 +1277,7 @@ msgid "~Copy local graphics to Internet"
msgstr ""
#: opthtml.src
+#, fuzzy
msgctxt ""
"opthtml.src\n"
"FT_CHARSET\n"
@@ -1340,6 +1355,7 @@ msgid "For example: -Dmyprop=c:\\program files\\java"
msgstr ""
#: optjava.src
+#, fuzzy
msgctxt ""
"optjava.src\n"
"RID_SVXDLG_JAVA_PARAMETER\n"
@@ -1384,6 +1400,7 @@ msgid "Add ~Folder"
msgstr ""
#: optjava.src
+#, fuzzy
msgctxt ""
"optjava.src\n"
"RID_SVXDLG_JAVA_CLASSPATH\n"
@@ -1628,6 +1645,7 @@ msgid "Searching in Japanese"
msgstr ""
#: optlingu.src
+#, fuzzy
msgctxt ""
"optlingu.src\n"
"RID_SVXDLG_EDIT_MODULES\n"
@@ -1682,6 +1700,7 @@ msgid "~Get more dictionaries online..."
msgstr ""
#: optlingu.src
+#, fuzzy
msgctxt ""
"optlingu.src\n"
"RID_SVXDLG_EDIT_MODULES\n"
@@ -1788,6 +1807,7 @@ msgid "Available language modules"
msgstr ""
#: optlingu.src
+#, fuzzy
msgctxt ""
"optlingu.src\n"
"RID_SFXPAGE_LINGU\n"
@@ -1815,6 +1835,7 @@ msgid "~New..."
msgstr ""
#: optlingu.src
+#, fuzzy
msgctxt ""
"optlingu.src\n"
"RID_SFXPAGE_LINGU\n"
@@ -1824,6 +1845,7 @@ msgid "Ed~it..."
msgstr "~Editar..."
#: optlingu.src
+#, fuzzy
msgctxt ""
"optlingu.src\n"
"RID_SFXPAGE_LINGU\n"
@@ -1833,6 +1855,7 @@ msgid "~Delete"
msgstr "Eli~minar"
#: optlingu.src
+#, fuzzy
msgctxt ""
"optlingu.src\n"
"RID_SFXPAGE_LINGU\n"
@@ -1842,6 +1865,7 @@ msgid "~Options"
msgstr "Opcions"
#: optlingu.src
+#, fuzzy
msgctxt ""
"optlingu.src\n"
"RID_SFXPAGE_LINGU\n"
@@ -1977,6 +2001,7 @@ msgid "Edit Options"
msgstr ""
#: optlingu.src
+#, fuzzy
msgctxt ""
"optlingu.src\n"
"RID_SFXPAGE_LINGU\n"
@@ -2083,6 +2108,7 @@ msgid "Dictionaries"
msgstr ""
#: optpath.src
+#, fuzzy
msgctxt ""
"optpath.src\n"
"RID_SVXSTR_KEY_HELP_DIR\n"
@@ -2222,6 +2248,7 @@ msgid "The selected module could not be loaded."
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE\n"
@@ -2266,6 +2293,7 @@ msgid "Memory"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS\n"
@@ -2275,6 +2303,7 @@ msgid "View"
msgstr "Veyer"
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS\n"
@@ -2302,6 +2331,7 @@ msgid "Colors"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_GENERAL_OPTIONS\n"
@@ -2473,6 +2503,7 @@ msgid "General"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS\n"
@@ -2491,6 +2522,7 @@ msgid "Formatting Aids"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS\n"
@@ -2527,6 +2559,7 @@ msgid "Basic Fonts (CTL)"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS\n"
@@ -2536,6 +2569,7 @@ msgid "Print"
msgstr "Imprentar"
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS\n"
@@ -2599,6 +2633,7 @@ msgid "%PRODUCTNAME Writer/Web"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS\n"
@@ -2617,6 +2652,7 @@ msgid "Formatting Aids"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS\n"
@@ -2626,6 +2662,7 @@ msgid "Grid"
msgstr "~Rella"
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS\n"
@@ -2635,6 +2672,7 @@ msgid "Print"
msgstr "Imprentar"
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS\n"
@@ -2662,6 +2700,7 @@ msgid "%PRODUCTNAME Math"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SM_EDITOPTIONS\n"
@@ -2689,6 +2728,7 @@ msgid "General"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS\n"
@@ -2698,6 +2738,7 @@ msgid "Defaults"
msgstr "Por defecto"
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS\n"
@@ -2725,6 +2766,7 @@ msgid "Calculate"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS\n"
@@ -2761,6 +2803,7 @@ msgid "Compatibility"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS\n"
@@ -2770,6 +2813,7 @@ msgid "Grid"
msgstr "~Rella"
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SC_EDITOPTIONS\n"
@@ -2797,6 +2841,7 @@ msgid "General"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS\n"
@@ -2806,6 +2851,7 @@ msgid "View"
msgstr "Veyer"
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS\n"
@@ -2815,6 +2861,7 @@ msgid "Grid"
msgstr "~Rella"
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_EDITOPTIONS\n"
@@ -2842,6 +2889,7 @@ msgid "General"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS\n"
@@ -2851,6 +2899,7 @@ msgid "View"
msgstr "Veyer"
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS\n"
@@ -2860,6 +2909,7 @@ msgid "Grid"
msgstr "~Rella"
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SD_GRAPHIC_OPTIONS\n"
@@ -2869,6 +2919,7 @@ msgid "Print"
msgstr "Imprentar"
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SCH_EDITOPTIONS\n"
@@ -2950,6 +3001,7 @@ msgid "Connections"
msgstr ""
#: treeopt.src
+#, fuzzy
msgctxt ""
"treeopt.src\n"
"RID_OFADLG_OPTIONS_TREE_PAGES.SID_SB_STARBASEOPTIONS\n"
diff --git a/source/an/cui/source/tabpages.po b/source/an/cui/source/tabpages.po
index 79b1149f53a..09e3f9dac36 100644
--- a/source/an/cui/source/tabpages.po
+++ b/source/an/cui/source/tabpages.po
@@ -97,6 +97,7 @@ msgid "Settings"
msgstr "Configuración"
#: autocdlg.src
+#, fuzzy
msgctxt ""
"autocdlg.src\n"
"RID_OFAPAGE_AUTOFMT_APPLY\n"
@@ -205,6 +206,7 @@ msgid "Create table"
msgstr ""
#: autocdlg.src
+#, fuzzy
msgctxt ""
"autocdlg.src\n"
"RID_OFAPAGE_AUTOFMT_APPLY\n"
@@ -321,6 +323,7 @@ msgid "~End quote:"
msgstr ""
#: autocdlg.src
+#, fuzzy
msgctxt ""
"autocdlg.src\n"
"RID_OFAPAGE_AUTOCORR_QUOTE\n"
@@ -366,6 +369,7 @@ msgid "E~nd quote:"
msgstr ""
#: autocdlg.src
+#, fuzzy
msgctxt ""
"autocdlg.src\n"
"RID_OFAPAGE_AUTOCORR_QUOTE\n"
@@ -393,6 +397,7 @@ msgid "End quote"
msgstr ""
#: autocdlg.src
+#, fuzzy
msgctxt ""
"autocdlg.src\n"
"RID_OFAPAGE_AUTOCORR_QUOTE\n"
@@ -588,6 +593,7 @@ msgid "Smart Tags"
msgstr ""
#: bbdlg.src
+#, fuzzy
msgctxt ""
"bbdlg.src\n"
"RID_SVXDLG_BBDLG.1\n"
@@ -597,6 +603,7 @@ msgid "Borders"
msgstr "Cantos"
#: bbdlg.src
+#, fuzzy
msgctxt ""
"bbdlg.src\n"
"RID_SVXDLG_BBDLG.1\n"
@@ -750,6 +757,7 @@ msgid "Cast Shadow to Top Left"
msgstr ""
#: connect.src
+#, fuzzy
msgctxt ""
"connect.src\n"
"RID_SVXPAGE_CONNECTION\n"
@@ -795,6 +803,7 @@ msgid "Line ~3"
msgstr ""
#: connect.src
+#, fuzzy
msgctxt ""
"connect.src\n"
"RID_SVXPAGE_CONNECTION\n"
@@ -857,6 +866,7 @@ msgid "Connector"
msgstr ""
#: dstribut.src
+#, fuzzy
msgctxt ""
"dstribut.src\n"
"RID_SVXPAGE_DISTRIBUTE\n"
@@ -875,6 +885,7 @@ msgid "~None"
msgstr "~Garra"
#: dstribut.src
+#, fuzzy
msgctxt ""
"dstribut.src\n"
"RID_SVXPAGE_DISTRIBUTE\n"
@@ -884,6 +895,7 @@ msgid "~Left"
msgstr "C~ucha"
#: dstribut.src
+#, fuzzy
msgctxt ""
"dstribut.src\n"
"RID_SVXPAGE_DISTRIBUTE\n"
@@ -902,6 +914,7 @@ msgid "~Spacing"
msgstr ""
#: dstribut.src
+#, fuzzy
msgctxt ""
"dstribut.src\n"
"RID_SVXPAGE_DISTRIBUTE\n"
@@ -911,6 +924,7 @@ msgid "~Right"
msgstr "~Dreita"
#: dstribut.src
+#, fuzzy
msgctxt ""
"dstribut.src\n"
"RID_SVXPAGE_DISTRIBUTE\n"
@@ -920,6 +934,7 @@ msgid "Vertical"
msgstr "~Vertical"
#: dstribut.src
+#, fuzzy
msgctxt ""
"dstribut.src\n"
"RID_SVXPAGE_DISTRIBUTE\n"
@@ -929,6 +944,7 @@ msgid "N~one"
msgstr "~Garra"
#: dstribut.src
+#, fuzzy
msgctxt ""
"dstribut.src\n"
"RID_SVXPAGE_DISTRIBUTE\n"
@@ -938,6 +954,7 @@ msgid "~Top"
msgstr "Cobalto"
#: dstribut.src
+#, fuzzy
msgctxt ""
"dstribut.src\n"
"RID_SVXPAGE_DISTRIBUTE\n"
@@ -956,6 +973,7 @@ msgid "S~pacing"
msgstr ""
#: dstribut.src
+#, fuzzy
msgctxt ""
"dstribut.src\n"
"RID_SVXPAGE_DISTRIBUTE\n"
@@ -981,6 +999,7 @@ msgid "Left-to-right"
msgstr ""
#: frmdirlbox.src
+#, fuzzy
msgctxt ""
"frmdirlbox.src\n"
"RID_SVXSTR_FRAMEDIR_RTL\n"
@@ -1038,6 +1057,7 @@ msgid "Crop"
msgstr ""
#: grfpage.src
+#, fuzzy
msgctxt ""
"grfpage.src\n"
"RID_SVXPAGE_GRFCROP\n"
@@ -1047,6 +1067,7 @@ msgid "~Left"
msgstr "C~ucha"
#: grfpage.src
+#, fuzzy
msgctxt ""
"grfpage.src\n"
"RID_SVXPAGE_GRFCROP\n"
@@ -1056,6 +1077,7 @@ msgid "~Right"
msgstr "~Dreita"
#: grfpage.src
+#, fuzzy
msgctxt ""
"grfpage.src\n"
"RID_SVXPAGE_GRFCROP\n"
@@ -1065,6 +1087,7 @@ msgid "~Top"
msgstr "Cobalto"
#: grfpage.src
+#, fuzzy
msgctxt ""
"grfpage.src\n"
"RID_SVXPAGE_GRFCROP\n"
@@ -1263,6 +1286,7 @@ msgid "From left"
msgstr ""
#: labdlg.src
+#, fuzzy
msgctxt ""
"labdlg.src\n"
"RID_SVXPAGE_CAPTION.LB_ANSATZ\n"
@@ -1272,6 +1296,7 @@ msgid "Horizontal"
msgstr "~Horizontal"
#: labdlg.src
+#, fuzzy
msgctxt ""
"labdlg.src\n"
"RID_SVXPAGE_CAPTION.LB_ANSATZ\n"
@@ -1290,6 +1315,7 @@ msgid "~By"
msgstr ""
#: labdlg.src
+#, fuzzy
msgctxt ""
"labdlg.src\n"
"RID_SVXPAGE_CAPTION\n"
@@ -1413,6 +1439,7 @@ msgid "Event"
msgstr ""
#: macroass.src
+#, fuzzy
msgctxt ""
"macroass.src\n"
"RID_SVXPAGE_EVENTASSIGN\n"
@@ -1440,6 +1467,7 @@ msgid "~Assign"
msgstr ""
#: macroass.src
+#, fuzzy
msgctxt ""
"macroass.src\n"
"RID_SVXPAGE_EVENTASSIGN\n"
@@ -1449,6 +1477,7 @@ msgid "~Remove"
msgstr "Borrar"
#: macroass.src
+#, fuzzy
msgctxt ""
"macroass.src\n"
"RID_SVXPAGE_EVENTASSIGN\n"
@@ -1458,6 +1487,7 @@ msgid "Macros"
msgstr "~Macros"
#: macroass.src
+#, fuzzy
msgctxt ""
"macroass.src\n"
"RID_SVXPAGE_EVENTASSIGN\n"
@@ -1466,6 +1496,7 @@ msgid "Assign Macro"
msgstr "Asig~nar una macro..."
#: measure.src
+#, fuzzy
msgctxt ""
"measure.src\n"
"RID_SVXPAGE_MEASURE\n"
@@ -1529,6 +1560,7 @@ msgid "Measure ~below object"
msgstr ""
#: measure.src
+#, fuzzy
msgctxt ""
"measure.src\n"
"RID_SVXPAGE_MEASURE\n"
@@ -1592,6 +1624,7 @@ msgid "Show ~meas. units"
msgstr ""
#: measure.src
+#, fuzzy
msgctxt ""
"measure.src\n"
"RID_SVXPAGE_MEASURE\n"
@@ -1762,6 +1795,7 @@ msgid "Big 32 Kai"
msgstr ""
#: page.src
+#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXSTRARY_PAPERSIZE_STD\n"
@@ -2059,6 +2093,7 @@ msgid "Big 32 Kai"
msgstr ""
#: page.src
+#, fuzzy
msgctxt ""
"page.src\n"
"RID_SVXSTRARY_PAPERSIZE_DRAW\n"
@@ -2185,6 +2220,7 @@ msgid "~First line"
msgstr ""
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_STD_PARAGRAPH\n"
@@ -2311,6 +2347,7 @@ msgid "of"
msgstr ""
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_STD_PARAGRAPH\n"
@@ -2346,6 +2383,7 @@ msgid "Indents and Spacing"
msgstr ""
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH\n"
@@ -2355,6 +2393,7 @@ msgid "Options"
msgstr "Opcions"
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH\n"
@@ -2364,6 +2403,7 @@ msgid "~Left"
msgstr "C~ucha"
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH\n"
@@ -2373,6 +2413,7 @@ msgid "Righ~t"
msgstr "Enta la dreita"
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH\n"
@@ -2382,6 +2423,7 @@ msgid "~Center"
msgstr "~Centrau"
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH\n"
@@ -2418,6 +2460,7 @@ msgid "~Last line"
msgstr ""
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE\n"
@@ -2427,6 +2470,7 @@ msgid "Default"
msgstr "Por defecto"
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE\n"
@@ -2436,6 +2480,7 @@ msgid "Left"
msgstr "Enta la cucha"
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE\n"
@@ -2445,6 +2490,7 @@ msgid "Centered"
msgstr "~Centrau"
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH.LB_LASTLINE\n"
@@ -2481,6 +2527,7 @@ msgid "Text-to-text"
msgstr ""
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH\n"
@@ -2490,6 +2537,7 @@ msgid "~Alignment"
msgstr "~Aliniación"
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN\n"
@@ -2508,6 +2556,7 @@ msgid "Base line"
msgstr ""
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN\n"
@@ -2526,6 +2575,7 @@ msgid "Middle"
msgstr ""
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH.LB_VERTALIGN\n"
@@ -2535,6 +2585,7 @@ msgid "Bottom"
msgstr "Cobaixo"
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH\n"
@@ -2553,6 +2604,7 @@ msgid "Text ~direction"
msgstr ""
#: paragrph.src
+#, fuzzy
msgctxt ""
"paragrph.src\n"
"RID_SVXPAGE_ALIGN_PARAGRAPH\n"
@@ -2697,6 +2749,7 @@ msgid "Modify"
msgstr ""
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"RID_SVXSTR_ADD\n"
@@ -2731,6 +2784,7 @@ msgid ""
msgstr ""
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"RID_SVXSTR_TABLE\n"
@@ -2831,6 +2885,7 @@ msgid "Font"
msgstr "Tipo de letra"
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"RID_SVXSTR_CHARNAME_STYLE\n"
@@ -2883,6 +2938,7 @@ msgid "~Keep ratio"
msgstr ""
#: swpossizetabpage.src
+#, fuzzy
msgctxt ""
"swpossizetabpage.src\n"
"RID_SVXPAGE_SWPOSSIZE\n"
@@ -2892,6 +2948,7 @@ msgid "Anchor"
msgstr "~Ancora"
#: swpossizetabpage.src
+#, fuzzy
msgctxt ""
"swpossizetabpage.src\n"
"RID_SVXPAGE_SWPOSSIZE\n"
@@ -2946,6 +3003,7 @@ msgid "Protect"
msgstr ""
#: swpossizetabpage.src
+#, fuzzy
msgctxt ""
"swpossizetabpage.src\n"
"RID_SVXPAGE_SWPOSSIZE\n"
@@ -2964,6 +3022,7 @@ msgid "~Size"
msgstr ""
#: swpossizetabpage.src
+#, fuzzy
msgctxt ""
"swpossizetabpage.src\n"
"RID_SVXPAGE_SWPOSSIZE\n"
@@ -2973,6 +3032,7 @@ msgid "Position"
msgstr "Posición"
#: swpossizetabpage.src
+#, fuzzy
msgctxt ""
"swpossizetabpage.src\n"
"RID_SVXPAGE_SWPOSSIZE\n"
@@ -3009,6 +3069,7 @@ msgid "~Mirror on even pages"
msgstr ""
#: swpossizetabpage.src
+#, fuzzy
msgctxt ""
"swpossizetabpage.src\n"
"RID_SVXPAGE_SWPOSSIZE\n"
@@ -3089,6 +3150,7 @@ msgid "Gradient"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_TRANSPARENCE\n"
@@ -3188,6 +3250,7 @@ msgid " degrees"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_TRANSPARENCE\n"
@@ -3223,6 +3286,7 @@ msgid "Transparency"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_AREA\n"
@@ -3232,6 +3296,7 @@ msgid "Fill"
msgstr "~Fichero"
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_AREA.LB_AREA_TYPE\n"
@@ -3241,6 +3306,7 @@ msgid "None"
msgstr "~Garra"
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_AREA.LB_AREA_TYPE\n"
@@ -3286,6 +3352,7 @@ msgid "Increments"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_AREA\n"
@@ -3313,6 +3380,7 @@ msgid "Size"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_AREA\n"
@@ -3349,6 +3417,7 @@ msgid "H~eight"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_AREA\n"
@@ -3376,6 +3445,7 @@ msgid "~Y Offset"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_AREA\n"
@@ -3403,6 +3473,7 @@ msgid "Offset"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_AREA\n"
@@ -3412,6 +3483,7 @@ msgid "Ro~w"
msgstr "Ringlera"
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_AREA\n"
@@ -3429,6 +3501,7 @@ msgid "Area"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_SHADOW\n"
@@ -3447,6 +3520,7 @@ msgid "~Use shadow"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_SHADOW\n"
@@ -3465,6 +3539,7 @@ msgid "~Distance"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_SHADOW\n"
@@ -3491,6 +3566,7 @@ msgid "Shadow"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_HATCH\n"
@@ -3572,6 +3648,7 @@ msgid "Line ~color"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_HATCH\n"
@@ -3634,6 +3711,7 @@ msgid "Hatching"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_BITMAP\n"
@@ -3679,6 +3757,7 @@ msgid "Bitmap"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXPAGE_BITMAP\n"
@@ -3777,6 +3856,7 @@ msgid "Transparency"
msgstr ""
#: tabarea.src
+#, fuzzy
msgctxt ""
"tabarea.src\n"
"RID_SVXDLG_AREA.1\n"
@@ -3847,6 +3927,7 @@ msgid "~Style"
msgstr "E~stilo"
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXPAGE_LINE\n"
@@ -3883,6 +3964,7 @@ msgid "Arrow styles"
msgstr ""
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXPAGE_LINE\n"
@@ -3901,6 +3983,7 @@ msgid "Wi~dth"
msgstr ""
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXPAGE_LINE\n"
@@ -3910,6 +3993,7 @@ msgid "Ce~nter"
msgstr "~Centrau"
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXPAGE_LINE\n"
@@ -4036,6 +4120,7 @@ msgid "No Symbol"
msgstr ""
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXPAGE_LINE.MB_SYMBOL_BITMAP\n"
@@ -4108,6 +4193,7 @@ msgid "Keep ratio"
msgstr ""
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXPAGE_LINE\n"
@@ -4171,6 +4257,7 @@ msgid "End with center"
msgstr ""
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXPAGE_LINE\n"
@@ -4179,6 +4266,7 @@ msgid "Lines"
msgstr "Enla~z"
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXPAGE_LINE_DEF\n"
@@ -4188,6 +4276,7 @@ msgid "Properties"
msgstr "Propiedatz..."
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXPAGE_LINE_DEF\n"
@@ -4233,6 +4322,7 @@ msgid "Dash"
msgstr ""
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXPAGE_LINE_DEF\n"
@@ -4278,6 +4368,7 @@ msgid "Line style"
msgstr ""
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXPAGE_LINE_DEF\n"
@@ -4421,6 +4512,7 @@ msgid "~Title"
msgstr "~Titol"
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXPAGE_LINEEND_DEF\n"
@@ -4474,6 +4566,7 @@ msgid "Arrowheads"
msgstr ""
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXDLG_LINE.TAB_CONTROL\n"
@@ -4510,6 +4603,7 @@ msgid "Arrow Styles"
msgstr ""
#: tabline.src
+#, fuzzy
msgctxt ""
"tabline.src\n"
"RID_SVXDLG_LINE\n"
@@ -4518,6 +4612,7 @@ msgid "Line"
msgstr "Enla~z"
#: tabstpge.src
+#, fuzzy
msgctxt ""
"tabstpge.src\n"
"RID_SVXPAGE_TABULATOR\n"
@@ -4527,6 +4622,7 @@ msgid "Position"
msgstr "Posición"
#: tabstpge.src
+#, fuzzy
msgctxt ""
"tabstpge.src\n"
"RID_SVXPAGE_TABULATOR\n"
@@ -4536,6 +4632,7 @@ msgid "Type"
msgstr "Tipo"
#: tabstpge.src
+#, fuzzy
msgctxt ""
"tabstpge.src\n"
"RID_SVXPAGE_TABULATOR\n"
@@ -4545,6 +4642,7 @@ msgid "~Left"
msgstr "C~ucha"
#: tabstpge.src
+#, fuzzy
msgctxt ""
"tabstpge.src\n"
"RID_SVXPAGE_TABULATOR\n"
@@ -4554,6 +4652,7 @@ msgid "Righ~t"
msgstr "Enta la dreita"
#: tabstpge.src
+#, fuzzy
msgctxt ""
"tabstpge.src\n"
"RID_SVXPAGE_TABULATOR\n"
@@ -4563,6 +4662,7 @@ msgid "C~entered"
msgstr "~Centrau"
#: tabstpge.src
+#, fuzzy
msgctxt ""
"tabstpge.src\n"
"RID_SVXPAGE_TABULATOR\n"
@@ -4590,6 +4690,7 @@ msgid "Fill character"
msgstr ""
#: tabstpge.src
+#, fuzzy
msgctxt ""
"tabstpge.src\n"
"RID_SVXPAGE_TABULATOR\n"
@@ -4608,6 +4709,7 @@ msgid "Character"
msgstr ""
#: tabstpge.src
+#, fuzzy
msgctxt ""
"tabstpge.src\n"
"RID_SVXPAGE_TABULATOR\n"
@@ -4626,6 +4728,7 @@ msgid "Delete ~All"
msgstr ""
#: tabstpge.src
+#, fuzzy
msgctxt ""
"tabstpge.src\n"
"RID_SVXPAGE_TABULATOR\n"
@@ -4778,6 +4881,7 @@ msgid "To Bottom"
msgstr ""
#: textanim.src
+#, fuzzy
msgctxt ""
"textanim.src\n"
"RID_SVXPAGE_TEXTANIMATION\n"
@@ -4859,6 +4963,7 @@ msgid "Delay"
msgstr ""
#: textanim.src
+#, fuzzy
msgctxt ""
"textanim.src\n"
"RID_SVXPAGE_TEXTANIMATION\n"
@@ -4885,6 +4990,7 @@ msgid "Animation"
msgstr ""
#: textanim.src
+#, fuzzy
msgctxt ""
"textanim.src\n"
"RID_SVXDLG_TEXT.1\n"
@@ -4903,6 +5009,7 @@ msgid "Text Animation"
msgstr ""
#: textanim.src
+#, fuzzy
msgctxt ""
"textanim.src\n"
"RID_SVXDLG_TEXT\n"
@@ -4911,6 +5018,7 @@ msgid "Text"
msgstr "Texto"
#: textattr.src
+#, fuzzy
msgctxt ""
"textattr.src\n"
"RID_SVXPAGE_TEXTATTR\n"
@@ -4983,6 +5091,7 @@ msgid "Spacing to borders"
msgstr ""
#: textattr.src
+#, fuzzy
msgctxt ""
"textattr.src\n"
"RID_SVXPAGE_TEXTATTR\n"
@@ -4992,6 +5101,7 @@ msgid "~Left"
msgstr "C~ucha"
#: textattr.src
+#, fuzzy
msgctxt ""
"textattr.src\n"
"RID_SVXPAGE_TEXTATTR\n"
@@ -5001,6 +5111,7 @@ msgid "~Right"
msgstr "~Dreita"
#: textattr.src
+#, fuzzy
msgctxt ""
"textattr.src\n"
"RID_SVXPAGE_TEXTATTR\n"
@@ -5010,6 +5121,7 @@ msgid "~Top"
msgstr "Cobalto"
#: textattr.src
+#, fuzzy
msgctxt ""
"textattr.src\n"
"RID_SVXPAGE_TEXTATTR\n"
@@ -5037,6 +5149,7 @@ msgid "Full ~width"
msgstr ""
#: textattr.src
+#, fuzzy
msgctxt ""
"textattr.src\n"
"RID_SVXPAGE_TEXTATTR\n"
@@ -5045,6 +5158,7 @@ msgid "Text"
msgstr "Texto"
#: transfrm.src
+#, fuzzy
msgctxt ""
"transfrm.src\n"
"RID_SVXPAGE_POSITION_SIZE\n"
@@ -5153,6 +5267,7 @@ msgid "Protect"
msgstr ""
#: transfrm.src
+#, fuzzy
msgctxt ""
"transfrm.src\n"
"RID_SVXPAGE_POSITION_SIZE\n"
@@ -5198,6 +5313,7 @@ msgid "Fit ~height to text"
msgstr ""
#: transfrm.src
+#, fuzzy
msgctxt ""
"transfrm.src\n"
"RID_SVXPAGE_POSITION_SIZE\n"
@@ -5234,6 +5350,7 @@ msgid "As character"
msgstr ""
#: transfrm.src
+#, fuzzy
msgctxt ""
"transfrm.src\n"
"RID_SVXPAGE_POSITION_SIZE.LB_ANCHOR\n"
@@ -5252,6 +5369,7 @@ msgid "To frame"
msgstr ""
#: transfrm.src
+#, fuzzy
msgctxt ""
"transfrm.src\n"
"RID_SVXPAGE_POSITION_SIZE\n"
@@ -5279,6 +5397,7 @@ msgid "Above"
msgstr ""
#: transfrm.src
+#, fuzzy
msgctxt ""
"transfrm.src\n"
"RID_SVXPAGE_POSITION_SIZE.LB_ORIENT\n"
diff --git a/source/an/cui/uiconfig/ui.po b/source/an/cui/uiconfig/ui.po
index ec37013d48d..283cd60173c 100644
--- a/source/an/cui/uiconfig/ui.po
+++ b/source/an/cui/uiconfig/ui.po
@@ -314,6 +314,7 @@ msgid "Exceptions"
msgstr ""
#: autocorrectdialog.ui
+#, fuzzy
msgctxt ""
"autocorrectdialog.ui\n"
"options\n"
@@ -323,6 +324,7 @@ msgid "Options"
msgstr "Opcions"
#: autocorrectdialog.ui
+#, fuzzy
msgctxt ""
"autocorrectdialog.ui\n"
"apply\n"
@@ -392,7 +394,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Row"
-msgstr "Ringlera"
+msgstr ""
#: backgroundpage.ui
msgctxt ""
@@ -401,7 +403,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Table"
-msgstr "Tabla"
+msgstr ""
#: backgroundpage.ui
msgctxt ""
@@ -467,13 +469,14 @@ msgid "Find graphics"
msgstr ""
#: backgroundpage.ui
+#, fuzzy
msgctxt ""
"backgroundpage.ui\n"
"browse\n"
"label\n"
"string.text"
msgid "_Browse..."
-msgstr "_Navegar..."
+msgstr "~Navegar..."
#: backgroundpage.ui
msgctxt ""
@@ -485,6 +488,7 @@ msgid "_Link"
msgstr ""
#: backgroundpage.ui
+#, fuzzy
msgctxt ""
"backgroundpage.ui\n"
"label2\n"
@@ -494,13 +498,14 @@ msgid "File"
msgstr "~Fichero"
#: backgroundpage.ui
+#, fuzzy
msgctxt ""
"backgroundpage.ui\n"
"positionrb\n"
"label\n"
"string.text"
msgid "_Position"
-msgstr ""
+msgstr "Posición"
#: backgroundpage.ui
msgctxt ""
@@ -527,7 +532,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Type"
-msgstr "Tipo"
+msgstr ""
#: backgroundpage.ui
msgctxt ""
@@ -590,16 +595,17 @@ msgctxt ""
"label\n"
"string.text"
msgid "_User-defined"
-msgstr "Definiu por l'_usuario"
+msgstr ""
#: borderpage.ui
+#, fuzzy
msgctxt ""
"borderpage.ui\n"
"label14\n"
"label\n"
"string.text"
msgid "_Default"
-msgstr "Por _defecto"
+msgstr "Por defecto"
#: borderpage.ui
msgctxt ""
@@ -611,13 +617,14 @@ msgid "Line arrangement"
msgstr ""
#: borderpage.ui
+#, fuzzy
msgctxt ""
"borderpage.ui\n"
"label15\n"
"label\n"
"string.text"
msgid "St_yle"
-msgstr ""
+msgstr "E~stilo"
#: borderpage.ui
msgctxt ""
@@ -635,7 +642,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Color"
-msgstr "_Color"
+msgstr ""
#: borderpage.ui
msgctxt ""
@@ -653,7 +660,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Left"
-msgstr "C_ucha"
+msgstr ""
#: borderpage.ui
msgctxt ""
@@ -662,7 +669,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Right"
-msgstr "Enta la dreita"
+msgstr ""
#: borderpage.ui
msgctxt ""
@@ -701,13 +708,14 @@ msgid "Spacing to contents"
msgstr ""
#: borderpage.ui
+#, fuzzy
msgctxt ""
"borderpage.ui\n"
"label22\n"
"label\n"
"string.text"
msgid "_Position"
-msgstr ""
+msgstr "Posición"
#: borderpage.ui
msgctxt ""
@@ -926,6 +934,7 @@ msgid "ABCD"
msgstr ""
#: cellalignment.ui
+#, fuzzy
msgctxt ""
"cellalignment.ui\n"
"liststoreHorzAlign\n"
@@ -941,7 +950,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Left"
-msgstr "Enta la cucha"
+msgstr ""
#: cellalignment.ui
msgctxt ""
@@ -959,7 +968,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Right"
-msgstr "Enta la dreita"
+msgstr ""
#: cellalignment.ui
msgctxt ""
@@ -989,6 +998,7 @@ msgid "Distributed"
msgstr ""
#: cellalignment.ui
+#, fuzzy
msgctxt ""
"cellalignment.ui\n"
"liststoreVertAlign\n"
@@ -1004,7 +1014,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Top"
-msgstr "Cobalto"
+msgstr ""
#: cellalignment.ui
msgctxt ""
@@ -1022,7 +1032,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Bottom"
-msgstr "Cobaixo"
+msgstr ""
#: cellalignment.ui
msgctxt ""
@@ -1052,6 +1062,7 @@ msgid "Family "
msgstr ""
#: charnamepage.ui
+#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"weststyleft-nocjk\n"
@@ -1079,6 +1090,7 @@ msgid "Language"
msgstr ""
#: charnamepage.ui
+#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"label21\n"
@@ -1097,6 +1109,7 @@ msgid "Family "
msgstr ""
#: charnamepage.ui
+#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"weststyleft-cjk\n"
@@ -1142,6 +1155,7 @@ msgid "Family "
msgstr ""
#: charnamepage.ui
+#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"eaststyleft\n"
@@ -1187,6 +1201,7 @@ msgid "Family "
msgstr ""
#: charnamepage.ui
+#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"ctlstyleft\n"
@@ -1463,7 +1478,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr "Texto"
+msgstr ""
#: colorconfigwin.ui
msgctxt ""
@@ -1472,7 +1487,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spreadsheet"
-msgstr "Fuella de calculo"
+msgstr ""
#: colorconfigwin.ui
msgctxt ""
@@ -1589,9 +1604,10 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr "Comentario"
+msgstr ""
#: colorconfigwin.ui
+#, fuzzy
msgctxt ""
"colorconfigwin.ui\n"
"basicnumber\n"
@@ -1616,7 +1632,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Operator"
-msgstr "Operador"
+msgstr ""
#: colorconfigwin.ui
msgctxt ""
@@ -1655,6 +1671,7 @@ msgid "Identifier"
msgstr ""
#: colorconfigwin.ui
+#, fuzzy
msgctxt ""
"colorconfigwin.ui\n"
"sqlnumber\n"
@@ -1679,7 +1696,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Operator"
-msgstr "Operador"
+msgstr ""
#: colorconfigwin.ui
msgctxt ""
@@ -1706,16 +1723,17 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comment"
-msgstr "Comentario"
+msgstr ""
#: colorpage.ui
+#, fuzzy
msgctxt ""
"colorpage.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "_Name"
-msgstr "_Nombre"
+msgstr "Nombre"
#: colorpage.ui
msgctxt ""
@@ -1904,7 +1922,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr "Autor"
+msgstr ""
#: comment.ui
msgctxt ""
@@ -1931,7 +1949,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author"
-msgstr "Autor"
+msgstr ""
#: comment.ui
msgctxt ""
@@ -1943,6 +1961,7 @@ msgid "Edit Comment"
msgstr ""
#: comment.ui
+#, fuzzy
msgctxt ""
"comment.ui\n"
"label1\n"
@@ -2003,7 +2022,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr "Eli_minar"
+msgstr ""
#: customize.ui
msgctxt ""
@@ -2030,7 +2049,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Entries"
-msgstr "_Entradas"
+msgstr ""
#: customize.ui
msgctxt ""
@@ -2039,7 +2058,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add..."
-msgstr "_Adhibir..."
+msgstr ""
#: customize.ui
msgctxt ""
@@ -2075,7 +2094,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr "Eli_minar"
+msgstr ""
#: customize.ui
msgctxt ""
@@ -2105,13 +2124,14 @@ msgid "Menu Content"
msgstr ""
#: customize.ui
+#, fuzzy
msgctxt ""
"customize.ui\n"
"label6\n"
"label\n"
"string.text"
msgid "_Description"
-msgstr ""
+msgstr "Descripción"
#: customize.ui
msgctxt ""
@@ -2177,13 +2197,14 @@ msgid "R_eset"
msgstr ""
#: customize.ui
+#, fuzzy
msgctxt ""
"customize.ui\n"
"label23\n"
"label\n"
"string.text"
msgid "_Category"
-msgstr ""
+msgstr "ID Categoría"
#: customize.ui
msgctxt ""
@@ -2192,7 +2213,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Function"
-msgstr "_Función"
+msgstr ""
#: customize.ui
msgctxt ""
@@ -2210,7 +2231,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Functions"
-msgstr "Funcions"
+msgstr ""
#: customize.ui
msgctxt ""
@@ -2237,7 +2258,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rename"
-msgstr "Cambiar o _nombre"
+msgstr ""
#: customize.ui
msgctxt ""
@@ -2246,7 +2267,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr "Eli_minar"
+msgstr ""
#: customize.ui
msgctxt ""
@@ -2303,13 +2324,14 @@ msgid "%PRODUCTNAME Writer Toolbars"
msgstr ""
#: customize.ui
+#, fuzzy
msgctxt ""
"customize.ui\n"
"label31\n"
"label\n"
"string.text"
msgid "Co_mmands"
-msgstr ""
+msgstr "Comentarios"
#: customize.ui
msgctxt ""
@@ -2327,7 +2349,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete"
-msgstr "Eli_minar"
+msgstr ""
#: customize.ui
msgctxt ""
@@ -2393,13 +2415,14 @@ msgid "Toolbar Content"
msgstr ""
#: customize.ui
+#, fuzzy
msgctxt ""
"customize.ui\n"
"label28\n"
"label\n"
"string.text"
msgid "_Description"
-msgstr ""
+msgstr "Descripción"
#: customize.ui
msgctxt ""
@@ -2555,6 +2578,7 @@ msgid "Blinking"
msgstr ""
#: effectspage.ui
+#, fuzzy
msgctxt ""
"effectspage.ui\n"
"hiddencb\n"
@@ -2573,6 +2597,7 @@ msgid "Individual words"
msgstr ""
#: effectspage.ui
+#, fuzzy
msgctxt ""
"effectspage.ui\n"
"positionft\n"
@@ -2600,6 +2625,7 @@ msgid "Shadow"
msgstr ""
#: effectspage.ui
+#, fuzzy
msgctxt ""
"effectspage.ui\n"
"label42\n"
@@ -2966,7 +2992,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Type"
-msgstr "_Tipo"
+msgstr ""
#: gradientpage.ui
msgctxt ""
@@ -3050,13 +3076,14 @@ msgid "A_ngle"
msgstr ""
#: gradientpage.ui
+#, fuzzy
msgctxt ""
"gradientpage.ui\n"
"borderft\n"
"label\n"
"string.text"
msgid "_Border"
-msgstr ""
+msgstr "Cantos"
#: gradientpage.ui
msgctxt ""
@@ -3065,7 +3092,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_From"
-msgstr "_Dende"
+msgstr ""
#: gradientpage.ui
msgctxt ""
@@ -3212,6 +3239,7 @@ msgid "Contents"
msgstr "Conteniu"
#: insertfloatingframe.ui
+#, fuzzy
msgctxt ""
"insertfloatingframe.ui\n"
"buttonbrowse\n"
@@ -3239,6 +3267,7 @@ msgid "Off"
msgstr ""
#: insertfloatingframe.ui
+#, fuzzy
msgctxt ""
"insertfloatingframe.ui\n"
"scrollbarauto\n"
@@ -3275,6 +3304,7 @@ msgid "Off"
msgstr ""
#: insertfloatingframe.ui
+#, fuzzy
msgctxt ""
"insertfloatingframe.ui\n"
"label2\n"
@@ -3302,6 +3332,7 @@ msgid "Height"
msgstr ""
#: insertfloatingframe.ui
+#, fuzzy
msgctxt ""
"insertfloatingframe.ui\n"
"defaultwidth\n"
@@ -3311,6 +3342,7 @@ msgid "Default"
msgstr "Por defecto"
#: insertfloatingframe.ui
+#, fuzzy
msgctxt ""
"insertfloatingframe.ui\n"
"defaultheight\n"
@@ -3383,6 +3415,7 @@ msgid "Link to file"
msgstr ""
#: insertoleobject.ui
+#, fuzzy
msgctxt ""
"insertoleobject.ui\n"
"label2\n"
@@ -3401,6 +3434,7 @@ msgid "Insert Plug-in"
msgstr ""
#: insertplugin.ui
+#, fuzzy
msgctxt ""
"insertplugin.ui\n"
"urlbtn\n"
@@ -3419,6 +3453,7 @@ msgid "File/URL"
msgstr ""
#: insertplugin.ui
+#, fuzzy
msgctxt ""
"insertplugin.ui\n"
"label2\n"
@@ -3428,6 +3463,7 @@ msgid "Options"
msgstr "Opcions"
#: insertrowcolumn.ui
+#, fuzzy
msgctxt ""
"insertrowcolumn.ui\n"
"InsertRowColumnDialog\n"
@@ -3437,13 +3473,14 @@ msgid "Insert Row"
msgstr "F~icar ringleras"
#: insertrowcolumn.ui
+#, fuzzy
msgctxt ""
"insertrowcolumn.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "_Number:"
-msgstr ""
+msgstr "Numero"
#: insertrowcolumn.ui
msgctxt ""
@@ -3473,6 +3510,7 @@ msgid "A_fter"
msgstr ""
#: insertrowcolumn.ui
+#, fuzzy
msgctxt ""
"insertrowcolumn.ui\n"
"label2\n"
@@ -3497,7 +3535,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add"
-msgstr "Adhibir"
+msgstr ""
#: macroselectordialog.ui
msgctxt ""
@@ -3527,6 +3565,7 @@ msgid "Library"
msgstr ""
#: macroselectordialog.ui
+#, fuzzy
msgctxt ""
"macroselectordialog.ui\n"
"categoryft\n"
@@ -3545,6 +3584,7 @@ msgid "Macro name"
msgstr ""
#: macroselectordialog.ui
+#, fuzzy
msgctxt ""
"macroselectordialog.ui\n"
"commandsft\n"
@@ -3572,6 +3612,7 @@ msgid "Menu _position"
msgstr ""
#: namedialog.ui
+#, fuzzy
msgctxt ""
"namedialog.ui\n"
"NameDialog\n"
@@ -3626,6 +3667,7 @@ msgid "_Number of rows:"
msgstr ""
#: newtoolbardialog.ui
+#, fuzzy
msgctxt ""
"newtoolbardialog.ui\n"
"NewToolbarDialog\n"
@@ -3659,7 +3701,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Add"
-msgstr "Adhibir"
+msgstr ""
#: numberingformatpage.ui
msgctxt ""
@@ -3668,7 +3710,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Add"
-msgstr "Adhibir"
+msgstr ""
#: numberingformatpage.ui
msgctxt ""
@@ -3695,7 +3737,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Remove"
-msgstr "Borrar"
+msgstr ""
#: numberingformatpage.ui
msgctxt ""
@@ -3704,7 +3746,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Remove"
-msgstr "Borrar"
+msgstr ""
#: numberingformatpage.ui
msgctxt ""
@@ -3722,7 +3764,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Decimal places"
-msgstr "Numero de _decimals"
+msgstr ""
#: numberingformatpage.ui
msgctxt ""
@@ -3752,6 +3794,7 @@ msgid "_Thousands separator"
msgstr ""
#: numberingformatpage.ui
+#, fuzzy
msgctxt ""
"numberingformatpage.ui\n"
"optionsft\n"
@@ -3761,13 +3804,14 @@ msgid "Options"
msgstr "Opcions"
#: numberingformatpage.ui
+#, fuzzy
msgctxt ""
"numberingformatpage.ui\n"
"categoryft\n"
"label\n"
"string.text"
msgid "C_ategory"
-msgstr ""
+msgstr "ID Categoría"
#: numberingformatpage.ui
msgctxt ""
@@ -3803,7 +3847,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "All"
-msgstr "Totz"
+msgstr ""
#: numberingformatpage.ui
msgctxt ""
@@ -3815,6 +3859,7 @@ msgid "User-defined"
msgstr ""
#: numberingformatpage.ui
+#, fuzzy
msgctxt ""
"numberingformatpage.ui\n"
"liststore1\n"
@@ -3848,7 +3893,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Date"
-msgstr "Calendata"
+msgstr ""
#: numberingformatpage.ui
msgctxt ""
@@ -3857,7 +3902,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Time"
-msgstr "Hora"
+msgstr ""
#: numberingformatpage.ui
msgctxt ""
@@ -3893,7 +3938,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Text"
-msgstr "Texto"
+msgstr ""
#: numberingformatpage.ui
msgctxt ""
@@ -3932,6 +3977,7 @@ msgid "Level"
msgstr ""
#: numberingoptionspage.ui
+#, fuzzy
msgctxt ""
"numberingoptionspage.ui\n"
"label4\n"
@@ -3974,7 +4020,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Graphics"
-msgstr "Graficos"
+msgstr ""
#: numberingoptionspage.ui
msgctxt ""
@@ -4127,7 +4173,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Alignment"
-msgstr "_Aliniación"
+msgstr ""
#: numberingoptionspage.ui
msgctxt ""
@@ -4136,7 +4182,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Left"
-msgstr "Enta la cucha"
+msgstr ""
#: numberingoptionspage.ui
msgctxt ""
@@ -4154,7 +4200,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Right"
-msgstr "Enta la dreita"
+msgstr ""
#: numberingoptionspage.ui
msgctxt ""
@@ -4307,7 +4353,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Graphics"
-msgstr "Graficos"
+msgstr ""
#: numberingoptionspage.ui
msgctxt ""
@@ -4517,6 +4563,7 @@ msgid "at"
msgstr ""
#: numberingpositionpage.ui
+#, fuzzy
msgctxt ""
"numberingpositionpage.ui\n"
"standard\n"
@@ -4586,7 +4633,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Left"
-msgstr "Enta la cucha"
+msgstr ""
#: numberingpositionpage.ui
msgctxt ""
@@ -4604,7 +4651,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Right"
-msgstr "Enta la dreita"
+msgstr ""
#: numberingpositionpage.ui
msgctxt ""
@@ -4634,6 +4681,7 @@ msgid "Nothing"
msgstr ""
#: objectnamedialog.ui
+#, fuzzy
msgctxt ""
"objectnamedialog.ui\n"
"ObjectNameDialog\n"
@@ -4643,15 +4691,17 @@ msgid "Name"
msgstr "Nombre"
#: objectnamedialog.ui
+#, fuzzy
msgctxt ""
"objectnamedialog.ui\n"
"object_name_label\n"
"label\n"
"string.text"
msgid "_Name"
-msgstr "_Nombre"
+msgstr "Nombre"
#: objecttitledescdialog.ui
+#, fuzzy
msgctxt ""
"objecttitledescdialog.ui\n"
"ObjectTitleDescDialog\n"
@@ -4661,22 +4711,24 @@ msgid "Description"
msgstr "Descripción"
#: objecttitledescdialog.ui
+#, fuzzy
msgctxt ""
"objecttitledescdialog.ui\n"
"object_title_label\n"
"label\n"
"string.text"
msgid "_Title"
-msgstr "_Titol"
+msgstr "Titol"
#: objecttitledescdialog.ui
+#, fuzzy
msgctxt ""
"objecttitledescdialog.ui\n"
"desc_label\n"
"label\n"
"string.text"
msgid "_Description"
-msgstr ""
+msgstr "Descripción"
#: optaccessibilitypage.ui
msgctxt ""
@@ -4730,7 +4782,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "seconds"
-msgstr "segundos"
+msgstr ""
#: optaccessibilitypage.ui
msgctxt ""
@@ -5027,7 +5079,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "All files"
-msgstr "Totz os fichers"
+msgstr ""
#: optemailpage.ui
msgctxt ""
@@ -5138,13 +5190,14 @@ msgid "Microsoft PowerPoint 97/2000/XP"
msgstr ""
#: optfontspage.ui
+#, fuzzy
msgctxt ""
"optfontspage.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_Font"
-msgstr ""
+msgstr "Tipo de letra"
#: optfontspage.ui
msgctxt ""
@@ -5174,6 +5227,7 @@ msgid "Screen only"
msgstr ""
#: optfontspage.ui
+#, fuzzy
msgctxt ""
"optfontspage.ui\n"
"font\n"
@@ -5228,6 +5282,7 @@ msgid "_Size"
msgstr ""
#: optfontspage.ui
+#, fuzzy
msgctxt ""
"optfontspage.ui\n"
"fontname\n"
@@ -5372,6 +5427,7 @@ msgid "Year (two digits)"
msgstr ""
#: optionsdialog.ui
+#, fuzzy
msgctxt ""
"optionsdialog.ui\n"
"OptionsDialog\n"
@@ -5621,7 +5677,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Type"
-msgstr "Tipo"
+msgstr ""
#: optpathspage.ui
msgctxt ""
@@ -5651,13 +5707,14 @@ msgid "Paths used by %PRODUCTNAME"
msgstr ""
#: optpathspage.ui
+#, fuzzy
msgctxt ""
"optpathspage.ui\n"
"default\n"
"label\n"
"string.text"
msgid "_Default"
-msgstr "Por _defecto"
+msgstr "Por defecto"
#: optpathspage.ui
msgctxt ""
@@ -5783,7 +5840,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Settings"
-msgstr "Configuración"
+msgstr ""
#: optsavepage.ui
msgctxt ""
@@ -5828,7 +5885,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Minutes"
-msgstr "Menutos"
+msgstr ""
#: optsavepage.ui
msgctxt ""
@@ -5999,7 +6056,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Spreadsheet"
-msgstr "Fuella de calculo"
+msgstr ""
#: optsavepage.ui
msgctxt ""
@@ -6308,7 +6365,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "City"
-msgstr "Ciudat"
+msgstr ""
#: optuserpage.ui
msgctxt ""
@@ -6317,7 +6374,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "State"
-msgstr "Estau/Provincia"
+msgstr ""
#: optuserpage.ui
msgctxt ""
@@ -6329,6 +6386,7 @@ msgid "Zip code"
msgstr ""
#: optuserpage.ui
+#, fuzzy
msgctxt ""
"optuserpage.ui\n"
"title-atkobject\n"
@@ -6338,6 +6396,7 @@ msgid "Title"
msgstr "Titol"
#: optuserpage.ui
+#, fuzzy
msgctxt ""
"optuserpage.ui\n"
"position-atkobject\n"
@@ -6515,7 +6574,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "City"
-msgstr "Ciudat"
+msgstr ""
#: optuserpage.ui
msgctxt ""
@@ -6533,7 +6592,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Address"
-msgstr "Adreza"
+msgstr ""
#: optviewpage.ui
msgctxt ""
@@ -6554,6 +6613,7 @@ msgid "Icon _size and style"
msgstr ""
#: optviewpage.ui
+#, fuzzy
msgctxt ""
"optviewpage.ui\n"
"iconsize\n"
@@ -6581,6 +6641,7 @@ msgid "Large"
msgstr ""
#: optviewpage.ui
+#, fuzzy
msgctxt ""
"optviewpage.ui\n"
"iconstyle\n"
@@ -6725,6 +6786,7 @@ msgid "Icons in men_us"
msgstr ""
#: optviewpage.ui
+#, fuzzy
msgctxt ""
"optviewpage.ui\n"
"menuicons\n"
@@ -6740,7 +6802,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Hide"
-msgstr "Amagar"
+msgstr ""
#: optviewpage.ui
msgctxt ""
@@ -6749,7 +6811,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Show"
-msgstr "Amostrar"
+msgstr ""
#: optviewpage.ui
msgctxt ""
@@ -6911,7 +6973,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Selection"
-msgstr "Selección"
+msgstr ""
#: pageformatpage.ui
msgctxt ""
@@ -7418,7 +7480,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Selection"
-msgstr "Selección"
+msgstr ""
#: personalization_tab.ui
msgctxt ""
@@ -7472,7 +7534,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Selection"
-msgstr "Selección"
+msgstr ""
#: pickgraphicpage.ui
msgctxt ""
@@ -7499,7 +7561,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Selection"
-msgstr "Selección"
+msgstr ""
#: picknumberingpage.ui
msgctxt ""
@@ -7508,7 +7570,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Selection"
-msgstr "Selección"
+msgstr ""
#: pickoutlinepage.ui
msgctxt ""
@@ -7517,9 +7579,10 @@ msgctxt ""
"label\n"
"string.text"
msgid "Selection"
-msgstr "Selección"
+msgstr ""
#: positionpage.ui
+#, fuzzy
msgctxt ""
"positionpage.ui\n"
"superscript\n"
@@ -7538,6 +7601,7 @@ msgid "Normal"
msgstr "Normal"
#: positionpage.ui
+#, fuzzy
msgctxt ""
"positionpage.ui\n"
"subscript\n"
@@ -7556,6 +7620,7 @@ msgid "Raise/lower by"
msgstr ""
#: positionpage.ui
+#, fuzzy
msgctxt ""
"positionpage.ui\n"
"automatic\n"
@@ -7574,6 +7639,7 @@ msgid "Relative font size"
msgstr ""
#: positionpage.ui
+#, fuzzy
msgctxt ""
"positionpage.ui\n"
"label20\n"
@@ -7682,6 +7748,7 @@ msgid "Preview"
msgstr ""
#: positionpage.ui
+#, fuzzy
msgctxt ""
"positionpage.ui\n"
"liststore1\n"
@@ -7754,6 +7821,7 @@ msgid "Delete..."
msgstr ""
#: scriptorganizer.ui
+#, fuzzy
msgctxt ""
"scriptorganizer.ui\n"
"macrosft\n"
@@ -7916,6 +7984,7 @@ msgid "Delete _Last"
msgstr ""
#: specialcharacters.ui
+#, fuzzy
msgctxt ""
"specialcharacters.ui\n"
"fontft\n"
@@ -8147,7 +8216,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Vertically"
-msgstr "_Vertical"
+msgstr ""
#: splitcellsdialog.ui
msgctxt ""
@@ -8228,7 +8297,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "A_utomatically"
-msgstr "A_utomaticament"
+msgstr ""
#: textflowpage.ui
msgctxt ""
@@ -8291,7 +8360,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Type"
-msgstr "_Tipo"
+msgstr ""
#: textflowpage.ui
msgctxt ""
@@ -8303,6 +8372,7 @@ msgid "Page _number"
msgstr ""
#: textflowpage.ui
+#, fuzzy
msgctxt ""
"textflowpage.ui\n"
"labelPosition\n"
@@ -8318,9 +8388,10 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Page"
-msgstr "Pachina"
+msgstr ""
#: textflowpage.ui
+#, fuzzy
msgctxt ""
"textflowpage.ui\n"
"comboBreakType\n"
@@ -8411,6 +8482,7 @@ msgid "Lines"
msgstr ""
#: textflowpage.ui
+#, fuzzy
msgctxt ""
"textflowpage.ui\n"
"labelOptions\n"
@@ -8645,6 +8717,7 @@ msgid "Optimal"
msgstr ""
#: zoomdialog.ui
+#, fuzzy
msgctxt ""
"zoomdialog.ui\n"
"fitwandh\n"
@@ -8690,6 +8763,7 @@ msgid "Zoom factor"
msgstr ""
#: zoomdialog.ui
+#, fuzzy
msgctxt ""
"zoomdialog.ui\n"
"automatic\n"
@@ -8708,6 +8782,7 @@ msgid "Single page"
msgstr ""
#: zoomdialog.ui
+#, fuzzy
msgctxt ""
"zoomdialog.ui\n"
"columns\n"
diff --git a/source/an/dbaccess/source/ext/macromigration.po b/source/an/dbaccess/source/ext/macromigration.po
index 1c98f272d48..9825a09d474 100644
--- a/source/an/dbaccess/source/ext/macromigration.po
+++ b/source/an/dbaccess/source/ext/macromigration.po
@@ -122,6 +122,7 @@ msgid "Save To:"
msgstr ""
#: macromigration.src
+#, fuzzy
msgctxt ""
"macromigration.src\n"
"TP_SAVE_DBDOC_AS\n"
@@ -352,6 +353,7 @@ msgid "Error(s)"
msgstr ""
#: macromigration.src
+#, fuzzy
msgctxt ""
"macromigration.src\n"
"STR_WARNINGS\n"
diff --git a/source/an/dbaccess/source/ui/app.po b/source/an/dbaccess/source/ui/app.po
index 0d0895606ac..5dfe7232a97 100644
--- a/source/an/dbaccess/source/ui/app.po
+++ b/source/an/dbaccess/source/ui/app.po
@@ -140,6 +140,7 @@ msgid "View (Simple)..."
msgstr ""
#: app.src
+#, fuzzy
msgctxt ""
"app.src\n"
"RID_MENU_APP_EDIT\n"
@@ -158,6 +159,7 @@ msgid "Delete"
msgstr "Eliminar"
#: app.src
+#, fuzzy
msgctxt ""
"app.src\n"
"RID_MENU_APP_EDIT\n"
@@ -441,6 +443,7 @@ msgid ""
msgstr ""
#: app.src
+#, fuzzy
msgctxt ""
"app.src\n"
"RID_MENU_APP_PREVIEW\n"
diff --git a/source/an/dbaccess/source/ui/browser.po b/source/an/dbaccess/source/ui/browser.po
index a403dda1821..ef5b2e74048 100644
--- a/source/an/dbaccess/source/ui/browser.po
+++ b/source/an/dbaccess/source/ui/browser.po
@@ -75,6 +75,7 @@ msgid "Queries"
msgstr ""
#: sbabrw.src
+#, fuzzy
msgctxt ""
"sbabrw.src\n"
"RID_STR_TABLES_CONTAINER\n"
@@ -231,6 +232,7 @@ msgid "Table Format..."
msgstr ""
#: sbagrid.src
+#, fuzzy
msgctxt ""
"sbagrid.src\n"
"RID_SBA_GRID_ROWCTXMENU\n"
diff --git a/source/an/dbaccess/source/ui/dlg.po b/source/an/dbaccess/source/ui/dlg.po
index fdd0decb691..0d99ad8218c 100644
--- a/source/an/dbaccess/source/ui/dlg.po
+++ b/source/an/dbaccess/source/ui/dlg.po
@@ -203,6 +203,7 @@ msgid "'Comma separated value' files (*.csv)"
msgstr ""
#: AutoControls_tmpl.hrc
+#, fuzzy
msgctxt ""
"AutoControls_tmpl.hrc\n"
"AUTO_SEPARATORCONTROLGROUP(AUTO_Y,AUTOPAGE_X)\n"
@@ -672,6 +673,7 @@ msgid "User selection"
msgstr ""
#: UserAdmin.src
+#, fuzzy
msgctxt ""
"UserAdmin.src\n"
"TAB_PAGE_USERADMIN\n"
@@ -717,6 +719,7 @@ msgid "Access rights for selected user"
msgstr ""
#: UserAdmin.src
+#, fuzzy
msgctxt ""
"UserAdmin.src\n"
"QUERY_USERADMIN_DELETE_USER\n"
@@ -865,6 +868,7 @@ msgid "Named p~ipe"
msgstr ""
#: adtabdlg.src
+#, fuzzy
msgctxt ""
"adtabdlg.src\n"
"DLG_JOIN_TABADD\n"
@@ -892,6 +896,7 @@ msgid "~Add"
msgstr "~Adhibir"
#: adtabdlg.src
+#, fuzzy
msgctxt ""
"adtabdlg.src\n"
"DLG_JOIN_TABADD\n"
@@ -2181,6 +2186,7 @@ msgid "~Password required"
msgstr ""
#: dbfindex.src
+#, fuzzy
msgctxt ""
"dbfindex.src\n"
"DLG_DBASE_INDEXES\n"
@@ -2190,6 +2196,7 @@ msgid "~Table"
msgstr "Tabla"
#: dbfindex.src
+#, fuzzy
msgctxt ""
"dbfindex.src\n"
"DLG_DBASE_INDEXES\n"
@@ -2339,6 +2346,7 @@ msgid "Font"
msgstr "Tipo de letra"
#: dlgattr.src
+#, fuzzy
msgctxt ""
"dlgattr.src\n"
"DLG_ATTR\n"
@@ -2357,6 +2365,7 @@ msgid "Alignment"
msgstr "Aliniación"
#: dlgattr.src
+#, fuzzy
msgctxt ""
"dlgattr.src\n"
"DLG_ATTR\n"
@@ -2437,6 +2446,7 @@ msgid "Rename to"
msgstr ""
#: dlgsave.src
+#, fuzzy
msgctxt ""
"dlgsave.src\n"
"DLG_SAVE_AS\n"
@@ -2463,6 +2473,7 @@ msgid "~Height"
msgstr ""
#: dlgsize.src
+#, fuzzy
msgctxt ""
"dlgsize.src\n"
"DLG_ROWHEIGHT\n"
@@ -2489,6 +2500,7 @@ msgid "~Width"
msgstr ""
#: dlgsize.src
+#, fuzzy
msgctxt ""
"dlgsize.src\n"
"DLG_COLWIDTH\n"
@@ -2498,6 +2510,7 @@ msgid "~Automatic"
msgstr "~Automatico"
#: dlgsize.src
+#, fuzzy
msgctxt ""
"dlgsize.src\n"
"DLG_COLWIDTH\n"
@@ -2551,6 +2564,7 @@ msgid "Choose a database"
msgstr ""
#: dsselect.src
+#, fuzzy
msgctxt ""
"dsselect.src\n"
"DLG_DATASOURCE_SELECTION\n"
@@ -2640,6 +2654,7 @@ msgid "Fields"
msgstr "Campos"
#: indexdialog.src
+#, fuzzy
msgctxt ""
"indexdialog.src\n"
"DLG_INDEXDESIGN\n"
@@ -2673,6 +2688,7 @@ msgid "Index field"
msgstr ""
#: indexdialog.src
+#, fuzzy
msgctxt ""
"indexdialog.src\n"
"STR_ORDER_ASCENDING\n"
@@ -2681,6 +2697,7 @@ msgid "Ascending"
msgstr "~Ascendent"
#: indexdialog.src
+#, fuzzy
msgctxt ""
"indexdialog.src\n"
"STR_ORDER_DESCENDING\n"
@@ -2697,6 +2714,7 @@ msgid "Do you really want to delete the index '$name$'?"
msgstr ""
#: indexdialog.src
+#, fuzzy
msgctxt ""
"indexdialog.src\n"
"STR_LOGICAL_INDEX_NAME\n"
@@ -2762,6 +2780,7 @@ msgid "~Parameters"
msgstr ""
#: paramdialog.src
+#, fuzzy
msgctxt ""
"paramdialog.src\n"
"DLG_PARAMETERS\n"
@@ -2860,6 +2879,7 @@ msgid "Value"
msgstr "Valura"
#: queryfilter.src
+#, fuzzy
msgctxt ""
"queryfilter.src\n"
"DLG_FILTERCRIT\n"
@@ -2904,6 +2924,7 @@ msgid "Standard Filter"
msgstr ""
#: queryorder.src
+#, fuzzy
msgctxt ""
"queryorder.src\n"
"DLG_ORDERCRIT.LB_ORDERVALUE1\n"
@@ -2913,6 +2934,7 @@ msgid "ascending"
msgstr "~Ascendent"
#: queryorder.src
+#, fuzzy
msgctxt ""
"queryorder.src\n"
"DLG_ORDERCRIT.LB_ORDERVALUE1\n"
@@ -2922,6 +2944,7 @@ msgid "descending"
msgstr "~Descendent"
#: queryorder.src
+#, fuzzy
msgctxt ""
"queryorder.src\n"
"DLG_ORDERCRIT.LB_ORDERVALUE2\n"
@@ -2931,6 +2954,7 @@ msgid "ascending"
msgstr "~Ascendent"
#: queryorder.src
+#, fuzzy
msgctxt ""
"queryorder.src\n"
"DLG_ORDERCRIT.LB_ORDERVALUE2\n"
@@ -2940,6 +2964,7 @@ msgid "descending"
msgstr "~Descendent"
#: queryorder.src
+#, fuzzy
msgctxt ""
"queryorder.src\n"
"DLG_ORDERCRIT.LB_ORDERVALUE3\n"
@@ -2949,6 +2974,7 @@ msgid "ascending"
msgstr "~Ascendent"
#: queryorder.src
+#, fuzzy
msgctxt ""
"queryorder.src\n"
"DLG_ORDERCRIT.LB_ORDERVALUE3\n"
@@ -2985,6 +3011,7 @@ msgid "and then"
msgstr ""
#: queryorder.src
+#, fuzzy
msgctxt ""
"queryorder.src\n"
"DLG_ORDERCRIT\n"
@@ -3047,6 +3074,7 @@ msgid "Error ~list:"
msgstr ""
#: sqlmessage.src
+#, fuzzy
msgctxt ""
"sqlmessage.src\n"
"DLG_SQLEXCEPTIONCHAIN\n"
diff --git a/source/an/dbaccess/source/ui/inc.po b/source/an/dbaccess/source/ui/inc.po
index 672edcf9ca1..e540dde2a98 100644
--- a/source/an/dbaccess/source/ui/inc.po
+++ b/source/an/dbaccess/source/ui/inc.po
@@ -73,6 +73,7 @@ msgid "New Query (~SQL View)"
msgstr ""
#: toolbox_tmpl.hrc
+#, fuzzy
msgctxt ""
"toolbox_tmpl.hrc\n"
"MID_DBUI_QUERY_EDIT_JOINCONNECTION\n"
@@ -81,6 +82,7 @@ msgid "Edit..."
msgstr "~Editar..."
#: toolbox_tmpl.hrc
+#, fuzzy
msgctxt ""
"toolbox_tmpl.hrc\n"
"MID_COLUMN_WIDTH\n"
diff --git a/source/an/dbaccess/source/ui/misc.po b/source/an/dbaccess/source/ui/misc.po
index a9abfb40204..f8fe2050576 100644
--- a/source/an/dbaccess/source/ui/misc.po
+++ b/source/an/dbaccess/source/ui/misc.po
@@ -58,6 +58,7 @@ msgid "~Help"
msgstr "~Aduya"
#: WizardPages.src
+#, fuzzy
msgctxt ""
"WizardPages.src\n"
"WIZ_RTFCOPYTABLE\n"
diff --git a/source/an/dbaccess/source/ui/querydesign.po b/source/an/dbaccess/source/ui/querydesign.po
index 67045f5b228..d4084fc187c 100644
--- a/source/an/dbaccess/source/ui/querydesign.po
+++ b/source/an/dbaccess/source/ui/querydesign.po
@@ -57,6 +57,7 @@ msgid "Resize table window"
msgstr ""
#: query.src
+#, fuzzy
msgctxt ""
"query.src\n"
"STR_QUERY_UNDO_TABFIELDDELETE\n"
@@ -210,7 +211,7 @@ msgctxt ""
"STR_QUERY_LIMIT_ALL\n"
"string.text"
msgid "All"
-msgstr "Totz"
+msgstr ""
#: query.src
msgctxt ""
diff --git a/source/an/dbaccess/source/ui/relationdesign.po b/source/an/dbaccess/source/ui/relationdesign.po
index 5c5f77c6048..7fcc0947e9a 100644
--- a/source/an/dbaccess/source/ui/relationdesign.po
+++ b/source/an/dbaccess/source/ui/relationdesign.po
@@ -25,6 +25,7 @@ msgid "This relation already exists. Do you want to edit it or create a new one?
msgstr ""
#: relation.src
+#, fuzzy
msgctxt ""
"relation.src\n"
"STR_QUERY_REL_EDIT\n"
diff --git a/source/an/dbaccess/source/ui/tabledesign.po b/source/an/dbaccess/source/ui/tabledesign.po
index 0d87753945b..f66aad7f0e0 100644
--- a/source/an/dbaccess/source/ui/tabledesign.po
+++ b/source/an/dbaccess/source/ui/tabledesign.po
@@ -49,6 +49,7 @@ msgid "No"
msgstr ""
#: table.src
+#, fuzzy
msgctxt ""
"table.src\n"
"STR_VALUE_ASC\n"
@@ -57,6 +58,7 @@ msgid "Ascending"
msgstr "~Ascendent"
#: table.src
+#, fuzzy
msgctxt ""
"table.src\n"
"STR_VALUE_DESC\n"
@@ -73,6 +75,7 @@ msgid "<none>"
msgstr ""
#: table.src
+#, fuzzy
msgctxt ""
"table.src\n"
"STR_TAB_FIELD_NAME\n"
@@ -81,6 +84,7 @@ msgid "Field name"
msgstr "Nombre d'o fichero"
#: table.src
+#, fuzzy
msgctxt ""
"table.src\n"
"STR_TAB_FIELD_COLUMN_NAME\n"
@@ -161,6 +165,7 @@ msgid "General"
msgstr ""
#: table.src
+#, fuzzy
msgctxt ""
"table.src\n"
"STR_TAB_TABLE_DESCRIPTION\n"
@@ -185,6 +190,7 @@ msgid "The text you entered is not a list element. "
msgstr ""
#: table.src
+#, fuzzy
msgctxt ""
"table.src\n"
"RID_TABLEDESIGNROWPOPUPMENU\n"
@@ -211,6 +217,7 @@ msgid "Modify cell"
msgstr ""
#: table.src
+#, fuzzy
msgctxt ""
"table.src\n"
"STR_TABED_UNDO_ROWDELETED\n"
@@ -227,6 +234,7 @@ msgid "Modify field type"
msgstr ""
#: table.src
+#, fuzzy
msgctxt ""
"table.src\n"
"STR_TABED_UNDO_ROWINSERTED\n"
@@ -291,6 +299,7 @@ msgid "~Length"
msgstr ""
#: table.src
+#, fuzzy
msgctxt ""
"table.src\n"
"STR_SCALE\n"
@@ -447,6 +456,7 @@ msgid "Continue anyway?"
msgstr ""
#: table.src
+#, fuzzy
msgctxt ""
"table.src\n"
"STR_STAT_WARNING\n"
diff --git a/source/an/dbaccess/uiconfig/ui.po b/source/an/dbaccess/uiconfig/ui.po
index 03db16d2338..f1454c7bcc3 100644
--- a/source/an/dbaccess/uiconfig/ui.po
+++ b/source/an/dbaccess/uiconfig/ui.po
@@ -1,18 +1,20 @@
#. extracted from dbaccess/uiconfig/ui
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-28 18:08+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2012-08-09 15:48+0000\n"
+"Last-Translator: Chesús Daniel <xuxinho7@gmail.com>\n"
+"Language-Team: none\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1344527326.0\n"
#: generalpagedialog.ui
msgctxt ""
@@ -162,10 +164,11 @@ msgid "Limit"
msgstr ""
#: querypropertiesdialog.ui
+#, fuzzy
msgctxt ""
"querypropertiesdialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Properties:"
-msgstr ""
+msgstr "Propiedatz..."
diff --git a/source/an/desktop/source/deployment/gui.po b/source/an/desktop/source/deployment/gui.po
index 59829a6d1d2..0107b0bfb4e 100644
--- a/source/an/desktop/source/deployment/gui.po
+++ b/source/an/desktop/source/deployment/gui.po
@@ -44,6 +44,7 @@ msgid "Add Extension(s)"
msgstr ""
#: dp_gui_dialog.src
+#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_CTX_ITEM_REMOVE\n"
@@ -148,6 +149,7 @@ msgid "Error: The status of this extension is unknown"
msgstr ""
#: dp_gui_dialog.src
+#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_STR_CLOSE_BTN\n"
@@ -253,6 +255,7 @@ msgid "~Scroll Down"
msgstr ""
#: dp_gui_dialog.src
+#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_DLG_LICENSE\n"
@@ -279,6 +282,7 @@ msgid "Extension Software License Agreement"
msgstr ""
#: dp_gui_dialog.src
+#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_DLG_SHOW_LICENSE\n"
@@ -486,6 +490,7 @@ msgid "~Install"
msgstr ""
#: dp_gui_updatedialog.src
+#, fuzzy
msgctxt ""
"dp_gui_updatedialog.src\n"
"RID_DLG_UPDATE\n"
diff --git a/source/an/desktop/source/deployment/registry/help.po b/source/an/desktop/source/deployment/registry/help.po
index 3755274f188..8d1e862d44f 100644
--- a/source/an/desktop/source/deployment/registry/help.po
+++ b/source/an/desktop/source/deployment/registry/help.po
@@ -17,6 +17,7 @@ msgstr ""
"X-POOTLE-MTIME: 1352990627.0\n"
#: dp_help.src
+#, fuzzy
msgctxt ""
"dp_help.src\n"
"RID_STR_HELP\n"
diff --git a/source/an/dictionaries/hu_HU/dialog.po b/source/an/dictionaries/hu_HU/dialog.po
index 4d6260064e6..98ba4ddcdcf 100644
--- a/source/an/dictionaries/hu_HU/dialog.po
+++ b/source/an/dictionaries/hu_HU/dialog.po
@@ -209,6 +209,7 @@ msgid "Underline ligatures"
msgstr ""
#: hu_HU_en_US.properties
+#, fuzzy
msgctxt ""
"hu_HU_en_US.properties\n"
"frac\n"
diff --git a/source/an/dictionaries/is.po b/source/an/dictionaries/is.po
index 3de0c7f1fd5..7a51a9e2298 100644
--- a/source/an/dictionaries/is.po
+++ b/source/an/dictionaries/is.po
@@ -4,9 +4,9 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-06-03 08:43+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2013-06-03 08:43+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
diff --git a/source/an/editeng/source/editeng.po b/source/an/editeng/source/editeng.po
index f588f3c9195..0f0ee364e8c 100644
--- a/source/an/editeng/source/editeng.po
+++ b/source/an/editeng/source/editeng.po
@@ -57,6 +57,7 @@ msgid "Apply attributes"
msgstr ""
#: editeng.src
+#, fuzzy
msgctxt ""
"editeng.src\n"
"RID_EDITUNDO_RESETATTRIBS\n"
@@ -73,6 +74,7 @@ msgid "Indent"
msgstr ""
#: editeng.src
+#, fuzzy
msgctxt ""
"editeng.src\n"
"RID_EDITUNDO_SETSTYLE\n"
diff --git a/source/an/editeng/source/items.po b/source/an/editeng/source/items.po
index 7ee1babcb58..4ec33c7916a 100644
--- a/source/an/editeng/source/items.po
+++ b/source/an/editeng/source/items.po
@@ -225,6 +225,7 @@ msgid "Light Gray"
msgstr "Griso claro"
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_COLOR_LIGHTBLUE\n"
@@ -321,6 +322,7 @@ msgid "ultra thin"
msgstr ""
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_WEIGHT_LIGHT\n"
@@ -337,6 +339,7 @@ msgid "semi light"
msgstr ""
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_WEIGHT_NORMAL\n"
@@ -737,6 +740,7 @@ msgid "Strike through with Xes"
msgstr ""
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_CASEMAP_NONE\n"
@@ -785,6 +789,7 @@ msgid "Normal position"
msgstr ""
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_ESCAPEMENT_SUPER\n"
@@ -793,6 +798,7 @@ msgid "Superscript "
msgstr "Superindiz"
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_ESCAPEMENT_SUB\n"
@@ -801,6 +807,7 @@ msgid "Subscript "
msgstr "S~ubindiz"
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_ESCAPEMENT_AUTO\n"
@@ -833,6 +840,7 @@ msgid "Justify"
msgstr ""
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_ADJUST_CENTER\n"
@@ -889,6 +897,7 @@ msgid "Decimal"
msgstr "Decimal"
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_TAB_ADJUST_CENTER\n"
@@ -1033,6 +1042,7 @@ msgid "cm"
msgstr ""
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_METRIC_INCH\n"
@@ -1353,6 +1363,7 @@ msgid "Shadow: "
msgstr ""
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_BORDER_COMPLETE\n"
@@ -1474,6 +1485,7 @@ msgid "%1 hyphens"
msgstr ""
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_PAGEMODEL_COMPLETE\n"
@@ -1506,6 +1518,7 @@ msgid "Condensed "
msgstr ""
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_GRAPHIC\n"
@@ -1514,6 +1527,7 @@ msgid "Graphic"
msgstr "Graficos"
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_EMPHASIS_NONE_STYLE\n"
@@ -1802,6 +1816,7 @@ msgid "Not hidden"
msgstr ""
#: svxitems.src
+#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_CHARHIDDEN_TRUE\n"
diff --git a/source/an/extensions/source/abpilot.po b/source/an/extensions/source/abpilot.po
index 539696d528e..f21fc5428f4 100644
--- a/source/an/extensions/source/abpilot.po
+++ b/source/an/extensions/source/abpilot.po
@@ -181,6 +181,7 @@ msgid "Windows system address book"
msgstr ""
#: abspilot.src
+#, fuzzy
msgctxt ""
"abspilot.src\n"
"RID_PAGE_SELECTABTYPE\n"
@@ -277,6 +278,7 @@ msgid "Location"
msgstr ""
#: abspilot.src
+#, fuzzy
msgctxt ""
"abspilot.src\n"
"RID_PAGE_FINAL\n"
@@ -341,6 +343,7 @@ msgid ""
msgstr ""
#: abspilot.src
+#, fuzzy
msgctxt ""
"abspilot.src\n"
"RID_STR_DEFAULT_NAME\n"
diff --git a/source/an/extensions/source/bibliography.po b/source/an/extensions/source/bibliography.po
index 67ec7760c37..d536c08d4c0 100644
--- a/source/an/extensions/source/bibliography.po
+++ b/source/an/extensions/source/bibliography.po
@@ -236,6 +236,7 @@ msgid "Unpublished"
msgstr ""
#: sections.src
+#, fuzzy
msgctxt ""
"sections.src\n"
"RID_TP_GENERAL\n"
@@ -254,6 +255,7 @@ msgid "WWW document"
msgstr ""
#: sections.src
+#, fuzzy
msgctxt ""
"sections.src\n"
"RID_TP_GENERAL\n"
@@ -263,6 +265,7 @@ msgid "User-defined1"
msgstr "Definiu por l'~usuario"
#: sections.src
+#, fuzzy
msgctxt ""
"sections.src\n"
"RID_TP_GENERAL\n"
@@ -272,6 +275,7 @@ msgid "User-defined2"
msgstr "Definiu por l'~usuario"
#: sections.src
+#, fuzzy
msgctxt ""
"sections.src\n"
"RID_TP_GENERAL\n"
@@ -281,6 +285,7 @@ msgid "User-defined3"
msgstr "Definiu por l'~usuario"
#: sections.src
+#, fuzzy
msgctxt ""
"sections.src\n"
"RID_TP_GENERAL\n"
@@ -290,6 +295,7 @@ msgid "User-defined4"
msgstr "Definiu por l'~usuario"
#: sections.src
+#, fuzzy
msgctxt ""
"sections.src\n"
"RID_TP_GENERAL\n"
@@ -366,6 +372,7 @@ msgid "Author(s)"
msgstr ""
#: sections.src
+#, fuzzy
msgctxt ""
"sections.src\n"
"ST_TITLE\n"
@@ -382,6 +389,7 @@ msgid "~Publisher"
msgstr ""
#: sections.src
+#, fuzzy
msgctxt ""
"sections.src\n"
"ST_ADDRESS\n"
@@ -502,6 +510,7 @@ msgid "~Journal"
msgstr ""
#: sections.src
+#, fuzzy
msgctxt ""
"sections.src\n"
"ST_NUMBER\n"
@@ -526,6 +535,7 @@ msgid "Ann~otation"
msgstr ""
#: sections.src
+#, fuzzy
msgctxt ""
"sections.src\n"
"ST_NOTE\n"
@@ -636,6 +646,7 @@ msgid "Column Arrangement"
msgstr ""
#: toolbar.src
+#, fuzzy
msgctxt ""
"toolbar.src\n"
"RID_BIB_TOOLBAR\n"
diff --git a/source/an/extensions/source/dbpilots.po b/source/an/extensions/source/dbpilots.po
index a322ff6e434..8367be40825 100644
--- a/source/an/extensions/source/dbpilots.po
+++ b/source/an/extensions/source/dbpilots.po
@@ -17,6 +17,7 @@ msgstr ""
"X-POOTLE-MTIME: 1352990627.0\n"
#: commonpagesdbp.src
+#, fuzzy
msgctxt ""
"commonpagesdbp.src\n"
"RID_PAGE_TABLESELECTION\n"
@@ -41,6 +42,7 @@ msgid ""
msgstr ""
#: commonpagesdbp.src
+#, fuzzy
msgctxt ""
"commonpagesdbp.src\n"
"RID_PAGE_TABLESELECTION\n"
@@ -68,6 +70,7 @@ msgid "~Table / Query:"
msgstr ""
#: commonpagesdbp.src
+#, fuzzy
msgctxt ""
"commonpagesdbp.src\n"
"RID_PAGE_TABLESELECTION\n"
@@ -103,6 +106,7 @@ msgid "~No, I only want to save the value in the form."
msgstr ""
#: commonpagesdbp.src
+#, fuzzy
msgctxt ""
"commonpagesdbp.src\n"
"RID_PAGE_OPTION_DBFIELD\n"
@@ -120,6 +124,7 @@ msgid "Form"
msgstr ""
#: commonpagesdbp.src
+#, fuzzy
msgctxt ""
"commonpagesdbp.src\n"
"RID_PAGE_FORM_DATASOURCE_STATUS\n"
@@ -138,6 +143,7 @@ msgid "Content type"
msgstr ""
#: commonpagesdbp.src
+#, fuzzy
msgctxt ""
"commonpagesdbp.src\n"
"RID_PAGE_FORM_DATASOURCE_STATUS\n"
@@ -280,6 +286,7 @@ msgid "~Option fields"
msgstr ""
#: groupboxpages.src
+#, fuzzy
msgctxt ""
"groupboxpages.src\n"
"RID_PAGE_GROUPRADIOSELECTION\n"
diff --git a/source/an/extensions/source/propctrlr.po b/source/an/extensions/source/propctrlr.po
index 66f7558f617..cf9dfc82ee5 100644
--- a/source/an/extensions/source/propctrlr.po
+++ b/source/an/extensions/source/propctrlr.po
@@ -17,6 +17,7 @@ msgstr ""
"X-POOTLE-MTIME: 1344527326.0\n"
#: fontdialog.src
+#, fuzzy
msgctxt ""
"fontdialog.src\n"
"RID_TABDLG_FONTDIALOG.1\n"
@@ -352,6 +353,7 @@ msgid "Graphics alignment"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_FONT\n"
@@ -368,6 +370,7 @@ msgid "Background color"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_BORDER\n"
@@ -410,6 +413,7 @@ msgid "Positioning"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_SHOW_NAVIGATION\n"
@@ -434,6 +438,7 @@ msgid "Filtering / Sorting"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_HSCROLL\n"
@@ -442,6 +447,7 @@ msgid "Horizontal scroll bar"
msgstr "Barra de desplazamiento hori~zontal"
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_VSCROLL\n"
@@ -506,6 +512,7 @@ msgid "Mouse wheel scroll"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_FILTER\n"
@@ -562,6 +569,7 @@ msgid "Tabstop"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_CONTROLSOURCE\n"
@@ -602,6 +610,7 @@ msgid "Type of list contents"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_CURSORSOURCE\n"
@@ -650,6 +659,7 @@ msgid "Add data only"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_DATASOURCE\n"
@@ -982,6 +992,7 @@ msgid "Valuelist"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_LISTSOURCE_TYPE\n"
@@ -991,6 +1002,7 @@ msgid "Table"
msgstr "Tabla"
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_LISTSOURCE_TYPE\n"
@@ -1036,6 +1048,7 @@ msgid "Left"
msgstr "Enta la cucha"
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_ALIGNMENT\n"
@@ -1054,6 +1067,7 @@ msgid "Right"
msgstr "Enta la dreita"
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_BUTTONTYPE\n"
@@ -1099,6 +1113,7 @@ msgid "First record"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_BUTTONTYPE\n"
@@ -1108,6 +1123,7 @@ msgid "Previous record"
msgstr "Rechistro previo"
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_BUTTONTYPE\n"
@@ -1144,6 +1160,7 @@ msgid "Undo data entry"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_BUTTONTYPE\n"
@@ -1207,6 +1224,7 @@ msgid "Multipart"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_SUBMIT_ENCODING\n"
@@ -1369,6 +1387,7 @@ msgid "Not Selected"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_CHECKED\n"
@@ -1405,6 +1424,7 @@ msgid "Active record"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_CYCLE\n"
@@ -1441,6 +1461,7 @@ msgid "Parent Form"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_SELECTION_TYPE\n"
@@ -1749,6 +1770,7 @@ msgid "Analyze SQL command"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_POSITIONX\n"
@@ -1757,6 +1779,7 @@ msgid "PositionX"
msgstr "Posición"
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_POSITIONY\n"
@@ -1917,6 +1940,7 @@ msgid "Orientation"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_ORIENTATION\n"
@@ -1983,6 +2007,7 @@ msgid "Button type"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_PUSHBUTTONTYPE\n"
@@ -2010,6 +2035,7 @@ msgid "Cancel"
msgstr "Cancelar"
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_PUSHBUTTONTYPE\n"
@@ -2027,6 +2053,7 @@ msgid "The connection to the data source \"$name$\" could not be established."
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_TEXT\n"
@@ -2146,6 +2173,7 @@ msgid "CR+LF (Windows)"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_SCROLLBARS\n"
@@ -2155,6 +2183,7 @@ msgid "None"
msgstr "~Garra"
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_SCROLLBARS\n"
@@ -2182,6 +2211,7 @@ msgid "Both"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_COMMAND_TYPE\n"
@@ -2191,6 +2221,7 @@ msgid "Table"
msgstr "Tabla"
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_COMMAND_TYPE\n"
@@ -2233,6 +2264,7 @@ msgid "Hide selection"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_VISUALEFFECT\n"
@@ -2375,6 +2407,7 @@ msgid "Below right"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_IMAGE_POSITION\n"
@@ -2525,6 +2558,7 @@ msgid "Collapse"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_XSD_PATTERN\n"
@@ -2637,6 +2671,7 @@ msgid "Root displayed"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_SHOWS_HANDLES\n"
@@ -2737,6 +2772,7 @@ msgid "Left-to-right"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_WRITING_MODE\n"
@@ -2755,6 +2791,7 @@ msgid "Use superordinate object settings"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_WHEEL_BEHAVIOR\n"
@@ -2773,6 +2810,7 @@ msgid "When focused"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_WHEEL_BEHAVIOR\n"
@@ -2782,6 +2820,7 @@ msgid "Always"
msgstr "~Siempre"
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_ANCHOR_TYPE\n"
@@ -2808,6 +2847,7 @@ msgid "As Character"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_TEXT_ANCHOR_TYPE\n"
@@ -2835,6 +2875,7 @@ msgid "To Character"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_SHEET_ANCHOR_TYPE\n"
@@ -2844,6 +2885,7 @@ msgid "To Page"
msgstr "Ta la pac~hina"
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_RSC_ENUM_SHEET_ANCHOR_TYPE\n"
@@ -2889,6 +2931,7 @@ msgid "Bold"
msgstr ""
#: formres.src
+#, fuzzy
msgctxt ""
"formres.src\n"
"RID_STR_FONT_DEFAULT\n"
@@ -3052,6 +3095,7 @@ msgid "Time Field"
msgstr "Campo horario"
#: pcrmiscres.src
+#, fuzzy
msgctxt ""
"pcrmiscres.src\n"
"RID_STR_PROPTITLE_NUMERICFIELD\n"
@@ -3084,6 +3128,7 @@ msgid "Table Control "
msgstr ""
#: propres.src
+#, fuzzy
msgctxt ""
"propres.src\n"
"RID_STR_STANDARD\n"
@@ -3100,6 +3145,7 @@ msgid "General"
msgstr ""
#: propres.src
+#, fuzzy
msgctxt ""
"propres.src\n"
"RID_STR_PROPPAGE_DATA\n"
@@ -3126,6 +3172,7 @@ msgid "Yes"
msgstr ""
#: propres.src
+#, fuzzy
msgctxt ""
"propres.src\n"
"RID_STR_HELP_SECTION_LABEL\n"
@@ -3142,6 +3189,7 @@ msgid "<Embedded-Image>"
msgstr ""
#: propres.src
+#, fuzzy
msgctxt ""
"propres.src\n"
"RID_STR_TEXT_FORMAT\n"
diff --git a/source/an/extensions/source/scanner.po b/source/an/extensions/source/scanner.po
index 55131f91016..a6f8be2becb 100644
--- a/source/an/extensions/source/scanner.po
+++ b/source/an/extensions/source/scanner.po
@@ -111,6 +111,7 @@ msgid "Scan area"
msgstr ""
#: sanedlg.src
+#, fuzzy
msgctxt ""
"sanedlg.src\n"
"RID_SANE_DIALOG\n"
@@ -120,6 +121,7 @@ msgid "Left:"
msgstr "Enta la cucha"
#: sanedlg.src
+#, fuzzy
msgctxt ""
"sanedlg.src\n"
"RID_SANE_DIALOG\n"
@@ -129,6 +131,7 @@ msgid "Top:"
msgstr "Cobalto"
#: sanedlg.src
+#, fuzzy
msgctxt ""
"sanedlg.src\n"
"RID_SANE_DIALOG\n"
@@ -138,6 +141,7 @@ msgid "Right:"
msgstr "Enta la dreita"
#: sanedlg.src
+#, fuzzy
msgctxt ""
"sanedlg.src\n"
"RID_SANE_DIALOG\n"
@@ -174,6 +178,7 @@ msgid "Show advanced options"
msgstr ""
#: sanedlg.src
+#, fuzzy
msgctxt ""
"sanedlg.src\n"
"RID_SANE_DIALOG\n"
diff --git a/source/an/extensions/source/update/check.po b/source/an/extensions/source/update/check.po
index c1259dac064..603e44ce82e 100644
--- a/source/an/extensions/source/update/check.po
+++ b/source/an/extensions/source/update/check.po
@@ -253,6 +253,7 @@ msgid "~Install"
msgstr ""
#: updatehdl.src
+#, fuzzy
msgctxt ""
"updatehdl.src\n"
"RID_UPDATE_BTN_PAUSE\n"
diff --git a/source/an/extensions/uiconfig.po b/source/an/extensions/uiconfig.po
index 8884214453f..578f72d21e6 100644
--- a/source/an/extensions/uiconfig.po
+++ b/source/an/extensions/uiconfig.po
@@ -4,9 +4,9 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2013-05-23 12:05+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
diff --git a/source/an/extras/source/gallery/share.po b/source/an/extras/source/gallery/share.po
index bb22d81bb25..aafde5bc33d 100644
--- a/source/an/extras/source/gallery/share.po
+++ b/source/an/extras/source/gallery/share.po
@@ -4,15 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:06+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2012-11-15 14:43+0000\n"
+"Last-Translator: Chesús Daniel <xuxinho7@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1352990627.0\n"
#: gallery_names.ulf
msgctxt ""
diff --git a/source/an/filter/source/config/fragments/filters.po b/source/an/filter/source/config/fragments/filters.po
index 5b83ac77761..34873410d0e 100644
--- a/source/an/filter/source/config/fragments/filters.po
+++ b/source/an/filter/source/config/fragments/filters.po
@@ -42,6 +42,7 @@ msgid "HTML Document (Writer)"
msgstr ""
#: HTML_ui.xcu
+#, fuzzy
msgctxt ""
"HTML_ui.xcu\n"
"HTML\n"
@@ -330,6 +331,7 @@ msgid "ODF Spreadsheet Template"
msgstr ""
#: calc8_ui.xcu
+#, fuzzy
msgctxt ""
"calc8_ui.xcu\n"
"calc8\n"
@@ -465,6 +467,7 @@ msgid "ODF Presentation Template"
msgstr ""
#: impress8_ui.xcu
+#, fuzzy
msgctxt ""
"impress8_ui.xcu\n"
"impress8\n"
@@ -573,6 +576,7 @@ msgid "ODF Text Document Template"
msgstr ""
#: writer8_ui.xcu
+#, fuzzy
msgctxt ""
"writer8_ui.xcu\n"
"writer8\n"
@@ -636,6 +640,7 @@ msgid "ODF Master Document"
msgstr ""
#: writerglobal8_writer_ui.xcu
+#, fuzzy
msgctxt ""
"writerglobal8_writer_ui.xcu\n"
"writerglobal8_writer\n"
diff --git a/source/an/filter/source/pdf.po b/source/an/filter/source/pdf.po
index 20f1675a199..aefb7dcabd4 100644
--- a/source/an/filter/source/pdf.po
+++ b/source/an/filter/source/pdf.po
@@ -59,6 +59,7 @@ msgid "~All"
msgstr ""
#: impdialog.src
+#, fuzzy
msgctxt ""
"impdialog.src\n"
"RID_PDF_TAB_GENER\n"
@@ -68,6 +69,7 @@ msgid "~Pages"
msgstr "Pachinas"
#: impdialog.src
+#, fuzzy
msgctxt ""
"impdialog.src\n"
"RID_PDF_TAB_GENER\n"
@@ -290,6 +292,7 @@ msgid "PDF/A Export"
msgstr ""
#: impdialog.src
+#, fuzzy
msgctxt ""
"impdialog.src\n"
"RID_PDF_TAB_OPNFTR\n"
@@ -398,6 +401,7 @@ msgid "Page layout"
msgstr ""
#: impdialog.src
+#, fuzzy
msgctxt ""
"impdialog.src\n"
"RID_PDF_TAB_OPNFTR\n"
diff --git a/source/an/filter/source/xsltdialog.po b/source/an/filter/source/xsltdialog.po
index 48562478161..f6d56c3bf24 100644
--- a/source/an/filter/source/xsltdialog.po
+++ b/source/an/filter/source/xsltdialog.po
@@ -300,6 +300,7 @@ msgid "XSLT for export"
msgstr ""
#: xmlfiltertabpagexslt.src
+#, fuzzy
msgctxt ""
"xmlfiltertabpagexslt.src\n"
"RID_XML_FILTER_TABPAGE_XSLT\n"
@@ -318,6 +319,7 @@ msgid "XSLT for import"
msgstr ""
#: xmlfiltertabpagexslt.src
+#, fuzzy
msgctxt ""
"xmlfiltertabpagexslt.src\n"
"RID_XML_FILTER_TABPAGE_XSLT\n"
@@ -336,6 +338,7 @@ msgid "Template for import"
msgstr ""
#: xmlfiltertabpagexslt.src
+#, fuzzy
msgctxt ""
"xmlfiltertabpagexslt.src\n"
"RID_XML_FILTER_TABPAGE_XSLT\n"
diff --git a/source/an/filter/uiconfig/ui.po b/source/an/filter/uiconfig/ui.po
index ced6e724e0a..d504a6a47fd 100644
--- a/source/an/filter/uiconfig/ui.po
+++ b/source/an/filter/uiconfig/ui.po
@@ -129,7 +129,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Import"
-msgstr "Importar"
+msgstr ""
#: xmlfiltersettings.ui
msgctxt ""
@@ -156,7 +156,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit..."
-msgstr "_Editar..."
+msgstr ""
#: xmlfiltersettings.ui
msgctxt ""
diff --git a/source/an/forms/source/resource.po b/source/an/forms/source/resource.po
index d175003ecdc..869e8c4d38a 100644
--- a/source/an/forms/source/resource.po
+++ b/source/an/forms/source/resource.po
@@ -443,6 +443,7 @@ msgid "Month and year"
msgstr ""
#: xforms.src
+#, fuzzy
msgctxt ""
"xforms.src\n"
"RID_STR_DATATYPE_YEAR\n"
@@ -459,6 +460,7 @@ msgid "Month and day"
msgstr ""
#: xforms.src
+#, fuzzy
msgctxt ""
"xforms.src\n"
"RID_STR_DATATYPE_MONTH\n"
@@ -467,6 +469,7 @@ msgid "Month"
msgstr "Meses"
#: xforms.src
+#, fuzzy
msgctxt ""
"xforms.src\n"
"RID_STR_DATATYPE_DAY\n"
diff --git a/source/an/formula/source/core/resource.po b/source/an/formula/source/core/resource.po
index 18291007f1e..bc8e6efab71 100644
--- a/source/an/formula/source/core/resource.po
+++ b/source/an/formula/source/core/resource.po
@@ -1196,6 +1196,7 @@ msgid "MIRR"
msgstr ""
#: core_resource.src
+#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
@@ -1520,6 +1521,7 @@ msgid "RATE"
msgstr ""
#: core_resource.src
+#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
@@ -1529,6 +1531,7 @@ msgid "IPMT"
msgstr "PMT"
#: core_resource.src
+#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
diff --git a/source/an/formula/source/ui/dlg.po b/source/an/formula/source/ui/dlg.po
index 58aaf5d721e..e819126b346 100644
--- a/source/an/formula/source/ui/dlg.po
+++ b/source/an/formula/source/ui/dlg.po
@@ -32,7 +32,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "All"
-msgstr "Totz"
+msgstr ""
#: formdlgs.src
msgctxt ""
@@ -80,6 +80,7 @@ msgid "Error"
msgstr ""
#: formdlgs.src
+#, fuzzy
msgctxt ""
"formdlgs.src\n"
"RID_FORMULADLG_FORMULA_MODAL.TC_FUNCTION\n"
@@ -98,6 +99,7 @@ msgid "Structure"
msgstr ""
#: formdlgs.src
+#, fuzzy
msgctxt ""
"formdlgs.src\n"
"RID_FORMULADLG_FORMULA_MODAL\n"
@@ -116,6 +118,7 @@ msgid "Function result"
msgstr ""
#: formdlgs.src
+#, fuzzy
msgctxt ""
"formdlgs.src\n"
"RID_FORMULADLG_FORMULA_MODAL\n"
@@ -125,6 +128,7 @@ msgid "Result"
msgstr "Resultau"
#: formdlgs.src
+#, fuzzy
msgctxt ""
"formdlgs.src\n"
"RID_FORMULADLG_FORMULA_MODAL\n"
@@ -179,6 +183,7 @@ msgid "Function Wizard -"
msgstr ""
#: formdlgs.src
+#, fuzzy
msgctxt ""
"formdlgs.src\n"
"RID_FORMULADLG_FORMULA_MODAL\n"
@@ -188,6 +193,7 @@ msgid "~End"
msgstr "Fin"
#: formdlgs.src
+#, fuzzy
msgctxt ""
"formdlgs.src\n"
"RID_FORMULADLG_FORMULA.TC_FUNCTION\n"
@@ -206,6 +212,7 @@ msgid "Structure"
msgstr ""
#: formdlgs.src
+#, fuzzy
msgctxt ""
"formdlgs.src\n"
"RID_FORMULADLG_FORMULA\n"
@@ -224,6 +231,7 @@ msgid "Function result"
msgstr ""
#: formdlgs.src
+#, fuzzy
msgctxt ""
"formdlgs.src\n"
"RID_FORMULADLG_FORMULA\n"
@@ -233,6 +241,7 @@ msgid "Result"
msgstr "Resultau"
#: formdlgs.src
+#, fuzzy
msgctxt ""
"formdlgs.src\n"
"RID_FORMULADLG_FORMULA\n"
@@ -287,6 +296,7 @@ msgid "Function Wizard -"
msgstr ""
#: formdlgs.src
+#, fuzzy
msgctxt ""
"formdlgs.src\n"
"RID_FORMULADLG_FORMULA\n"
@@ -301,7 +311,7 @@ msgctxt ""
"RID_STR_SHRINK\n"
"string.text"
msgid "Shrink"
-msgstr "Achiquir"
+msgstr ""
#: formdlgs.src
msgctxt ""
diff --git a/source/an/fpicker/source/office.po b/source/an/fpicker/source/office.po
index 469a060a730..925877efd13 100644
--- a/source/an/fpicker/source/office.po
+++ b/source/an/fpicker/source/office.po
@@ -65,6 +65,7 @@ msgid "Pr~eview"
msgstr ""
#: OfficeFilePicker.src
+#, fuzzy
msgctxt ""
"OfficeFilePicker.src\n"
"STR_SVT_FILEPICKER_PLAY\n"
@@ -97,6 +98,7 @@ msgid "Style:"
msgstr ""
#: OfficeFilePicker.src
+#, fuzzy
msgctxt ""
"OfficeFilePicker.src\n"
"STR_SVT_FILEPICKER_SELECTION\n"
@@ -219,6 +221,7 @@ msgid "Edit ~filter settings"
msgstr ""
#: iodlg.src
+#, fuzzy
msgctxt ""
"iodlg.src\n"
"DLG_FPICKER_EXPLORERFILE\n"
diff --git a/source/an/framework/source/classes.po b/source/an/framework/source/classes.po
index 63f9e2097e7..09a0f0f4bdc 100644
--- a/source/an/framework/source/classes.po
+++ b/source/an/framework/source/classes.po
@@ -36,7 +36,7 @@ msgctxt ""
"STR_MENU_HEADFOOTALL\n"
"string.text"
msgid "All"
-msgstr "Totz"
+msgstr ""
#: resource.src
msgctxt ""
diff --git a/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po
index c0ff6870513..117ce4a3977 100644
--- a/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -977,6 +977,7 @@ msgid "Key: [1], Name: [2], Value: [3]"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_3\n"
@@ -1017,6 +1018,7 @@ msgid "Create new folder|"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_10\n"
@@ -1057,6 +1059,7 @@ msgid "&Change..."
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_18\n"
@@ -1113,6 +1116,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_25\n"
@@ -1177,6 +1181,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_35\n"
@@ -1257,6 +1262,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_49\n"
@@ -1313,6 +1319,7 @@ msgid "Feature Description:"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_56\n"
@@ -1425,6 +1432,7 @@ msgid "Will be installed to run from the network. (Available only if the feature
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_72\n"
@@ -1449,6 +1457,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_87\n"
@@ -1529,6 +1538,7 @@ msgid "{&MSSansBold8}Disk Space Requirements"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_100\n"
@@ -1585,6 +1595,7 @@ msgid "&Retry"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_111\n"
@@ -1625,6 +1636,7 @@ msgid "Create New Folder|"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_118\n"
@@ -1657,6 +1669,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_123\n"
@@ -1705,6 +1718,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_131\n"
@@ -1745,6 +1759,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_138\n"
@@ -1809,6 +1824,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_147\n"
@@ -1873,6 +1889,7 @@ msgid "{120}{70}{70}{70}{70}"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_157\n"
@@ -1889,6 +1906,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_159\n"
@@ -1929,6 +1947,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_166\n"
@@ -2001,6 +2020,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_177\n"
@@ -2041,6 +2061,7 @@ msgid "{&MSSansBold8}Remove the Program"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_182\n"
@@ -2057,6 +2078,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_184\n"
@@ -2129,6 +2151,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_193\n"
@@ -2177,6 +2200,7 @@ msgid "&Abort"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_205\n"
@@ -2241,6 +2265,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_215\n"
@@ -2281,6 +2306,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_220\n"
@@ -2361,6 +2387,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_233\n"
@@ -2425,6 +2452,7 @@ msgid "Sec."
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_241\n"
@@ -2457,6 +2485,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_246\n"
@@ -2505,6 +2534,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_254\n"
@@ -2569,6 +2599,7 @@ msgid "< &Back"
msgstr ""
#: Control.ulf
+#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_265\n"
@@ -2849,6 +2880,7 @@ msgid "Action [Time]: [1]. [2]"
msgstr ""
#: Error.ulf
+#, fuzzy
msgctxt ""
"Error.ulf\n"
"OOO_ERROR_8\n"
diff --git a/source/an/librelogo/source/pythonpath.po b/source/an/librelogo/source/pythonpath.po
index 3120b334bd0..3be531cde7a 100644
--- a/source/an/librelogo/source/pythonpath.po
+++ b/source/an/librelogo/source/pythonpath.po
@@ -73,6 +73,7 @@ msgid "home"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"POINT\n"
@@ -217,6 +218,7 @@ msgid "dotted"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"CLOSE\n"
@@ -305,6 +307,7 @@ msgid "upright|normal"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"NORMAL\n"
@@ -401,6 +404,7 @@ msgid "end"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"STOP\n"
@@ -545,6 +549,7 @@ msgid "input"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"PRINT\n"
@@ -641,6 +646,7 @@ msgid "abs"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"COUNT\n"
@@ -657,6 +663,7 @@ msgid "set"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"RANGE\n"
@@ -665,6 +672,7 @@ msgid "range"
msgstr "Narancha"
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"LIST\n"
@@ -865,6 +873,7 @@ msgid "fuchsia|magenta"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"GREEN\n"
@@ -873,6 +882,7 @@ msgid "green"
msgstr "Verde"
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"LIME\n"
@@ -905,6 +915,7 @@ msgid "navy"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"BLUE\n"
@@ -945,6 +956,7 @@ msgid "tomato"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"ORANGE\n"
diff --git a/source/an/nlpsolver/src/locale.po b/source/an/nlpsolver/src/locale.po
index 55f27bf68c3..0bfc5736412 100644
--- a/source/an/nlpsolver/src/locale.po
+++ b/source/an/nlpsolver/src/locale.po
@@ -177,6 +177,7 @@ msgid "Current Solution:"
msgstr ""
#: NLPSolverStatusDialog_en_US.properties
+#, fuzzy
msgctxt ""
"NLPSolverStatusDialog_en_US.properties\n"
"NLPSolverStatusDialog.Controls.lblIteration\n"
@@ -281,6 +282,7 @@ msgid "Milliseconds"
msgstr ""
#: NLPSolverStatusDialog_en_US.properties
+#, fuzzy
msgctxt ""
"NLPSolverStatusDialog_en_US.properties\n"
"NLPSolverStatusDialog.Time.Second\n"
@@ -297,6 +299,7 @@ msgid "Seconds"
msgstr "Segundos"
#: NLPSolverStatusDialog_en_US.properties
+#, fuzzy
msgctxt ""
"NLPSolverStatusDialog_en_US.properties\n"
"NLPSolverStatusDialog.Time.Minute\n"
@@ -313,6 +316,7 @@ msgid "Minutes"
msgstr "Menutos"
#: NLPSolverStatusDialog_en_US.properties
+#, fuzzy
msgctxt ""
"NLPSolverStatusDialog_en_US.properties\n"
"NLPSolverStatusDialog.Time.Hour\n"
@@ -329,6 +333,7 @@ msgid "Hours"
msgstr "Horas"
#: NLPSolverStatusDialog_en_US.properties
+#, fuzzy
msgctxt ""
"NLPSolverStatusDialog_en_US.properties\n"
"NLPSolverStatusDialog.Time.Day\n"
diff --git a/source/an/officecfg/registry/data/org/openoffice/Office.po b/source/an/officecfg/registry/data/org/openoffice/Office.po
index ce7184c82ef..1082119e94d 100644
--- a/source/an/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/an/officecfg/registry/data/org/openoffice/Office.po
@@ -42,7 +42,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Left"
-msgstr "Enta la cucha"
+msgstr ""
#: Addons.xcu
msgctxt ""
@@ -51,7 +51,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Right"
-msgstr "Enta la dreita"
+msgstr ""
#: Addons.xcu
msgctxt ""
@@ -69,7 +69,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Stop"
-msgstr "Aturar"
+msgstr ""
#: Addons.xcu
msgctxt ""
@@ -339,7 +339,7 @@ msgctxt ""
"NickName\n"
"value.text"
msgid "Nickname"
-msgstr "Sobrenombre"
+msgstr "Embotada"
#: DataAccess.xcu
msgctxt ""
@@ -405,6 +405,7 @@ msgid "Pager"
msgstr "Busca"
#: DataAccess.xcu
+#, fuzzy
msgctxt ""
"DataAccess.xcu\n"
"..DataAccess.DriverSettings.com.sun.star.comp.sdbc.MozabDriver.ColumnAliases\n"
@@ -630,15 +631,17 @@ msgid "Custom 4"
msgstr "Personalizau 4"
#: DataAccess.xcu
+#, fuzzy
msgctxt ""
"DataAccess.xcu\n"
"..DataAccess.DriverSettings.com.sun.star.comp.sdbc.MozabDriver.ColumnAliases\n"
"Notes\n"
"value.text"
msgid "Comments"
-msgstr "Comentarios"
+msgstr "Obserbacions"
#: Embedding.xcu
+#, fuzzy
msgctxt ""
"Embedding.xcu\n"
"..Embedding.Verbs.SHOW\n"
@@ -648,6 +651,7 @@ msgid "~Edit"
msgstr "Editar"
#: Embedding.xcu
+#, fuzzy
msgctxt ""
"Embedding.xcu\n"
"..Embedding.Verbs.OPEN\n"
@@ -657,6 +661,7 @@ msgid "~Open"
msgstr "A2brir"
#: Embedding.xcu
+#, fuzzy
msgctxt ""
"Embedding.xcu\n"
"..Embedding.Verbs.PROPERTIES\n"
@@ -666,6 +671,7 @@ msgid "Propert~ies..."
msgstr "Propiedades..."
#: Embedding.xcu
+#, fuzzy
msgctxt ""
"Embedding.xcu\n"
"..Embedding.Verbs.SAVECOPYAS\n"
@@ -675,6 +681,7 @@ msgid "Save Copy ~as..."
msgstr "Alzar copia como..."
#: Embedding.xcu
+#, fuzzy
msgctxt ""
"Embedding.xcu\n"
"..Embedding.ObjectNames.Calc\n"
@@ -684,6 +691,7 @@ msgid "%PRODUCTNAME %PRODUCTVERSION Spreadsheet"
msgstr "%PRODUCTNAME %PRODUCTVERSION Fuella de calculo"
#: Embedding.xcu
+#, fuzzy
msgctxt ""
"Embedding.xcu\n"
"..Embedding.ObjectNames.Chart\n"
@@ -693,6 +701,7 @@ msgid "%PRODUCTNAME %PRODUCTVERSION Chart"
msgstr "%PRODUCTNAME %PRODUCTVERSION Grafico"
#: Embedding.xcu
+#, fuzzy
msgctxt ""
"Embedding.xcu\n"
"..Embedding.ObjectNames.Draw\n"
@@ -702,6 +711,7 @@ msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
msgstr "%PRODUCTNAME %PRODUCTVERSION Dibuixo"
#: Embedding.xcu
+#, fuzzy
msgctxt ""
"Embedding.xcu\n"
"..Embedding.ObjectNames.Impress\n"
@@ -711,6 +721,7 @@ msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
msgstr "%PRODUCTNAME %PRODUCTVERSION Presentación"
#: Embedding.xcu
+#, fuzzy
msgctxt ""
"Embedding.xcu\n"
"..Embedding.ObjectNames.Math\n"
@@ -720,6 +731,7 @@ msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formula"
#: Embedding.xcu
+#, fuzzy
msgctxt ""
"Embedding.xcu\n"
"..Embedding.ObjectNames.Writer\n"
@@ -843,7 +855,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Beige"
-msgstr "Beis"
+msgstr "Beige"
#: FormWizard.xcu
msgctxt ""
@@ -888,7 +900,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Ice Blue"
-msgstr "Azul claro"
+msgstr "Azul chelo"
#: FormWizard.xcu
msgctxt ""
@@ -918,6 +930,7 @@ msgid "Red"
msgstr "Royo"
#: FormWizard.xcu
+#, fuzzy
msgctxt ""
"FormWizard.xcu\n"
"..FormWizard.FormWizard.Styles.style10\n"
@@ -936,6 +949,7 @@ msgid "Previous"
msgstr ""
#: PresenterScreen.xcu
+#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.b.Normal\n"
@@ -987,7 +1001,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Zoom"
-msgstr "Escala"
+msgstr ""
#: PresenterScreen.xcu
msgctxt ""
@@ -996,7 +1010,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Close"
-msgstr "Zarrar"
+msgstr ""
#: PresenterScreen.xcu
msgctxt ""
@@ -1005,7 +1019,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Close"
-msgstr "Zarrar"
+msgstr ""
#: PresenterScreen.xcu
msgctxt ""
@@ -1014,7 +1028,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Close"
-msgstr "Zarrar"
+msgstr ""
#: PresenterScreen.xcu
msgctxt ""
@@ -1077,7 +1091,7 @@ msgctxt ""
"Left\n"
"value.text"
msgid "End"
-msgstr "Fin"
+msgstr ""
#: PresenterScreen.xcu
msgctxt ""
@@ -1437,7 +1451,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "ID Categoría"
+msgstr "IDCategor"
#: TableWizard.xcu
msgctxt ""
@@ -1527,7 +1541,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "ID Categoría"
+msgstr "IDCategoría"
#: TableWizard.xcu
msgctxt ""
@@ -1536,7 +1550,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "ID Categoría"
+msgstr "IDCategor"
#: TableWizard.xcu
msgctxt ""
@@ -1554,7 +1568,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SupplierID"
-msgstr "ID Proveedor"
+msgstr "IDProveed"
#: TableWizard.xcu
msgctxt ""
@@ -1626,7 +1640,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "UnitPrice"
-msgstr "Pre por Unidat"
+msgstr "PreUnid"
#: TableWizard.xcu
msgctxt ""
@@ -1665,6 +1679,7 @@ msgid "Discontin"
msgstr "Suspend"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.products.Fields.leadtime\n"
@@ -1674,13 +1689,14 @@ msgid "LeadTime"
msgstr "TiempoDeEspera"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.products.Fields.leadtime\n"
"ShortName\n"
"value.text"
msgid "LeadTime"
-msgstr "TiempoDeEspera"
+msgstr "TiempoEsp"
#: TableWizard.xcu
msgctxt ""
@@ -1698,7 +1714,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SupplierID"
-msgstr "ID Proveedor"
+msgstr "IDProveedor"
#: TableWizard.xcu
msgctxt ""
@@ -1707,7 +1723,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SupplierID"
-msgstr "ID Proveedor"
+msgstr "IDProveed"
#: TableWizard.xcu
msgctxt ""
@@ -1815,7 +1831,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "Codigo Postal"
+msgstr "CodPostal"
#: TableWizard.xcu
msgctxt ""
@@ -2022,9 +2038,10 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MiddleName"
-msgstr "SegundoNombre"
+msgstr "2doNombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.lastlame\n"
@@ -2034,6 +2051,7 @@ msgid "LastName"
msgstr "Apellidos"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.lastlame\n"
@@ -2133,60 +2151,67 @@ msgid "City"
msgstr "Ciudat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.postalcode\n"
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "Codigo Postal"
+msgstr "CódigoPostal"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.postalcode\n"
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "Codigo Postal"
+msgstr "CódPostal"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.stateorprovince\n"
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "EstauUProvincia"
+msgstr "EstadoOProvincia"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.stateorprovince\n"
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "EstauProv"
+msgstr "EstadoProv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.countryorregion\n"
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "PaísURechión"
+msgstr "PaísORegión"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.countryorregion\n"
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "PaísRech"
+msgstr "PaísReg"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.phonenumber\n"
@@ -2196,6 +2221,7 @@ msgid "PhoneNumber"
msgstr "NúmeroTeléfono"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.phonenumber\n"
@@ -2205,6 +2231,7 @@ msgid "PhoneNo"
msgstr "NroTel"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.faxnumber\n"
@@ -2214,6 +2241,7 @@ msgid "FaxNumber"
msgstr "NúmeroFax"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.faxnumber\n"
@@ -2223,6 +2251,7 @@ msgid "FaxNo"
msgstr "NroFax"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.mobilenumber\n"
@@ -2232,6 +2261,7 @@ msgid "MobileNumber"
msgstr "NúmeroMóvil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.mobilenumber\n"
@@ -2241,24 +2271,27 @@ msgid "MobileNo"
msgstr "NroMóvil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.emailaddress\n"
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr "AdrezaCorreuElectronico"
+msgstr "DirecciónCorreoElectrónico"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.emailaddress\n"
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "AdrezCorreuE"
+msgstr "DirecCorreoE"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.birthdate\n"
@@ -2268,15 +2301,17 @@ msgid "Birthdate"
msgstr "FechaNacimiento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.birthdate\n"
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "FechaNacimiento"
+msgstr "FechaNac"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.nationality\n"
@@ -2286,15 +2321,17 @@ msgid "Nationality"
msgstr "Nacionalidat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.nationality\n"
"ShortName\n"
"value.text"
msgid "Nationality"
-msgstr "Nacionalidat"
+msgstr "Nacionalid"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.dateupdated\n"
@@ -2304,6 +2341,7 @@ msgid "DateUpdated"
msgstr "FechaActualización"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.dateupdated\n"
@@ -2313,6 +2351,7 @@ msgid "DateUpdate"
msgstr "FechActual"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.datejoined\n"
@@ -2322,15 +2361,17 @@ msgid "DateJoined"
msgstr "FechaAsociación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.datejoined\n"
"ShortName\n"
"value.text"
msgid "DateJoined"
-msgstr "FechaAsociación"
+msgstr "FechaAsoc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.membershipstatus\n"
@@ -2340,6 +2381,7 @@ msgid "MembershipStatus"
msgstr "EstadoAsociación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.membershipstatus\n"
@@ -2349,6 +2391,7 @@ msgid "MemberStat"
msgstr "EstadAsoc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.pledgeamount\n"
@@ -2358,6 +2401,7 @@ msgid "PledgeAmount"
msgstr "ImportePromesa"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.pledgeamount\n"
@@ -2367,6 +2411,7 @@ msgid "PledgeAmnt"
msgstr "ImportProm"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.pledgepaiddate\n"
@@ -2376,6 +2421,7 @@ msgid "PledgePaidDate"
msgstr "FechaPagoPromesa"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.pledgepaiddate\n"
@@ -2385,6 +2431,7 @@ msgid "PldgPdDate"
msgstr "FecPagPromes"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.duesamount\n"
@@ -2394,15 +2441,17 @@ msgid "DuesAmount"
msgstr "ImporteCuotas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.duesamount\n"
"ShortName\n"
"value.text"
msgid "DuesAmount"
-msgstr "ImporteCuotas"
+msgstr "ImprtCuotas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.duespaiddate\n"
@@ -2412,6 +2461,7 @@ msgid "DuesPaidDate"
msgstr "FechaPagoCuotas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.duespaiddate\n"
@@ -2421,6 +2471,7 @@ msgid "DuesPdDate"
msgstr "FecPagCuotas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.photo\n"
@@ -2430,6 +2481,7 @@ msgid "Photo"
msgstr "Foto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.photo\n"
@@ -2439,6 +2491,7 @@ msgid "Photo"
msgstr "Foto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.notes\n"
@@ -2448,6 +2501,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.notes\n"
@@ -2457,6 +2511,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts\n"
@@ -2466,6 +2521,7 @@ msgid "Contacts"
msgstr "Contactos"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.contactID\n"
@@ -2475,6 +2531,7 @@ msgid "ContactID"
msgstr "IDContacto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.contactID\n"
@@ -2484,6 +2541,7 @@ msgid "ContactID"
msgstr "IDContacto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.firstname\n"
@@ -2493,6 +2551,7 @@ msgid "FirstName"
msgstr "Nombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.firstname\n"
@@ -2502,24 +2561,27 @@ msgid "FirstName"
msgstr "Nombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.lastname\n"
"Name\n"
"value.text"
msgid "LastName"
-msgstr "Apellidos"
+msgstr "Apellido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.lastname\n"
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "Apellidos"
+msgstr "Apellido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.title\n"
@@ -2529,6 +2591,7 @@ msgid "Title"
msgstr "Cargo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.title\n"
@@ -2574,60 +2637,67 @@ msgid "City"
msgstr "Ciudat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.postalcode\n"
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "Codigo Postal"
+msgstr "CódigoPostal"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.postalcode\n"
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "Codigo Postal"
+msgstr "CódPost"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.stateorprovince\n"
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "EstauUProvincia"
+msgstr "EstadoOProvincia"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.stateorprovince\n"
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "EstauProv"
+msgstr "EstadoProv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.countryorregion\n"
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "PaísURechión"
+msgstr "PaísORegión"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.countryorregion\n"
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "PaísRech"
+msgstr "PaísRegión"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.phonenumber\n"
@@ -2637,6 +2707,7 @@ msgid "PhoneNumber"
msgstr "NúmeroTeléfono"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.phonenumber\n"
@@ -2646,6 +2717,7 @@ msgid "PhoneNo"
msgstr "NroTel"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.faxnumber\n"
@@ -2655,6 +2727,7 @@ msgid "FaxNumber"
msgstr "NúmeroFax"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.faxnumber\n"
@@ -2664,6 +2737,7 @@ msgid "FaxNo"
msgstr "NroFax"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.mobilenumber\n"
@@ -2673,6 +2747,7 @@ msgid "MobileNumber"
msgstr "NúmeroMóvil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.mobilenumber\n"
@@ -2682,24 +2757,27 @@ msgid "MobileNo"
msgstr "NroMóvil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.emailaddress\n"
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr "AdrezaCorreuElectronico"
+msgstr "DirecciónCorreoElectrónico"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.emailaddress\n"
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "AdrezCorreuE"
+msgstr "DirecCorreoE"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.salutation\n"
@@ -2709,6 +2787,7 @@ msgid "Salutation"
msgstr "Saludo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.salutation\n"
@@ -2718,6 +2797,7 @@ msgid "Salutation"
msgstr "Saludo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.birthdate\n"
@@ -2727,15 +2807,17 @@ msgid "Birthdate"
msgstr "FechaNacimiento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.birthdate\n"
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "FechaNacimiento"
+msgstr "FechaNac"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.contacttypeID\n"
@@ -2745,6 +2827,7 @@ msgid "ContactTypeID"
msgstr "IDTipoContacto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.contacttypeID\n"
@@ -2754,6 +2837,7 @@ msgid "CntctTypID"
msgstr "IDTipContc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.maritalstatus\n"
@@ -2763,6 +2847,7 @@ msgid "MaritalStatus"
msgstr "EstadoCivil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.maritalstatus\n"
@@ -2772,6 +2857,7 @@ msgid "MaritlStat"
msgstr "EstadoCiv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.spousename\n"
@@ -2781,15 +2867,17 @@ msgid "SpouseName"
msgstr "NombreCónyuge"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.spousename\n"
"ShortName\n"
"value.text"
msgid "SpouseName"
-msgstr "NombreCónyuge"
+msgstr "NombCónyug"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.spousesinterests\n"
@@ -2799,6 +2887,7 @@ msgid "SpousesInterests"
msgstr "InteresesCónyuges"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.spousesinterests\n"
@@ -2808,6 +2897,7 @@ msgid "SpouseIntr"
msgstr "InterCónyg"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.contactsinterests\n"
@@ -2817,6 +2907,7 @@ msgid "ContactsInterests"
msgstr "InteresesContactos"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.contactsinterests\n"
@@ -2826,6 +2917,7 @@ msgid "CntctInter"
msgstr "InterContc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.childrennames\n"
@@ -2835,6 +2927,7 @@ msgid "ChildrenNames"
msgstr "NombresNiños"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.childrennames\n"
@@ -2844,6 +2937,7 @@ msgid "ChildName"
msgstr "NombNiños"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.photo\n"
@@ -2853,6 +2947,7 @@ msgid "Photo"
msgstr "Foto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.photo\n"
@@ -2862,6 +2957,7 @@ msgid "Photo"
msgstr "Foto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.notes\n"
@@ -2871,6 +2967,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.notes\n"
@@ -2880,6 +2977,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers\n"
@@ -2889,6 +2987,7 @@ msgid "Customers"
msgstr "Clients"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.customerID\n"
@@ -2898,6 +2997,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.customerID\n"
@@ -2907,6 +3007,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.companyname\n"
@@ -2916,6 +3017,7 @@ msgid "CompanyName"
msgstr "NombreCompañía"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.companyname\n"
@@ -2925,6 +3027,7 @@ msgid "CompnyName"
msgstr "NombCía"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.firstname\n"
@@ -2934,6 +3037,7 @@ msgid "FirstName"
msgstr "Nombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.firstname\n"
@@ -2943,24 +3047,27 @@ msgid "FirstName"
msgstr "Nombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.lastname\n"
"Name\n"
"value.text"
msgid "LastName"
-msgstr "Apellidos"
+msgstr "Apellido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.lastname\n"
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "Apellidos"
+msgstr "Apellido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.department\n"
@@ -2970,15 +3077,17 @@ msgid "Department"
msgstr "Departamento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.department\n"
"ShortName\n"
"value.text"
msgid "Department"
-msgstr "Departamento"
+msgstr "Depto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.address\n"
@@ -2988,15 +3097,17 @@ msgid "Address"
msgstr "Adreza"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.address\n"
"ShortName\n"
"value.text"
msgid "Address"
-msgstr "Adreza"
+msgstr "Direc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.city\n"
@@ -3006,6 +3117,7 @@ msgid "City"
msgstr "Ciudat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.city\n"
@@ -3015,60 +3127,67 @@ msgid "City"
msgstr "Ciudat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.postalcode\n"
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "Codigo Postal"
+msgstr "CódigoPostal"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.postalcode\n"
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "Codigo Postal"
+msgstr "CódPostal"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.stateorprovince\n"
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "EstauUProvincia"
+msgstr "EstadoOProvincia"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.stateorprovince\n"
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "EstauProv"
+msgstr "EstadoProv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.countryorregion\n"
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "PaísURechión"
+msgstr "PaísORegión"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.countryorregion\n"
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "PaísRech"
+msgstr "PaísRegión"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.phonenumber\n"
@@ -3078,6 +3197,7 @@ msgid "PhoneNumber"
msgstr "NúmeroTeléfono"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.phonenumber\n"
@@ -3087,6 +3207,7 @@ msgid "PhoneNo"
msgstr "NroTel"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.faxnumber\n"
@@ -3096,6 +3217,7 @@ msgid "FaxNumber"
msgstr "NúmeroFax"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.faxnumber\n"
@@ -3105,6 +3227,7 @@ msgid "FaxNo"
msgstr "NroFax"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.mobilenumber\n"
@@ -3114,33 +3237,37 @@ msgid "MobileNumber"
msgstr "NúmeroMóvil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.mobilenumber\n"
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "NroMóvil"
+msgstr "NúmMóvil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.emailaddress\n"
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr "AdrezaCorreuElectronico"
+msgstr "DirCorreoElectrónico"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.emailaddress\n"
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "AdrezCorreuE"
+msgstr "DirCorEléc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.title\n"
@@ -3150,6 +3277,7 @@ msgid "Title"
msgstr "Cargo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.title\n"
@@ -3159,6 +3287,7 @@ msgid "Title"
msgstr "Cargo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.notes\n"
@@ -3168,6 +3297,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.notes\n"
@@ -3177,6 +3307,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees\n"
@@ -3186,6 +3317,7 @@ msgid "Employees"
msgstr "Emplegaus"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.employeeID\n"
@@ -3195,6 +3327,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.employeeID\n"
@@ -3204,6 +3337,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.firstname\n"
@@ -3213,6 +3347,7 @@ msgid "FirstName"
msgstr "Nombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.firstname\n"
@@ -3222,6 +3357,7 @@ msgid "FirstName"
msgstr "Nombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.middlename\n"
@@ -3231,33 +3367,37 @@ msgid "MiddleName"
msgstr "SegundoNombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.middlename\n"
"ShortName\n"
"value.text"
msgid "MiddleName"
-msgstr "SegundoNombre"
+msgstr "2oNombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.lastname\n"
"Name\n"
"value.text"
msgid "LastName"
-msgstr "Apellidos"
+msgstr "Apellido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.lastname\n"
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "Apellidos"
+msgstr "Apellido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.title\n"
@@ -3267,6 +3407,7 @@ msgid "Title"
msgstr "Cargo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.title\n"
@@ -3276,6 +3417,7 @@ msgid "Title"
msgstr "Cargo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.department\n"
@@ -3285,15 +3427,17 @@ msgid "Department"
msgstr "Departamento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.department\n"
"ShortName\n"
"value.text"
msgid "Department"
-msgstr "Departamento"
+msgstr "Departamen"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.socialsecuritynumber\n"
@@ -3303,6 +3447,7 @@ msgid "SocialSecurityNumber"
msgstr "NúmSeguridadSocial"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.socialsecuritynumber\n"
@@ -3312,6 +3457,7 @@ msgid "SocSecNo"
msgstr "NúmSegSoc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.employeenumber\n"
@@ -3321,6 +3467,7 @@ msgid "EmployeeNumber"
msgstr "NúmeroEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.employeenumber\n"
@@ -3330,24 +3477,27 @@ msgid "EmployeeNo"
msgstr "NúmEmplead"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.emailaddress\n"
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr "AdrezaCorreuElectronico"
+msgstr "DirCorreoElectrónico"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.emailaddress\n"
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "AdrezCorreuE"
+msgstr "DirCorEléc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.extension\n"
@@ -3357,6 +3507,7 @@ msgid "Extension"
msgstr "Extensión"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.extension\n"
@@ -3366,6 +3517,7 @@ msgid "Extension"
msgstr "Extensión"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.address\n"
@@ -3375,6 +3527,7 @@ msgid "Address"
msgstr "Adreza"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.address\n"
@@ -3384,6 +3537,7 @@ msgid "Address"
msgstr "Adreza"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.city\n"
@@ -3393,6 +3547,7 @@ msgid "City"
msgstr "Ciudat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.city\n"
@@ -3402,78 +3557,87 @@ msgid "City"
msgstr "Ciudat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.postalcode\n"
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "Codigo Postal"
+msgstr "CódPostal"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.postalcode\n"
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "Codigo Postal"
+msgstr "CódPostal"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.stateorprovince\n"
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "EstauUProvincia"
+msgstr "EstadoOProv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.stateorprovince\n"
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "EstauProv"
+msgstr "EstadoProv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.countryorregion\n"
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "PaísURechión"
+msgstr "PaísORegión"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.countryorregion\n"
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "PaísRech"
+msgstr "PaísRegión"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.phonenumber\n"
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "NúmeroTeléfono"
+msgstr "NúmTeléfono"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.phonenumber\n"
"ShortName\n"
"value.text"
msgid "PhoneNo"
-msgstr "NroTel"
+msgstr "NúmTeléfon"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.faxnumber\n"
@@ -3483,15 +3647,17 @@ msgid "FaxNumber"
msgstr "NúmeroFax"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.faxnumber\n"
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "NroFax"
+msgstr "NúmeroFax"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.mobilenumber\n"
@@ -3501,15 +3667,17 @@ msgid "MobileNumber"
msgstr "NúmeroMóvil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.mobilenumber\n"
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "NroMóvil"
+msgstr "NúmMóvil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.birthdate\n"
@@ -3519,15 +3687,17 @@ msgid "Birthdate"
msgstr "FechaNacimiento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.birthdate\n"
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "FechaNacimiento"
+msgstr "FechaNacim"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.datehired\n"
@@ -3537,6 +3707,7 @@ msgid "DateHired"
msgstr "FechaContratación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.datehired\n"
@@ -3546,6 +3717,7 @@ msgid "DateHired"
msgstr "FechaContratación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.departmentID\n"
@@ -3555,6 +3727,7 @@ msgid "DepartmentID"
msgstr "IdDepartamento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.departmentID\n"
@@ -3564,6 +3737,7 @@ msgid "DeprtmntID"
msgstr "IdDepartam"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.salary\n"
@@ -3573,6 +3747,7 @@ msgid "Salary"
msgstr "Salario"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.salary\n"
@@ -3582,6 +3757,7 @@ msgid "Salary"
msgstr "Salario"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.billingrate\n"
@@ -3591,6 +3767,7 @@ msgid "BillingRate"
msgstr "TasaFacturación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.billingrate\n"
@@ -3600,6 +3777,7 @@ msgid "BillngRate"
msgstr "TasaFactur"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.deductions\n"
@@ -3609,6 +3787,7 @@ msgid "Deductions"
msgstr "Deduccions"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.deductions\n"
@@ -3618,6 +3797,7 @@ msgid "Deductions"
msgstr "Deduccions"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.supervisorID\n"
@@ -3627,6 +3807,7 @@ msgid "SupervisorID"
msgstr "IDSupervisor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.supervisorID\n"
@@ -3636,6 +3817,7 @@ msgid "SupervisID"
msgstr "IDSupervis"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.spousename\n"
@@ -3645,15 +3827,17 @@ msgid "SpouseName"
msgstr "NombreCónyuge"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.spousename\n"
"ShortName\n"
"value.text"
msgid "SpouseName"
-msgstr "NombreCónyuge"
+msgstr "NombCónyug"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.officelocation\n"
@@ -3663,6 +3847,7 @@ msgid "OfficeLocation"
msgstr "LugarOficina"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.officelocation\n"
@@ -3672,6 +3857,7 @@ msgid "OfficeLoc"
msgstr "LugOficin"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.photo\n"
@@ -3681,6 +3867,7 @@ msgid "Photo"
msgstr "Foto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.photo\n"
@@ -3690,6 +3877,7 @@ msgid "Photo"
msgstr "Foto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.notes\n"
@@ -3699,6 +3887,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.notes\n"
@@ -3708,6 +3897,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders\n"
@@ -3717,6 +3907,7 @@ msgid "Orders"
msgstr "Pedius"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.orderID\n"
@@ -3726,6 +3917,7 @@ msgid "OrderID"
msgstr "IDPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.orderID\n"
@@ -3735,6 +3927,7 @@ msgid "OrderID"
msgstr "IDPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.customerID\n"
@@ -3744,6 +3937,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.customerID\n"
@@ -3753,6 +3947,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.employeeID\n"
@@ -3762,6 +3957,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.employeeID\n"
@@ -3771,6 +3967,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.orderdate\n"
@@ -3780,15 +3977,17 @@ msgid "OrderDate"
msgstr "FechaPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.orderdate\n"
"ShortName\n"
"value.text"
msgid "OrderDate"
-msgstr "FechaPedido"
+msgstr "FechPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.purchaseordernumber\n"
@@ -3798,6 +3997,7 @@ msgid "PurchaseOrderNumber"
msgstr "NúmPedidoCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.purchaseordernumber\n"
@@ -3807,6 +4007,7 @@ msgid "PurchOrdNo"
msgstr "NúmPedComp"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.requiredbydate\n"
@@ -3816,6 +4017,7 @@ msgid "RequiredByDate"
msgstr "RequeridoEnFecha"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.requiredbydate\n"
@@ -3825,6 +4027,7 @@ msgid "RequirDate"
msgstr "RequFecha"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.promisedbydate\n"
@@ -3834,6 +4037,7 @@ msgid "PromisedByDate"
msgstr "PrometidoEnFecha"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.promisedbydate\n"
@@ -3843,6 +4047,7 @@ msgid "PromisDate"
msgstr "PromeFecha"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipname\n"
@@ -3852,15 +4057,17 @@ msgid "ShipName"
msgstr "Destinatario"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipname\n"
"ShortName\n"
"value.text"
msgid "ShipName"
-msgstr "Destinatario"
+msgstr "Destinatar"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipaddress\n"
@@ -3870,6 +4077,7 @@ msgid "ShipAddress"
msgstr "DirecciónDestinatario"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipaddress\n"
@@ -3879,6 +4087,7 @@ msgid "ShipAddres"
msgstr "DirecDesti"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipcity\n"
@@ -3888,15 +4097,17 @@ msgid "ShipCity"
msgstr "CiudadDestinatario"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipcity\n"
"ShortName\n"
"value.text"
msgid "ShipCity"
-msgstr "CiudadDestinatario"
+msgstr "CiudadDest"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipstateorprovince\n"
@@ -3906,6 +4117,7 @@ msgid "ShipStateOrProvince"
msgstr "EdoOProvDestinatario"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipstateorprovince\n"
@@ -3915,6 +4127,7 @@ msgid "ShpStatPro"
msgstr "EstProvDes"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shippostalcode\n"
@@ -3924,6 +4137,7 @@ msgid "ShipPostalCode"
msgstr "CódPostalDestinatario"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shippostalcode\n"
@@ -3933,6 +4147,7 @@ msgid "ShipPostlC"
msgstr "CódPDestin"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipcountryorregion\n"
@@ -3942,6 +4157,7 @@ msgid "ShipCountryOrRegion"
msgstr "PaísORegiónDestinatario"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipcountryorregion\n"
@@ -3951,6 +4167,7 @@ msgid "ShipCouReg"
msgstr "PaísRegDes"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipphonenumber\n"
@@ -3960,6 +4177,7 @@ msgid "ShipPhoneNumber"
msgstr "NúmeroTeléfDestinatario"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipphonenumber\n"
@@ -3969,6 +4187,7 @@ msgid "ShipPhonNo"
msgstr "NúmTelDest"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipdate\n"
@@ -3978,6 +4197,7 @@ msgid "ShipDate"
msgstr "FechaEnvío"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shipdate\n"
@@ -3987,6 +4207,7 @@ msgid "ShipDate"
msgstr "FechaEnvío"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shippingmethodID\n"
@@ -3996,6 +4217,7 @@ msgid "ShippingMethodID"
msgstr "IDModoEnvío"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.shippingmethodID\n"
@@ -4005,6 +4227,7 @@ msgid "ShipMethID"
msgstr "IDModEnvío"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.freightcharge\n"
@@ -4014,15 +4237,17 @@ msgid "FreightCharge"
msgstr "Transporte de mercaderías"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.freightcharge\n"
"ShortName\n"
"value.text"
msgid "FreightCharge"
-msgstr "Transporte de mercaderías"
+msgstr "CrgoPrCost"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.salestaxrate\n"
@@ -4032,6 +4257,7 @@ msgid "SalesTaxRate"
msgstr "TasaImpuestoVentas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.salestaxrate\n"
@@ -4041,6 +4267,7 @@ msgid "SalesTaxRt"
msgstr "TasImpVtas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails\n"
@@ -4050,6 +4277,7 @@ msgid "OrderDetails"
msgstr "DetallesPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.orderdetailID\n"
@@ -4059,6 +4287,7 @@ msgid "OrderDetailID"
msgstr "DetalPedid"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.orderdetailID\n"
@@ -4068,15 +4297,17 @@ msgid "OrderDetID"
msgstr "IDDetallesPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.orderID\n"
"Name\n"
"value.text"
msgid "OrderID"
-msgstr "IDPedido"
+msgstr "IDDetPedid"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.orderID\n"
@@ -4086,6 +4317,7 @@ msgid "OrderID"
msgstr "IDPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.productID\n"
@@ -4095,6 +4327,7 @@ msgid "ProductID"
msgstr "IDProducto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.productID\n"
@@ -4104,6 +4337,7 @@ msgid "ProductID"
msgstr "IDProducto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.datesold\n"
@@ -4113,15 +4347,17 @@ msgid "DateSold"
msgstr "FechaDeVenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.datesold\n"
"ShortName\n"
"value.text"
msgid "DateSold"
-msgstr "FechaDeVenta"
+msgstr "FechaVenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.quantity\n"
@@ -4131,6 +4367,7 @@ msgid "Quantity"
msgstr "Cantidat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.quantity\n"
@@ -4140,24 +4377,27 @@ msgid "Quantity"
msgstr "Cantidat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.unitprice\n"
"Name\n"
"value.text"
msgid "UnitPrice"
-msgstr "Pre por Unidat"
+msgstr "PrecioUnidad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.unitprice\n"
"ShortName\n"
"value.text"
msgid "UnitPrice"
-msgstr "Pre por Unidat"
+msgstr "PrecioUnid"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.discount\n"
@@ -4167,6 +4407,7 @@ msgid "Discount"
msgstr "Esconto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.discount\n"
@@ -4176,6 +4417,7 @@ msgid "Discount"
msgstr "Esconto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.saleprice\n"
@@ -4185,15 +4427,17 @@ msgid "SalePrice"
msgstr "PrecioVenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.saleprice\n"
"ShortName\n"
"value.text"
msgid "SalePrice"
-msgstr "PrecioVenta"
+msgstr "PrecVenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.salestax\n"
@@ -4203,15 +4447,17 @@ msgid "SalesTax"
msgstr "ImpuestoVentas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.salestax\n"
"ShortName\n"
"value.text"
msgid "SalesTax"
-msgstr "ImpuestoVentas"
+msgstr "ImpstoVtas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.linetotal\n"
@@ -4221,6 +4467,7 @@ msgid "LineTotal"
msgstr "LíneaTotal"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.linetotal\n"
@@ -4230,6 +4477,7 @@ msgid "LineTotal"
msgstr "LíneaTotal"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments\n"
@@ -4239,6 +4487,7 @@ msgid "Payments"
msgstr "Pagos"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.paymentID\n"
@@ -4248,6 +4497,7 @@ msgid "PaymentID"
msgstr "IDPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.paymentID\n"
@@ -4257,6 +4507,7 @@ msgid "PaymentID"
msgstr "IDPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.customerID\n"
@@ -4266,6 +4517,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.customerID\n"
@@ -4275,6 +4527,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.workorderID\n"
@@ -4284,6 +4537,7 @@ msgid "WorkorderID"
msgstr "IDPedidoDeTrabajo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.workorderID\n"
@@ -4293,6 +4547,7 @@ msgid "WorkordrID"
msgstr "IDPedTrab"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.orderID\n"
@@ -4302,6 +4557,7 @@ msgid "OrderID"
msgstr "IDPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.orderID\n"
@@ -4311,6 +4567,7 @@ msgid "OrderID"
msgstr "IDPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.reservationID\n"
@@ -4320,6 +4577,7 @@ msgid "ReservationID"
msgstr "IDReserva"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.reservationID\n"
@@ -4329,6 +4587,7 @@ msgid "ReservID"
msgstr "IDReserva"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.memberID\n"
@@ -4338,6 +4597,7 @@ msgid "MemberID"
msgstr "IDSocio"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.memberID\n"
@@ -4347,6 +4607,7 @@ msgid "MemberID"
msgstr "IDSocio"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.registrationID\n"
@@ -4356,6 +4617,7 @@ msgid "RegistrationID"
msgstr "IDRegistro"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.registrationID\n"
@@ -4365,6 +4627,7 @@ msgid "RegistraID"
msgstr "IDRegistro"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.projectID\n"
@@ -4374,6 +4637,7 @@ msgid "ProjectID"
msgstr "IDProyecto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.projectID\n"
@@ -4383,6 +4647,7 @@ msgid "ProjectID"
msgstr "IDProyecto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.paymentamount\n"
@@ -4392,6 +4657,7 @@ msgid "PaymentAmount"
msgstr "ImportePago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.paymentamount\n"
@@ -4401,6 +4667,7 @@ msgid "PaymntAmnt"
msgstr "ImportPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.paymentdate\n"
@@ -4410,6 +4677,7 @@ msgid "PaymentDate"
msgstr "FechaPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.paymentdate\n"
@@ -4419,6 +4687,7 @@ msgid "PaymntDate"
msgstr "FechaPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.paymentmethod\n"
@@ -4428,6 +4697,7 @@ msgid "PaymentMethod"
msgstr "FormaPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.paymentmethod\n"
@@ -4437,6 +4707,7 @@ msgid "PaymntMeth"
msgstr "FormaPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.checknumber\n"
@@ -4446,6 +4717,7 @@ msgid "CheckNumber"
msgstr "NúmComprobación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.checknumber\n"
@@ -4455,6 +4727,7 @@ msgid "CheckNo"
msgstr "NúmComprob"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.creditcardtype\n"
@@ -4464,6 +4737,7 @@ msgid "CreditCardType"
msgstr "TipoTarjCrédito"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.creditcardtype\n"
@@ -4473,6 +4747,7 @@ msgid "CCardType"
msgstr "TTarjCrédt"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.creditcardnumber\n"
@@ -4482,6 +4757,7 @@ msgid "CreditCardNumber"
msgstr "NúmTarjCrédito"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.creditcardnumber\n"
@@ -4491,6 +4767,7 @@ msgid "CCardNo"
msgstr "NTarjCrédt"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.cardholder\n"
@@ -4500,15 +4777,17 @@ msgid "Cardholder"
msgstr "NombreTarjCrédito"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.cardholder\n"
"ShortName\n"
"value.text"
msgid "Cardholder"
-msgstr "NombreTarjCrédito"
+msgstr "NmbTrjCréd"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.creditcardExpdate\n"
@@ -4518,6 +4797,7 @@ msgid "CreditCardExpDate"
msgstr "FechaExpTarjCrédito"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.creditcardExpdate\n"
@@ -4527,6 +4807,7 @@ msgid "CCExpDate"
msgstr "FechaExpTarjCrédito"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.creditcardauthorizationnumber\n"
@@ -4536,6 +4817,7 @@ msgid "CreditCardAuthorizationNumber"
msgstr "NúmAutorizTarjCrédito"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.creditcardauthorizationnumber\n"
@@ -4545,6 +4827,7 @@ msgid "CCAuthorNo"
msgstr "NAutTrjCré"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.paymentterms\n"
@@ -4554,15 +4837,17 @@ msgid "PaymentTerms"
msgstr "TérminosPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.paymentterms\n"
"ShortName\n"
"value.text"
msgid "PaymntTerm"
-msgstr "Termino de Pago"
+msgstr "TermPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.paymentmethodID\n"
@@ -4572,6 +4857,7 @@ msgid "PaymentMethodID"
msgstr "IDFormaPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.paymentmethodID\n"
@@ -4581,6 +4867,7 @@ msgid "PaymMethID"
msgstr "IDFrmaPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.notes\n"
@@ -4590,6 +4877,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.notes\n"
@@ -4599,6 +4887,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices\n"
@@ -4608,6 +4897,7 @@ msgid "Invoices"
msgstr "Facturas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.invoiceID\n"
@@ -4617,6 +4907,7 @@ msgid "InvoiceID"
msgstr "IDFactura"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.invoiceID\n"
@@ -4626,6 +4917,7 @@ msgid "InvoiceID"
msgstr "IDFactura"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.customerID\n"
@@ -4635,6 +4927,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.customerID\n"
@@ -4644,6 +4937,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.employeeID\n"
@@ -4653,6 +4947,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.employeeID\n"
@@ -4662,6 +4957,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.deliveryID\n"
@@ -4671,6 +4967,7 @@ msgid "DeliveryID"
msgstr "IDEntrega"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.deliveryID\n"
@@ -4698,6 +4995,7 @@ msgid "Status"
msgstr "Estau"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.invoicedate\n"
@@ -4707,6 +5005,7 @@ msgid "InvoiceDate"
msgstr "FechaFactura"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.invoicedate\n"
@@ -4716,6 +5015,7 @@ msgid "InvoiceDat"
msgstr "FechaFra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.salesperson\n"
@@ -4725,6 +5025,7 @@ msgid "Salesperson"
msgstr "Vendedor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.salesperson\n"
@@ -4734,6 +5035,7 @@ msgid "Salespersn"
msgstr "Vendedor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.shipdate\n"
@@ -4743,6 +5045,7 @@ msgid "ShipDate"
msgstr "FechaEnvío"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.shipdate\n"
@@ -4752,6 +5055,7 @@ msgid "ShipDate"
msgstr "FechaEnvío"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.shippedto\n"
@@ -4761,6 +5065,7 @@ msgid "ShippedTo"
msgstr "EnviadoA"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.shippedto\n"
@@ -4770,6 +5075,7 @@ msgid "ShippedTo"
msgstr "EnviadoA"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.shippedvia\n"
@@ -4779,6 +5085,7 @@ msgid "ShippedVia"
msgstr "EnviadoVía"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.shippedvia\n"
@@ -4788,6 +5095,7 @@ msgid "ShippedVia"
msgstr "EnviadoVía"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.shippingcost\n"
@@ -4797,6 +5105,7 @@ msgid "ShippingCost"
msgstr "CosteEnvío"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.shippingcost\n"
@@ -4806,6 +5115,7 @@ msgid "ShipCost"
msgstr "CosteEnvío"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.notes\n"
@@ -4815,6 +5125,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.notes\n"
@@ -4824,6 +5135,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails\n"
@@ -4833,6 +5145,7 @@ msgid "InvoiceDetails"
msgstr "DetallsFra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.invoicedetailID\n"
@@ -4842,6 +5155,7 @@ msgid "InvoiceDetailID"
msgstr "IDDetalleFactura"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.invoicedetailID\n"
@@ -4851,6 +5165,7 @@ msgid "InvoiDetID"
msgstr "IDDetsFra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.invoiceID\n"
@@ -4860,6 +5175,7 @@ msgid "InvoiceID"
msgstr "IDFactura"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.invoiceID\n"
@@ -4869,6 +5185,7 @@ msgid "InvoiceID"
msgstr "IDFactura"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.orderID\n"
@@ -4878,6 +5195,7 @@ msgid "OrderID"
msgstr "IDPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.orderID\n"
@@ -4887,6 +5205,7 @@ msgid "OrderID"
msgstr "IDPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.productID\n"
@@ -4896,6 +5215,7 @@ msgid "ProductID"
msgstr "IDProducto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.productID\n"
@@ -4905,6 +5225,7 @@ msgid "ProductID"
msgstr "IDProducto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.quantity\n"
@@ -4914,6 +5235,7 @@ msgid "Quantity"
msgstr "Cantidat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.quantity\n"
@@ -4923,24 +5245,27 @@ msgid "Quantity"
msgstr "Cantidat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.unitprice\n"
"Name\n"
"value.text"
msgid "UnitPrice"
-msgstr "Pre por Unidat"
+msgstr "PrecioUnid"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.unitprice\n"
"ShortName\n"
"value.text"
msgid "UnitPrice"
-msgstr "Pre por Unidat"
+msgstr "PrecioUnid"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.discount\n"
@@ -4950,6 +5275,7 @@ msgid "Discount"
msgstr "Esconto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.discount\n"
@@ -4959,6 +5285,7 @@ msgid "Discount"
msgstr "Esconto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.paymentterms\n"
@@ -4968,15 +5295,17 @@ msgid "PaymentTerms"
msgstr "TérminosPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoicedetails.Fields.paymentterms\n"
"ShortName\n"
"value.text"
msgid "PaymntTerm"
-msgstr "Termino de Pago"
+msgstr "TermPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects\n"
@@ -4986,6 +5315,7 @@ msgid "Projects"
msgstr "Prochectos"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.projectID\n"
@@ -4995,6 +5325,7 @@ msgid "ProjectID"
msgstr "IDProyecto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.projectID\n"
@@ -5004,6 +5335,7 @@ msgid "ProjectID"
msgstr "IDProyecto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.projectname\n"
@@ -5013,6 +5345,7 @@ msgid "ProjectName"
msgstr "NombreProy"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.projectname\n"
@@ -5022,6 +5355,7 @@ msgid "ProjctName"
msgstr "NombreProy"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.projectdescription\n"
@@ -5031,6 +5365,7 @@ msgid "ProjectDescription"
msgstr "DescripciónProy"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.projectdescription\n"
@@ -5040,6 +5375,7 @@ msgid "ProjctDscr"
msgstr "DescrProy"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.clientID\n"
@@ -5049,15 +5385,17 @@ msgid "ClientID"
msgstr "IDDeCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.clientID\n"
"ShortName\n"
"value.text"
msgid "ClientID"
-msgstr "IDDeCliente"
+msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.purchaseordernumber\n"
@@ -5067,6 +5405,7 @@ msgid "PurchaseOrderNumber"
msgstr "NúmPedidoCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.purchaseordernumber\n"
@@ -5076,6 +5415,7 @@ msgid "PurchOrdNo"
msgstr "NúmPedComp"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.totalbillingestimate\n"
@@ -5085,6 +5425,7 @@ msgid "TotalBillingEstimate"
msgstr "CálculoFactTotal"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.totalbillingestimate\n"
@@ -5094,6 +5435,7 @@ msgid "TotBillEst"
msgstr "CálcTotFra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.employeeID\n"
@@ -5103,6 +5445,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.employeeID\n"
@@ -5112,6 +5455,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.begindate\n"
@@ -5121,6 +5465,7 @@ msgid "BeginDate"
msgstr "FechaInicio"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.begindate\n"
@@ -5130,6 +5475,7 @@ msgid "BeginDate"
msgstr "FechaInicio"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.enddate\n"
@@ -5139,6 +5485,7 @@ msgid "EndDate"
msgstr "FechaFin"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.enddate\n"
@@ -5148,6 +5495,7 @@ msgid "EndDate"
msgstr "FechaFin"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events\n"
@@ -5157,6 +5505,7 @@ msgid "Events"
msgstr "Eventos"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.eventID\n"
@@ -5166,15 +5515,17 @@ msgid "EventID"
msgstr "IDSuceso"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.eventID\n"
"ShortName\n"
"value.text"
msgid "EventID"
-msgstr "IDSuceso"
+msgstr "IDActivdad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.eventname\n"
@@ -5184,15 +5535,17 @@ msgid "EventName"
msgstr "NombreActividad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.eventname\n"
"ShortName\n"
"value.text"
msgid "EventName"
-msgstr "NombreActividad"
+msgstr "NombActivd"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.eventdescription\n"
@@ -5202,6 +5555,7 @@ msgid "EventDescription"
msgstr "DescripciónActividad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.eventdescription\n"
@@ -5211,6 +5565,7 @@ msgid "EventDescr"
msgstr "DescActivd"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.eventtypeID\n"
@@ -5220,6 +5575,7 @@ msgid "EventTypeID"
msgstr "IDTipoActividad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.eventtypeID\n"
@@ -5229,6 +5585,7 @@ msgid "EventTypID"
msgstr "IDTipActiv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.employeeID\n"
@@ -5238,6 +5595,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.employeeID\n"
@@ -5247,6 +5605,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.status\n"
@@ -5256,6 +5615,7 @@ msgid "Status"
msgstr "Estau"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.status\n"
@@ -5265,6 +5625,7 @@ msgid "Status"
msgstr "Estau"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.location\n"
@@ -5274,6 +5635,7 @@ msgid "Location"
msgstr "Ubicación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.location\n"
@@ -5283,6 +5645,7 @@ msgid "Location"
msgstr "Ubicación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.begindate\n"
@@ -5292,6 +5655,7 @@ msgid "BeginDate"
msgstr "FechaInicio"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.begindate\n"
@@ -5301,6 +5665,7 @@ msgid "BeginDate"
msgstr "FechaInicio"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.begintime\n"
@@ -5310,6 +5675,7 @@ msgid "BeginTime"
msgstr "HoraInicio"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.begintime\n"
@@ -5319,6 +5685,7 @@ msgid "BeginTime"
msgstr "HoraInicio"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.enddate\n"
@@ -5328,6 +5695,7 @@ msgid "EndDate"
msgstr "FechaFin"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.enddate\n"
@@ -5337,6 +5705,7 @@ msgid "EndDate"
msgstr "FechaFin"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.endtime\n"
@@ -5346,6 +5715,7 @@ msgid "EndTime"
msgstr "HoraFin"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.endtime\n"
@@ -5355,6 +5725,7 @@ msgid "EndTime"
msgstr "HoraFin"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.requiredstaffing\n"
@@ -5364,6 +5735,7 @@ msgid "RequiredStaffing"
msgstr "PersonalRequerido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.requiredstaffing\n"
@@ -5373,6 +5745,7 @@ msgid "ReqStaffng"
msgstr "PersnlRequ"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.confirmation\n"
@@ -5382,15 +5755,17 @@ msgid "Confirmation"
msgstr "Confirmación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.confirmation\n"
"ShortName\n"
"value.text"
msgid "Confirmation"
-msgstr "Confirmación"
+msgstr "Confirmac"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.availablespaces\n"
@@ -5400,6 +5775,7 @@ msgid "AvailableSpaces"
msgstr "EspaciosDisponibles"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.availablespaces\n"
@@ -5409,6 +5785,7 @@ msgid "AvailSpace"
msgstr "EspacDispn"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.costperperson\n"
@@ -5418,6 +5795,7 @@ msgid "CostPerPerson"
msgstr "CostePorPersona"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.costperperson\n"
@@ -5427,6 +5805,7 @@ msgid "CostPPersn"
msgstr "CostPrPers"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.notes\n"
@@ -5436,6 +5815,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.notes\n"
@@ -5445,6 +5825,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations\n"
@@ -5454,6 +5835,7 @@ msgid "Reservations"
msgstr "Reservas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.reservationID\n"
@@ -5463,6 +5845,7 @@ msgid "ReservationID"
msgstr "IDReserva"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.reservationID\n"
@@ -5472,6 +5855,7 @@ msgid "ReservID"
msgstr "IDReserva"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.customerID\n"
@@ -5481,6 +5865,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.customerID\n"
@@ -5490,24 +5875,27 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.eventID\n"
"Name\n"
"value.text"
msgid "EventID"
-msgstr "IDSuceso"
+msgstr "IDActividad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.eventID\n"
"ShortName\n"
"value.text"
msgid "EventID"
-msgstr "IDSuceso"
+msgstr "IDActivdad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.employeeID\n"
@@ -5517,6 +5905,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.employeeID\n"
@@ -5526,6 +5915,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.quantityreserved\n"
@@ -5535,6 +5925,7 @@ msgid "QuantityReserved"
msgstr "CantidadReservada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.quantityreserved\n"
@@ -5544,6 +5935,7 @@ msgid "QuntityRes"
msgstr "CantReserv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.reservationdate\n"
@@ -5553,6 +5945,7 @@ msgid "ReservationDate"
msgstr "FechaReserva"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.reservationdate\n"
@@ -5562,6 +5955,7 @@ msgid "ReservDate"
msgstr "FchaReserv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.reservationtime\n"
@@ -5571,6 +5965,7 @@ msgid "ReservationTime"
msgstr "HoraReserva"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.reservationtime\n"
@@ -5580,6 +5975,7 @@ msgid "ReservTime"
msgstr "HoraReserv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.depositdue\n"
@@ -5589,15 +5985,17 @@ msgid "DepositDue"
msgstr "DepósitoDebido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.depositdue\n"
"ShortName\n"
"value.text"
msgid "DepositDue"
-msgstr "DepósitoDebido"
+msgstr "DepósDebid"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.totaldue\n"
@@ -5607,15 +6005,17 @@ msgid "TotalDue"
msgstr "TotalDebido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.totaldue\n"
"ShortName\n"
"value.text"
msgid "TotalDue"
-msgstr "TotalDebido"
+msgstr "TotalDebid"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.amountpaid\n"
@@ -5625,15 +6025,17 @@ msgid "AmountPaid"
msgstr "ImportePagado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.amountpaid\n"
"ShortName\n"
"value.text"
msgid "AmountPaid"
-msgstr "ImportePagado"
+msgstr "ImportPagd"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.confirmation\n"
@@ -5643,15 +6045,17 @@ msgid "Confirmation"
msgstr "Confirmación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.confirmation\n"
"ShortName\n"
"value.text"
msgid "Confirmation"
-msgstr "Confirmación"
+msgstr "Confirmac"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.notes\n"
@@ -5661,6 +6065,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.notes\n"
@@ -5670,6 +6075,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled\n"
@@ -5679,6 +6085,7 @@ msgid "TimeBilled"
msgstr "FacturadoTiempo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.timebilledID\n"
@@ -5688,6 +6095,7 @@ msgid "TimeBilledID"
msgstr "IDFacturadoTiempo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.timebilledID\n"
@@ -5697,6 +6105,7 @@ msgid "TimeBillID"
msgstr "IDFacttmpo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.customerID\n"
@@ -5706,6 +6115,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.customerID\n"
@@ -5715,6 +6125,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.projectID\n"
@@ -5724,6 +6135,7 @@ msgid "ProjectID"
msgstr "IDProyecto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.projectID\n"
@@ -5733,6 +6145,7 @@ msgid "ProjectID"
msgstr "IDProyecto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.employeeID\n"
@@ -5742,6 +6155,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.employeeID\n"
@@ -5751,6 +6165,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.billingdate\n"
@@ -5760,15 +6175,17 @@ msgid "BillingDate"
msgstr "FechaFacturación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.billingdate\n"
"ShortName\n"
"value.text"
msgid "BillingDate"
-msgstr "FechaFacturación"
+msgstr "FchaFactur"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.rateperhour\n"
@@ -5778,6 +6195,7 @@ msgid "RatePerHour"
msgstr "TarifaPorHora"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.rateperhour\n"
@@ -5787,6 +6205,7 @@ msgid "RatePrHour"
msgstr "TarifaHora"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.billablehours\n"
@@ -5796,6 +6215,7 @@ msgid "BillableHours"
msgstr "HorasFacturables"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.billablehours\n"
@@ -5805,6 +6225,7 @@ msgid "BillablHrs"
msgstr "HrsFactur"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.notes\n"
@@ -5814,6 +6235,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.notes\n"
@@ -5823,6 +6245,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses\n"
@@ -5832,6 +6255,7 @@ msgid "Expenses"
msgstr "Gastos"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.expenseID\n"
@@ -5841,6 +6265,7 @@ msgid "ExpenseID"
msgstr "IDGasto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.expenseID\n"
@@ -5850,6 +6275,7 @@ msgid "ExpenseID"
msgstr "IDGasto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.expensetype\n"
@@ -5859,6 +6285,7 @@ msgid "ExpenseType"
msgstr "TipoGasto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.expensetype\n"
@@ -5868,6 +6295,7 @@ msgid "ExpensType"
msgstr "TipoGasto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.purpose\n"
@@ -5877,6 +6305,7 @@ msgid "Purpose"
msgstr "Finalidat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.purpose\n"
@@ -5886,6 +6315,7 @@ msgid "Purpose"
msgstr "Finalidat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.employeeID\n"
@@ -5895,6 +6325,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.employeeID\n"
@@ -5904,6 +6335,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.datepurchased\n"
@@ -5913,6 +6345,7 @@ msgid "DatePurchased"
msgstr "FechaDeCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.datepurchased\n"
@@ -5922,6 +6355,7 @@ msgid "DatePurchd"
msgstr "FchaCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.datesubmitted\n"
@@ -5931,6 +6365,7 @@ msgid "DateSubmitted"
msgstr "FechaPresentada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.datesubmitted\n"
@@ -5940,6 +6375,7 @@ msgid "DateSubmit"
msgstr "FchaPrsntd"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.amountspent\n"
@@ -5949,6 +6385,7 @@ msgid "AmountSpent"
msgstr "ImporteGastado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.amountspent\n"
@@ -5958,6 +6395,7 @@ msgid "AmountSpnt"
msgstr "ImprtGastd"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.advanceamount\n"
@@ -5967,6 +6405,7 @@ msgid "AdvanceAmount"
msgstr "ImporteAdelantado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.advanceamount\n"
@@ -5976,6 +6415,7 @@ msgid "AdvnceAmnt"
msgstr "ImprtAdlnt"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.paymentmethod\n"
@@ -5985,6 +6425,7 @@ msgid "PaymentMethod"
msgstr "FormaPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.paymentmethod\n"
@@ -5994,6 +6435,7 @@ msgid "PaymntMeth"
msgstr "FormaPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.notes\n"
@@ -6003,6 +6445,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.notes\n"
@@ -6012,6 +6455,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries\n"
@@ -6021,6 +6465,7 @@ msgid "Deliveries"
msgstr "Entregas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.deliveryID\n"
@@ -6030,6 +6475,7 @@ msgid "DeliveryID"
msgstr "IDEntrega"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.deliveryID\n"
@@ -6039,6 +6485,7 @@ msgid "DeliveryID"
msgstr "IDEntrega"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.customerID\n"
@@ -6048,6 +6495,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.customerID\n"
@@ -6057,6 +6505,7 @@ msgid "CustomerID"
msgstr "IDCliente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.orderID\n"
@@ -6066,6 +6515,7 @@ msgid "OrderID"
msgstr "IDPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.orderID\n"
@@ -6075,6 +6525,7 @@ msgid "OrderID"
msgstr "IDPedido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.employeeID\n"
@@ -6084,6 +6535,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.employeeID\n"
@@ -6093,6 +6545,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.shippedfrom\n"
@@ -6102,6 +6555,7 @@ msgid "ShippedFrom"
msgstr "EnviadoDesde"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.shippedfrom\n"
@@ -6111,6 +6565,7 @@ msgid "ShippedFrm"
msgstr "EnvdoDesde"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.shippedvia\n"
@@ -6120,6 +6575,7 @@ msgid "ShippedVia"
msgstr "EnviadoVía"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.shippedvia\n"
@@ -6129,6 +6585,7 @@ msgid "ShippedVia"
msgstr "EnviadoVía"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.trackingcode\n"
@@ -6138,6 +6595,7 @@ msgid "TrackingCode"
msgstr "CódigoRuta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.trackingcode\n"
@@ -6147,6 +6605,7 @@ msgid "TrckngCode"
msgstr "CódigoRuta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.shipdate\n"
@@ -6156,6 +6615,7 @@ msgid "ShipDate"
msgstr "FechaEnvío"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.shipdate\n"
@@ -6165,6 +6625,7 @@ msgid "ShipDate"
msgstr "FechaEnvío"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.shipperphonenumber\n"
@@ -6174,15 +6635,17 @@ msgid "ShipperPhoneNumber"
msgstr "NúmTeléfRemitente"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.shipperphonenumber\n"
"ShortName\n"
"value.text"
msgid "ShipPhonNo"
-msgstr "NúmTelDest"
+msgstr "NúmTelRemt"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.destinationaddress\n"
@@ -6192,6 +6655,7 @@ msgid "DestinationAddress"
msgstr "DirecciónDestino"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.destinationaddress\n"
@@ -6201,6 +6665,7 @@ msgid "DestAddres"
msgstr "DirDestino"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.destinationcity\n"
@@ -6210,6 +6675,7 @@ msgid "DestinationCity"
msgstr "CiudadDestino"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.destinationcity\n"
@@ -6219,6 +6685,7 @@ msgid "DestinCity"
msgstr "CiudDestin"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.destinationstateprovince\n"
@@ -6228,6 +6695,7 @@ msgid "DestinationStateProvince"
msgstr "EdoOProvDestino"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.destinationstateprovince\n"
@@ -6237,6 +6705,7 @@ msgid "DestStaPro"
msgstr "EdoProvDst"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.destinationpostalcode\n"
@@ -6246,6 +6715,7 @@ msgid "DestinationPostalCode"
msgstr "CódPostalDestino"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.destinationpostalcode\n"
@@ -6255,6 +6725,7 @@ msgid "DestPstCde"
msgstr "CPDestino"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.destinationcountryregion\n"
@@ -6264,6 +6735,7 @@ msgid "DestinationCountryRegion"
msgstr "PaísORegiónDestino"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.destinationcountryregion\n"
@@ -6273,6 +6745,7 @@ msgid "DestCouReg"
msgstr "PaísRegDes"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.arrivaldate\n"
@@ -6282,6 +6755,7 @@ msgid "ArrivalDate"
msgstr "FechaLlegada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.arrivaldate\n"
@@ -6291,6 +6765,7 @@ msgid "ArrivlDate"
msgstr "Fchallegad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.arrivaltime\n"
@@ -6300,6 +6775,7 @@ msgid "ArrivalTime"
msgstr "HoraLlegada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.arrivaltime\n"
@@ -6309,6 +6785,7 @@ msgid "ArrivlTime"
msgstr "HoraLlegad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.currentlocation\n"
@@ -6318,6 +6795,7 @@ msgid "CurrentLocation"
msgstr "LugarActual"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.currentlocation\n"
@@ -6327,6 +6805,7 @@ msgid "CurrLocatn"
msgstr "LugrActual"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.packagedimensions\n"
@@ -6336,6 +6815,7 @@ msgid "PackageDimensions"
msgstr "DimensionesEnvase"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.packagedimensions\n"
@@ -6345,6 +6825,7 @@ msgid "PackDimens"
msgstr "DimnsEnvas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.packageweight\n"
@@ -6354,6 +6835,7 @@ msgid "PackageWeight"
msgstr "PesoEnvase"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.packageweight\n"
@@ -6363,6 +6845,7 @@ msgid "PackWeight"
msgstr "PesoEnvase"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.pickuplocation\n"
@@ -6372,6 +6855,7 @@ msgid "PickUpLocation"
msgstr "LugarDeRecogida"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.pickuplocation\n"
@@ -6381,6 +6865,7 @@ msgid "PickUpLoca"
msgstr "LugarRecog"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.pickupdate\n"
@@ -6390,15 +6875,17 @@ msgid "PickUpDate"
msgstr "FechaRecogida"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.pickupdate\n"
"ShortName\n"
"value.text"
msgid "PickUpDate"
-msgstr "FechaRecogida"
+msgstr "FechaRecog"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.pickuptime\n"
@@ -6408,15 +6895,17 @@ msgid "PickUpTime"
msgstr "HoraRecogida"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.pickuptime\n"
"ShortName\n"
"value.text"
msgid "PickUpTime"
-msgstr "HoraRecogida"
+msgstr "HoraRecog"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.receivedby\n"
@@ -6426,24 +6915,27 @@ msgid "ReceivedBy"
msgstr "RecibidoPor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.receivedby\n"
"ShortName\n"
"value.text"
msgid "ReceivedBy"
-msgstr "RecibidoPor"
+msgstr "RecibidPor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.freightcharge\n"
"Name\n"
"value.text"
msgid "FreightCharge"
-msgstr "Transporte de mercaderías"
+msgstr "CargoPorCoste"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.freightcharge\n"
@@ -6453,6 +6945,7 @@ msgid "FrghtChrge"
msgstr "CrgoPrCost"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.notes\n"
@@ -6462,6 +6955,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.deliveries.Fields.notes\n"
@@ -6471,6 +6965,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets\n"
@@ -6480,6 +6975,7 @@ msgid "Assets"
msgstr "Activos"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.assetID\n"
@@ -6489,6 +6985,7 @@ msgid "AssetID"
msgstr "IDActivo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.assetID\n"
@@ -6498,6 +6995,7 @@ msgid "AssetID"
msgstr "IDActivo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.description\n"
@@ -6507,6 +7005,7 @@ msgid "Description"
msgstr "Descripción"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.description\n"
@@ -6516,6 +7015,7 @@ msgid "Descrption"
msgstr "Descripc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.employeeID\n"
@@ -6525,6 +7025,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.employeeID\n"
@@ -6534,6 +7035,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.assetcategoryID\n"
@@ -6543,6 +7045,7 @@ msgid "AssetCategoryID"
msgstr "IDCategoríaActivo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.assetcategoryID\n"
@@ -6552,6 +7055,7 @@ msgid "AssetCatID"
msgstr "IDCatActiv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.statusID\n"
@@ -6561,6 +7065,7 @@ msgid "StatusID"
msgstr "IdSituación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.statusID\n"
@@ -6570,24 +7075,27 @@ msgid "StatusID"
msgstr "IdSituación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.departmentID\n"
"Name\n"
"value.text"
msgid "DepartmentID"
-msgstr "IdDepartamento"
+msgstr "IDDepartamento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.departmentID\n"
"ShortName\n"
"value.text"
msgid "DeprtmntID"
-msgstr "IdDepartam"
+msgstr "IDDepto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.vendorID\n"
@@ -6597,6 +7105,7 @@ msgid "VendorID"
msgstr "IDVendedor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.vendorID\n"
@@ -6606,6 +7115,7 @@ msgid "VendorID"
msgstr "IDVendedor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.make\n"
@@ -6615,6 +7125,7 @@ msgid "Make"
msgstr "Marca"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.make\n"
@@ -6624,6 +7135,7 @@ msgid "Make"
msgstr "Marca"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.model\n"
@@ -6633,6 +7145,7 @@ msgid "Model"
msgstr "Modelo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.model\n"
@@ -6642,6 +7155,7 @@ msgid "Model"
msgstr "Modelo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.modelnumber\n"
@@ -6651,6 +7165,7 @@ msgid "ModelNumber"
msgstr "NúmModelo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.modelnumber\n"
@@ -6660,6 +7175,7 @@ msgid "ModelNo"
msgstr "NúmModelo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.serialnumber\n"
@@ -6669,15 +7185,17 @@ msgid "SerialNumber"
msgstr "NúmSerie"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.serialnumber\n"
"ShortName\n"
"value.text"
msgid "SerialNo"
-msgstr "Serial Nº"
+msgstr "NúmSerie"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.barcodenumber\n"
@@ -6687,6 +7205,7 @@ msgid "BarcodeNumber"
msgstr "CódigoDeBarras"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.barcodenumber\n"
@@ -6696,6 +7215,7 @@ msgid "BarcodeNo"
msgstr "CódBarras"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.dateacquired\n"
@@ -6705,6 +7225,7 @@ msgid "DateAcquired"
msgstr "FechaCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.dateacquired\n"
@@ -6714,24 +7235,27 @@ msgid "DateAcquir"
msgstr "FchaCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.datesold\n"
"Name\n"
"value.text"
msgid "DateSold"
-msgstr "FechaDeVenta"
+msgstr "FechaVenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.datesold\n"
"ShortName\n"
"value.text"
msgid "DateSold"
-msgstr "FechaDeVenta"
+msgstr "FechaVenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.purchaseprice\n"
@@ -6741,6 +7265,7 @@ msgid "PurchasePrice"
msgstr "PrecioCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.purchaseprice\n"
@@ -6750,6 +7275,7 @@ msgid "PurchPrice"
msgstr "PrecCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.depreciationmethod\n"
@@ -6759,6 +7285,7 @@ msgid "DepreciationMethod"
msgstr "MétodoDepreciación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.depreciationmethod\n"
@@ -6768,6 +7295,7 @@ msgid "DeprecMeth"
msgstr "MétdDeprec"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.depreciablelife\n"
@@ -6777,6 +7305,7 @@ msgid "DepreciableLife"
msgstr "VidaAmortizable"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.depreciablelife\n"
@@ -6786,6 +7315,7 @@ msgid "DeprecLife"
msgstr "VidaAmort"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.salvagevalue\n"
@@ -6795,6 +7325,7 @@ msgid "SalvageValue"
msgstr "ValorRescate"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.salvagevalue\n"
@@ -6804,6 +7335,7 @@ msgid "SalvageVal"
msgstr "ValRescate"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.currentvalue\n"
@@ -6813,6 +7345,7 @@ msgid "CurrentValue"
msgstr "ValorActual"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.currentvalue\n"
@@ -6822,6 +7355,7 @@ msgid "CurrentVal"
msgstr "ValrActual"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.comments\n"
@@ -6831,15 +7365,17 @@ msgid "Comments"
msgstr "Comentarios"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.comments\n"
"ShortName\n"
"value.text"
msgid "Comments"
-msgstr "Comentarios"
+msgstr "Comntarios"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.nextscheduledmaintenance\n"
@@ -6849,6 +7385,7 @@ msgid "NextScheduledMaintenance"
msgstr "SiguienteMantenimientoProgramado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.assets.Fields.nextscheduledmaintenance\n"
@@ -6858,6 +7395,7 @@ msgid "NtSchMaint"
msgstr "SigMantPrg"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions\n"
@@ -6867,6 +7405,7 @@ msgid "Transactions"
msgstr "Transaccions"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.transactionID\n"
@@ -6876,6 +7415,7 @@ msgid "TransactionID"
msgstr "IDTransacción"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.transactionID\n"
@@ -6885,6 +7425,7 @@ msgid "TrnsactnID"
msgstr "IDTransacc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.paymentID\n"
@@ -6894,6 +7435,7 @@ msgid "PaymentID"
msgstr "IDPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.paymentID\n"
@@ -6903,6 +7445,7 @@ msgid "PaymentID"
msgstr "IDPago"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.transactionnumber\n"
@@ -6912,6 +7455,7 @@ msgid "TransactionNumber"
msgstr "NúmTransacción"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.transactionnumber\n"
@@ -6921,6 +7465,7 @@ msgid "TrnsactnNo"
msgstr "NúmTransac"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.date\n"
@@ -6930,6 +7475,7 @@ msgid "Date"
msgstr "Calendata"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.date\n"
@@ -6939,6 +7485,7 @@ msgid "Date"
msgstr "Calendata"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.description\n"
@@ -6948,6 +7495,7 @@ msgid "Description"
msgstr "Descripción"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.description\n"
@@ -6957,6 +7505,7 @@ msgid "Descrption"
msgstr "Descripc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.amount\n"
@@ -6966,6 +7515,7 @@ msgid "Amount"
msgstr "Cantidat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.amount\n"
@@ -6975,6 +7525,7 @@ msgid "Amount"
msgstr "Cantidat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.accountID\n"
@@ -6984,6 +7535,7 @@ msgid "AccountID"
msgstr "IDCuenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.accountID\n"
@@ -6993,6 +7545,7 @@ msgid "AccountID"
msgstr "IDCuenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.referencenumber\n"
@@ -7002,6 +7555,7 @@ msgid "ReferenceNumber"
msgstr "NúmReferencia"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.referencenumber\n"
@@ -7011,6 +7565,7 @@ msgid "RefrenceNo"
msgstr "NúmRef"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.numberofunits\n"
@@ -7020,6 +7575,7 @@ msgid "NumberofUnits"
msgstr "NúmDeUnidades"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.numberofunits\n"
@@ -7029,6 +7585,7 @@ msgid "NumberUnit"
msgstr "NúmUnidads"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.withdrawalamount\n"
@@ -7038,6 +7595,7 @@ msgid "WithdrawalAmount"
msgstr "ImporteReembolso"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.withdrawalamount\n"
@@ -7047,6 +7605,7 @@ msgid "WithdrwAmt"
msgstr "ImprtReemb"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.depositamount\n"
@@ -7056,6 +7615,7 @@ msgid "DepositAmount"
msgstr "CantidadDepositada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.depositamount\n"
@@ -7065,6 +7625,7 @@ msgid "DepositAmt"
msgstr "CtdDeposit"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.interestearned\n"
@@ -7074,6 +7635,7 @@ msgid "InterestEarned"
msgstr "InterésGanado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.interestearned\n"
@@ -7083,6 +7645,7 @@ msgid "IntrstEarn"
msgstr "IntersGana"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.buyselldate\n"
@@ -7092,6 +7655,7 @@ msgid "BuySellDate"
msgstr "FechaCompraVenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.buyselldate\n"
@@ -7101,6 +7665,7 @@ msgid "BuySellDat"
msgstr "FchCpraVta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.buysellprice\n"
@@ -7110,6 +7675,7 @@ msgid "BuySellPrice"
msgstr "PrecioCompraVenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.buysellprice\n"
@@ -7119,6 +7685,7 @@ msgid "BuySellPrc"
msgstr "PrcCpraVta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.servicecharge\n"
@@ -7128,6 +7695,7 @@ msgid "ServiceCharge"
msgstr "CargaPorServ"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.servicecharge\n"
@@ -7137,6 +7705,7 @@ msgid "ServiChrge"
msgstr "CargPrServ"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.taxable\n"
@@ -7146,15 +7715,17 @@ msgid "Taxable"
msgstr "SujetoAImpuestos"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.taxable\n"
"ShortName\n"
"value.text"
msgid "Taxable"
-msgstr "SujetoAImpuestos"
+msgstr "SujeImpsts"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.notes\n"
@@ -7164,6 +7735,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.transactions.Fields.notes\n"
@@ -7173,6 +7745,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks\n"
@@ -7182,6 +7755,7 @@ msgid "Tasks"
msgstr "Quefers"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.taskID\n"
@@ -7191,6 +7765,7 @@ msgid "TaskID"
msgstr "IDTarea"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.taskID\n"
@@ -7200,6 +7775,7 @@ msgid "TaskID"
msgstr "IDTarea"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.description\n"
@@ -7209,6 +7785,7 @@ msgid "Description"
msgstr "Descripción"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.description\n"
@@ -7218,6 +7795,7 @@ msgid "Descrption"
msgstr "Descripc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.startdate\n"
@@ -7227,15 +7805,17 @@ msgid "StartDate"
msgstr "FechaInicio"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.startdate\n"
"ShortName\n"
"value.text"
msgid "StartDate"
-msgstr "FechaInicio"
+msgstr "FchaInicio"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.enddate\n"
@@ -7245,6 +7825,7 @@ msgid "EndDate"
msgstr "FechaFin"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.enddate\n"
@@ -7254,6 +7835,7 @@ msgid "EndDate"
msgstr "FechaFin"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.notes\n"
@@ -7263,6 +7845,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.tasks.Fields.notes\n"
@@ -7272,6 +7855,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employeestasks\n"
@@ -7281,6 +7865,7 @@ msgid "EmployeesTasks"
msgstr "TareasEmpleadas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employeestasks.Fields.employeetaskID\n"
@@ -7290,6 +7875,7 @@ msgid "EmployeeTaskID"
msgstr "IDTareaEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employeestasks.Fields.employeetaskID\n"
@@ -7299,6 +7885,7 @@ msgid "EmplTaskID"
msgstr "IDTareEmpl"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employeestasks.Fields.employeeID\n"
@@ -7308,6 +7895,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employeestasks.Fields.employeeID\n"
@@ -7317,6 +7905,7 @@ msgid "EmployeeID"
msgstr "IDEmpleado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employeestasks.Fields.taskID\n"
@@ -7326,6 +7915,7 @@ msgid "TaskID"
msgstr "IDTarea"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employeestasks.Fields.taskID\n"
@@ -7335,6 +7925,7 @@ msgid "TaskID"
msgstr "IDTarea"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private\n"
@@ -7344,6 +7935,7 @@ msgid "Private"
msgstr "Privau"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.categories\n"
@@ -7353,24 +7945,27 @@ msgid "Categories"
msgstr "Categorías"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.categories.Fields.categoryID\n"
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "ID Categoría"
+msgstr "IDCategoría"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.categories.Fields.categoryID\n"
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "ID Categoría"
+msgstr "IDCategor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.categories.Fields.categoryname\n"
@@ -7380,6 +7975,7 @@ msgid "CategoryName"
msgstr "NombreCategoría"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.categories.Fields.categoryname\n"
@@ -7389,6 +7985,7 @@ msgid "CategName"
msgstr "NombrCateg"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses\n"
@@ -7398,6 +7995,7 @@ msgid "Addresses"
msgstr "Adrezas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.addressID\n"
@@ -7407,15 +8005,17 @@ msgid "AddressID"
msgstr "IDDirección"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.addressID\n"
"ShortName\n"
"value.text"
msgid "AddressID"
-msgstr "IDDirección"
+msgstr "IDDirecc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.firstname\n"
@@ -7425,6 +8025,7 @@ msgid "FirstName"
msgstr "Nombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.firstname\n"
@@ -7434,24 +8035,27 @@ msgid "FirstName"
msgstr "Nombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.lastname\n"
"Name\n"
"value.text"
msgid "LastName"
-msgstr "Apellidos"
+msgstr "Apellido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.lastname\n"
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "Apellidos"
+msgstr "Apellido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.title\n"
@@ -7461,6 +8065,7 @@ msgid "Title"
msgstr "Cargo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.title\n"
@@ -7470,6 +8075,7 @@ msgid "Title"
msgstr "Cargo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.address\n"
@@ -7479,6 +8085,7 @@ msgid "Address"
msgstr "Adreza"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.address\n"
@@ -7488,6 +8095,7 @@ msgid "Address"
msgstr "Adreza"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.city\n"
@@ -7497,6 +8105,7 @@ msgid "City"
msgstr "Ciudat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.city\n"
@@ -7506,78 +8115,87 @@ msgid "City"
msgstr "Ciudat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.postalcode\n"
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "Codigo Postal"
+msgstr "CódPostal"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.postalcode\n"
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "Codigo Postal"
+msgstr "CódPostal"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.stateorprovince\n"
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "EstauUProvincia"
+msgstr "EstadoOProv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.stateorprovince\n"
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "EstauProv"
+msgstr "EstadoProv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.countryorregion\n"
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "PaísURechión"
+msgstr "PaísORegión"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.countryorregion\n"
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "PaísRech"
+msgstr "PaísRegión"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.phonenumber\n"
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "NúmeroTeléfono"
+msgstr "NúmTeléfono"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.phonenumber\n"
"ShortName\n"
"value.text"
msgid "PhoneNo"
-msgstr "NroTel"
+msgstr "NúmTeléfon"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.faxnumber\n"
@@ -7587,15 +8205,17 @@ msgid "FaxNumber"
msgstr "NúmeroFax"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.faxnumber\n"
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "NroFax"
+msgstr "NúmeroFax"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.mobilenumber\n"
@@ -7605,33 +8225,37 @@ msgid "MobileNumber"
msgstr "NúmeroMóvil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.mobilenumber\n"
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "NroMóvil"
+msgstr "NúmMóvil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.emailaddress\n"
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr "AdrezaCorreuElectronico"
+msgstr "DirCorreoElectrónico"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.emailaddress\n"
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "AdrezCorreuE"
+msgstr "DirCorEléc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.salutation\n"
@@ -7641,6 +8265,7 @@ msgid "Salutation"
msgstr "Saludo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.salutation\n"
@@ -7650,6 +8275,7 @@ msgid "Salutation"
msgstr "Saludo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.birthdate\n"
@@ -7659,15 +8285,17 @@ msgid "Birthdate"
msgstr "FechaNacimiento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.birthdate\n"
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "FechaNacimiento"
+msgstr "FechaNacim"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.sendcard\n"
@@ -7677,15 +8305,17 @@ msgid "SendCard"
msgstr "EnviarTarjeta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.sendcard\n"
"ShortName\n"
"value.text"
msgid "SendCard"
-msgstr "EnviarTarjeta"
+msgstr "EnvrTarjet"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.maritalstatus\n"
@@ -7695,6 +8325,7 @@ msgid "MaritalStatus"
msgstr "EstadoCivil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.maritalstatus\n"
@@ -7704,24 +8335,27 @@ msgid "MaritlStat"
msgstr "EstadoCiv"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.spousename\n"
"Name\n"
"value.text"
msgid "SpouseName"
-msgstr "NombreCónyuge"
+msgstr "NombCónyuge"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.spousename\n"
"ShortName\n"
"value.text"
msgid "SpouseName"
-msgstr "NombreCónyuge"
+msgstr "NombCónyug"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.nickname\n"
@@ -7731,6 +8365,7 @@ msgid "Nickname"
msgstr "Sobrenombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.nickname\n"
@@ -7740,6 +8375,7 @@ msgid "Nickname"
msgstr "Sobrenombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.hobbies\n"
@@ -7749,6 +8385,7 @@ msgid "Hobbies"
msgstr "Aficions"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.hobbies\n"
@@ -7758,6 +8395,7 @@ msgid "Hobbies"
msgstr "Aficions"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.childrennames\n"
@@ -7767,15 +8405,17 @@ msgid "ChildrenNames"
msgstr "NombresNiños"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.childrennames\n"
"ShortName\n"
"value.text"
msgid "ChildName"
-msgstr "NombNiños"
+msgstr "NombrNiños"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.photo\n"
@@ -7785,6 +8425,7 @@ msgid "Photo"
msgstr "Foto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.photo\n"
@@ -7794,6 +8435,7 @@ msgid "Photo"
msgstr "Foto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.notes\n"
@@ -7803,6 +8445,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.notes\n"
@@ -7812,6 +8455,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.dateupdated\n"
@@ -7821,6 +8465,7 @@ msgid "DateUpdated"
msgstr "FechaActualización"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.dateupdated\n"
@@ -7830,6 +8475,7 @@ msgid "DatUpdated"
msgstr "FchaActual"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory\n"
@@ -7839,6 +8485,7 @@ msgid "HouseholdInventory"
msgstr "InventarioDoméstico"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.inventoryID\n"
@@ -7848,6 +8495,7 @@ msgid "InventoryID"
msgstr "IDInventario"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.inventoryID\n"
@@ -7857,24 +8505,27 @@ msgid "InventryID"
msgstr "IDInventar"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.categoryID\n"
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "ID Categoría"
+msgstr "IDCategoría"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.categoryID\n"
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "ID Categoría"
+msgstr "IDCategor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.roomID\n"
@@ -7884,15 +8535,17 @@ msgid "RoomID"
msgstr "IDHabitación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.roomID\n"
"ShortName\n"
"value.text"
msgid "RoomID"
-msgstr "IDHabitación"
+msgstr "IDHabitac"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.item\n"
@@ -7902,6 +8555,7 @@ msgid "Item"
msgstr "Articlo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.item\n"
@@ -7911,6 +8565,7 @@ msgid "Item"
msgstr "Articlo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.itemtype\n"
@@ -7920,15 +8575,17 @@ msgid "ItemType"
msgstr "TipoArtículo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.itemtype\n"
"ShortName\n"
"value.text"
msgid "ItemType"
-msgstr "TipoArtículo"
+msgstr "TipoArtíc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.description\n"
@@ -7938,6 +8595,7 @@ msgid "Description"
msgstr "Descripción"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.description\n"
@@ -7947,6 +8605,7 @@ msgid "Descrption"
msgstr "Descripc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.manufacturer\n"
@@ -7956,6 +8615,7 @@ msgid "Manufacturer"
msgstr "Fabricant"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.manufacturer\n"
@@ -7965,6 +8625,7 @@ msgid "Manufactur"
msgstr "Fabricant"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.model\n"
@@ -7974,6 +8635,7 @@ msgid "Model"
msgstr "Modelo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.model\n"
@@ -7983,6 +8645,7 @@ msgid "Model"
msgstr "Modelo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.modelnumber\n"
@@ -7992,6 +8655,7 @@ msgid "ModelNumber"
msgstr "NúmModelo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.modelnumber\n"
@@ -8001,6 +8665,7 @@ msgid "ModelNo"
msgstr "NúmModelo"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.serialnumber\n"
@@ -8010,15 +8675,17 @@ msgid "SerialNumber"
msgstr "NúmSerie"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.serialnumber\n"
"ShortName\n"
"value.text"
msgid "SerialNo"
-msgstr "Serial Nº"
+msgstr "NúmSerie"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.datepurchased\n"
@@ -8028,6 +8695,7 @@ msgid "DatePurchased"
msgstr "FechaDeCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.datepurchased\n"
@@ -8037,6 +8705,7 @@ msgid "DatePurch"
msgstr "FchaCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.placepurchased\n"
@@ -8046,6 +8715,7 @@ msgid "PlacePurchased"
msgstr "LugarCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.placepurchased\n"
@@ -8055,6 +8725,7 @@ msgid "PlacePurch"
msgstr "LugrCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.purchaseprice\n"
@@ -8064,6 +8735,7 @@ msgid "PurchasePrice"
msgstr "PrecioCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.purchaseprice\n"
@@ -8073,6 +8745,7 @@ msgid "PurchPrice"
msgstr "PrecCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.appraisedvalue\n"
@@ -8082,6 +8755,7 @@ msgid "AppraisedValue"
msgstr "ValorTasado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.appraisedvalue\n"
@@ -8091,6 +8765,7 @@ msgid "AppraisVal"
msgstr "ValorTasad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.insured\n"
@@ -8100,6 +8775,7 @@ msgid "Insured"
msgstr "Asegurau"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.insured\n"
@@ -8109,6 +8785,7 @@ msgid "Insured"
msgstr "Asegurau"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.notes\n"
@@ -8118,6 +8795,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.householdinventory.Fields.notes\n"
@@ -8127,6 +8805,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes\n"
@@ -8136,6 +8815,7 @@ msgid "Recipes"
msgstr "Recetas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.recipeID\n"
@@ -8145,6 +8825,7 @@ msgid "RecipeID"
msgstr "IDReceta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.recipeID\n"
@@ -8154,6 +8835,7 @@ msgid "RecipeID"
msgstr "IDReceta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.name\n"
@@ -8163,6 +8845,7 @@ msgid "Name"
msgstr "Nombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.name\n"
@@ -8172,6 +8855,7 @@ msgid "Name"
msgstr "Nombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.description\n"
@@ -8181,6 +8865,7 @@ msgid "Description"
msgstr "Descripción"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.description\n"
@@ -8190,6 +8875,7 @@ msgid "Descrption"
msgstr "Descripc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.source\n"
@@ -8199,6 +8885,7 @@ msgid "Source"
msgstr "Orichen"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.source\n"
@@ -8208,6 +8895,7 @@ msgid "Source"
msgstr "Orichen"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.whichmeal\n"
@@ -8217,6 +8905,7 @@ msgid "WhichMeal"
msgstr "QuéComida"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.whichmeal\n"
@@ -8226,6 +8915,7 @@ msgid "WhichMeal"
msgstr "QuéComida"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.vegetarian\n"
@@ -8235,15 +8925,17 @@ msgid "Vegetarian"
msgstr "Vechetariano"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.vegetarian\n"
"ShortName\n"
"value.text"
msgid "Vegetarian"
-msgstr "Vechetariano"
+msgstr "Vegetarian"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.timetoprepare\n"
@@ -8253,6 +8945,7 @@ msgid "TimeToPrepare"
msgstr "TiempoPreparación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.timetoprepare\n"
@@ -8262,6 +8955,7 @@ msgid "TimePrepar"
msgstr "TmpoPrepar"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.numberofservings\n"
@@ -8271,6 +8965,7 @@ msgid "NumberofServings"
msgstr "NúmDeServicios"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.numberofservings\n"
@@ -8280,6 +8975,7 @@ msgid "NoofServng"
msgstr "NúmServics"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.caloriesperserving\n"
@@ -8289,6 +8985,7 @@ msgid "CaloriesPerServing"
msgstr "CaloríasPorServ"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.caloriesperserving\n"
@@ -8298,6 +8995,7 @@ msgid "CalPerServ"
msgstr "CalPorServ"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.nutritionalinformation\n"
@@ -8307,6 +9005,7 @@ msgid "NutritionalInformation"
msgstr "InformaciónAlimenticia"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.nutritionalinformation\n"
@@ -8316,6 +9015,7 @@ msgid "NutriInfo"
msgstr "InfoAlimen"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.ingredients\n"
@@ -8325,6 +9025,7 @@ msgid "Ingredients"
msgstr "Ingredientes"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.ingredients\n"
@@ -8334,6 +9035,7 @@ msgid "Ingredient"
msgstr "Ingredntes"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.instructions\n"
@@ -8343,6 +9045,7 @@ msgid "Instructions"
msgstr "Instruccions"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.instructions\n"
@@ -8352,6 +9055,7 @@ msgid "Instrction"
msgstr "Instruccs"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.utensils\n"
@@ -8361,6 +9065,7 @@ msgid "Utensils"
msgstr "Utensilios"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.utensils\n"
@@ -8370,6 +9075,7 @@ msgid "Utensils"
msgstr "Utensilios"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.notes\n"
@@ -8379,6 +9085,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.recipes.Fields.notes\n"
@@ -8388,6 +9095,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants\n"
@@ -8397,6 +9105,7 @@ msgid "Plants"
msgstr "Plantas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.plantID\n"
@@ -8406,6 +9115,7 @@ msgid "PlantID"
msgstr "IDPlanta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.plantID\n"
@@ -8415,6 +9125,7 @@ msgid "PlantID"
msgstr "IDPlanta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.commonname\n"
@@ -8424,15 +9135,17 @@ msgid "CommonName"
msgstr "NombreComún"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.commonname\n"
"ShortName\n"
"value.text"
msgid "CommonName"
-msgstr "NombreComún"
+msgstr "NmbreComún"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.genus\n"
@@ -8442,6 +9155,7 @@ msgid "Genus"
msgstr "Chenero"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.genus\n"
@@ -8451,6 +9165,7 @@ msgid "Genus"
msgstr "Chenero"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.species\n"
@@ -8460,6 +9175,7 @@ msgid "Species"
msgstr "Especies"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.species\n"
@@ -8469,6 +9185,7 @@ msgid "Species"
msgstr "Especies"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.flowering\n"
@@ -8478,15 +9195,17 @@ msgid "Flowering"
msgstr "Florecimiento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.flowering\n"
"ShortName\n"
"value.text"
msgid "Flowering"
-msgstr "Florecimiento"
+msgstr "Florecmnto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.lightpreference\n"
@@ -8496,6 +9215,7 @@ msgid "LightPreference"
msgstr "PromociónLigera"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.lightpreference\n"
@@ -8505,6 +9225,7 @@ msgid "LightPref"
msgstr "PromocLige"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.temperaturepreference\n"
@@ -8514,6 +9235,7 @@ msgid "TemperaturePreference"
msgstr "OpcionesTemperatura"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.temperaturepreference\n"
@@ -8523,6 +9245,7 @@ msgid "TempPref"
msgstr "OpcsTemper"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.fertilizefrequency\n"
@@ -8532,6 +9255,7 @@ msgid "FertilizeFrequency"
msgstr "FrecuenciaFertilizar"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.fertilizefrequency\n"
@@ -8541,6 +9265,7 @@ msgid "FertilFreq"
msgstr "FrecFertil"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.wateringfrequency\n"
@@ -8550,6 +9275,7 @@ msgid "WateringFrequency"
msgstr "FrecuenciaRiego"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.wateringfrequency\n"
@@ -8559,6 +9285,7 @@ msgid "WaterFreq"
msgstr "FrecRiego"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.datepurchased\n"
@@ -8568,6 +9295,7 @@ msgid "DatePurchased"
msgstr "FechaDeCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.datepurchased\n"
@@ -8577,6 +9305,7 @@ msgid "DatePurch"
msgstr "FchaCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.placepurchased\n"
@@ -8586,6 +9315,7 @@ msgid "PlacePurchased"
msgstr "LugarCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.placepurchased\n"
@@ -8595,6 +9325,7 @@ msgid "PlacePurch"
msgstr "LugrCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.dateplanted\n"
@@ -8604,6 +9335,7 @@ msgid "DatePlanted"
msgstr "FechaPlantación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.dateplanted\n"
@@ -8613,6 +9345,7 @@ msgid "DatPlanted"
msgstr "FchaPlantd"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.daterepotted\n"
@@ -8622,6 +9355,7 @@ msgid "DateRepotted"
msgstr "FechaEnvase"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.daterepotted\n"
@@ -8631,6 +9365,7 @@ msgid "DatRepottd"
msgstr "FchaEnvase"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.datepruned\n"
@@ -8640,15 +9375,17 @@ msgid "DatePruned"
msgstr "FechaPodado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.datepruned\n"
"ShortName\n"
"value.text"
msgid "DatePruned"
-msgstr "FechaPodado"
+msgstr "FchaPodado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.datewatered\n"
@@ -8658,6 +9395,7 @@ msgid "DateWatered"
msgstr "FechaRiego"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.datewatered\n"
@@ -8667,6 +9405,7 @@ msgid "DateWaterd"
msgstr "FechaRiego"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.photo\n"
@@ -8676,6 +9415,7 @@ msgid "Photo"
msgstr "Foto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.photo\n"
@@ -8685,6 +9425,7 @@ msgid "Photo"
msgstr "Foto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.notes\n"
@@ -8694,6 +9435,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.plants.Fields.notes\n"
@@ -8703,6 +9445,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs\n"
@@ -8712,6 +9455,7 @@ msgid "Photographs"
msgstr "Fotografías"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.photoID\n"
@@ -8721,6 +9465,7 @@ msgid "PhotoID"
msgstr "IDFoto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.photoID\n"
@@ -8730,6 +9475,7 @@ msgid "PhotoID"
msgstr "IDFoto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.filmID\n"
@@ -8739,6 +9485,7 @@ msgid "FilmID"
msgstr "IdPelícula"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.filmID\n"
@@ -8748,6 +9495,7 @@ msgid "FilmID"
msgstr "IdPelícula"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.datetaken\n"
@@ -8757,15 +9505,17 @@ msgid "DateTaken"
msgstr "FechaTomada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.datetaken\n"
"ShortName\n"
"value.text"
msgid "DateTaken"
-msgstr "FechaTomada"
+msgstr "FchaTomada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.timetaken\n"
@@ -8775,6 +9525,7 @@ msgid "TimeTaken"
msgstr "HoraTomada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.timetaken\n"
@@ -8784,6 +9535,7 @@ msgid "TimeTaken"
msgstr "HoraTomada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.placetaken\n"
@@ -8793,15 +9545,17 @@ msgid "PlaceTaken"
msgstr "LugarTomada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.placetaken\n"
"ShortName\n"
"value.text"
msgid "PlaceTaken"
-msgstr "LugarTomada"
+msgstr "LgarTomada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.lensused\n"
@@ -8811,15 +9565,17 @@ msgid "LensUsed"
msgstr "LenteUtilizada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.lensused\n"
"ShortName\n"
"value.text"
msgid "LensUsed"
-msgstr "LenteUtilizada"
+msgstr "LenteUsada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.aperture\n"
@@ -8829,6 +9585,7 @@ msgid "Aperture"
msgstr "Obridura"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.aperture\n"
@@ -8838,6 +9595,7 @@ msgid "Aperture"
msgstr "Obridura"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.shutterspeed\n"
@@ -8847,6 +9605,7 @@ msgid "ShutterSpeed"
msgstr "VelocidadObturador"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.shutterspeed\n"
@@ -8856,6 +9615,7 @@ msgid "ShutterSpd"
msgstr "VeloObtur"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.filterused\n"
@@ -8865,15 +9625,17 @@ msgid "FilterUsed"
msgstr "FiltroUtilizado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.filterused\n"
"ShortName\n"
"value.text"
msgid "FilterUsed"
-msgstr "FiltroUtilizado"
+msgstr "FiltroUsad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.flash\n"
@@ -8883,6 +9645,7 @@ msgid "Flash"
msgstr "Flash"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.flash\n"
@@ -8892,6 +9655,7 @@ msgid "Flash"
msgstr "Flash"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.printsize\n"
@@ -8901,15 +9665,17 @@ msgid "PrintSize"
msgstr "TamañoImpresión"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.printsize\n"
"ShortName\n"
"value.text"
msgid "PrintSize"
-msgstr "TamañoImpresión"
+msgstr "TamañoImpr"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.notes\n"
@@ -8919,6 +9685,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.photographs.Fields.notes\n"
@@ -8928,6 +9695,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms\n"
@@ -8937,24 +9705,27 @@ msgid "MiniatureFilms"
msgstr "PelículasMiniatura"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.filmID\n"
"Name\n"
"value.text"
msgid "FilmID"
-msgstr "IdPelícula"
+msgstr "IDPelícula"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.filmID\n"
"ShortName\n"
"value.text"
msgid "FilmID"
-msgstr "IdPelícula"
+msgstr "IDPelícula"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.make\n"
@@ -8964,6 +9735,7 @@ msgid "Make"
msgstr "Marca"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.make\n"
@@ -8973,6 +9745,7 @@ msgid "Make"
msgstr "Marca"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.photosensitivity\n"
@@ -8982,6 +9755,7 @@ msgid "Photosensitivity"
msgstr "Fotosensibilidad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.photosensitivity\n"
@@ -8991,6 +9765,7 @@ msgid "Photosensi"
msgstr "Fotosensib"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.numberofphotos\n"
@@ -9000,6 +9775,7 @@ msgid "NumberOfPhotos"
msgstr "NúmeroDeFotos"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.numberofphotos\n"
@@ -9009,6 +9785,7 @@ msgid "NumPhotos"
msgstr "NúmFotos"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.colorfilm\n"
@@ -9018,15 +9795,17 @@ msgid "ColorFilm"
msgstr "PelículaColor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.colorfilm\n"
"ShortName\n"
"value.text"
msgid "ColorFilm"
-msgstr "PelículaColor"
+msgstr "PelícColor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.filmexpirationdate\n"
@@ -9036,6 +9815,7 @@ msgid "FilmExpirationDate"
msgstr "FechaCadPelícula"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.filmexpirationdate\n"
@@ -9045,6 +9825,7 @@ msgid "FlmExpDate"
msgstr "FchaCadPel"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.datedeveloped\n"
@@ -9054,6 +9835,7 @@ msgid "DateDeveloped"
msgstr "FechaRevelado"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.datedeveloped\n"
@@ -9063,6 +9845,7 @@ msgid "DateDevelp"
msgstr "FchaRevlad"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.developedby\n"
@@ -9072,6 +9855,7 @@ msgid "DevelopedBy"
msgstr "ReveladoPor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.developedby\n"
@@ -9081,6 +9865,7 @@ msgid "DevelopdBy"
msgstr "ReveladPor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.camera\n"
@@ -9090,6 +9875,7 @@ msgid "Camera"
msgstr "Camera"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.camera\n"
@@ -9099,6 +9885,7 @@ msgid "Camera"
msgstr "Camera"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.notes\n"
@@ -9108,6 +9895,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.notes\n"
@@ -9117,6 +9905,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection\n"
@@ -9126,6 +9915,7 @@ msgid "DVD-Collection"
msgstr "ColecciónDVD"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.dvdcollectionID\n"
@@ -9135,6 +9925,7 @@ msgid "CollectionID"
msgstr "IDColección"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.dvdcollectionID\n"
@@ -9144,6 +9935,7 @@ msgid "CollectnID"
msgstr "IDColeccn"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.movietitle\n"
@@ -9153,15 +9945,17 @@ msgid "MovieTitle"
msgstr "TítuloDePelícula"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.movietitle\n"
"ShortName\n"
"value.text"
msgid "MovieTitle"
-msgstr "TítuloDePelícula"
+msgstr "TítulPelíc"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.actress\n"
@@ -9171,6 +9965,7 @@ msgid "Genre"
msgstr "Chenero"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.actress\n"
@@ -9180,6 +9975,7 @@ msgid "Genre"
msgstr "Chenero"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.actor\n"
@@ -9189,6 +9985,7 @@ msgid "Actor"
msgstr "Actor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.actor\n"
@@ -9198,6 +9995,7 @@ msgid "Actor"
msgstr "Actor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.director\n"
@@ -9207,6 +10005,7 @@ msgid "Director"
msgstr "Director"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.director\n"
@@ -9216,6 +10015,7 @@ msgid "Director"
msgstr "Director"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.producer\n"
@@ -9225,6 +10025,7 @@ msgid "Producer"
msgstr "Productor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.producer\n"
@@ -9234,6 +10035,7 @@ msgid "Producer"
msgstr "Productor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.releaseyear\n"
@@ -9243,6 +10045,7 @@ msgid "ReleaseYear"
msgstr "AñoLanzamiento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.releaseyear\n"
@@ -9252,6 +10055,7 @@ msgid "ReleasYear"
msgstr "AñoLanzam"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.rating\n"
@@ -9261,15 +10065,17 @@ msgid "Rating"
msgstr "Puntuación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.rating\n"
"ShortName\n"
"value.text"
msgid "Rating"
-msgstr "Puntuación"
+msgstr "Clasific"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.subject\n"
@@ -9279,6 +10085,7 @@ msgid "Subject"
msgstr "Afer"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.subject\n"
@@ -9288,6 +10095,7 @@ msgid "Subject"
msgstr "Afer"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.length\n"
@@ -9297,6 +10105,7 @@ msgid "Length"
msgstr "Longaria"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.length\n"
@@ -9306,6 +10115,7 @@ msgid "Length"
msgstr "Longaria"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.dateacquired\n"
@@ -9315,6 +10125,7 @@ msgid "DateAcquired"
msgstr "FechaCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.dateacquired\n"
@@ -9324,6 +10135,7 @@ msgid "DateAcquir"
msgstr "FchaCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.purchasedat\n"
@@ -9333,6 +10145,7 @@ msgid "PurchasedAt"
msgstr "CompradoEn"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.purchasedat\n"
@@ -9342,6 +10155,7 @@ msgid "PurchaseAt"
msgstr "CompradoEn"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.purchaseprice\n"
@@ -9351,6 +10165,7 @@ msgid "PurchasePrice"
msgstr "PrecioCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.purchaseprice\n"
@@ -9360,6 +10175,7 @@ msgid "PurchPrice"
msgstr "PrecCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.review\n"
@@ -9369,6 +10185,7 @@ msgid "Review"
msgstr "Revisar"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.review\n"
@@ -9378,6 +10195,7 @@ msgid "Review"
msgstr "Revisar"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.notes\n"
@@ -9387,6 +10205,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.dvdcollection.Fields.notes\n"
@@ -9396,6 +10215,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection\n"
@@ -9405,6 +10225,7 @@ msgid "CD-Collection"
msgstr "ColecciónCD"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.cdcollectionID\n"
@@ -9414,6 +10235,7 @@ msgid "CollectionID"
msgstr "IDColección"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.cdcollectionID\n"
@@ -9423,6 +10245,7 @@ msgid "CollectnID"
msgstr "IDColeccn"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.albumtitle\n"
@@ -9432,15 +10255,17 @@ msgid "AlbumTitle"
msgstr "TítuloÁlbum"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.albumtitle\n"
"ShortName\n"
"value.text"
msgid "AlbumTitle"
-msgstr "TítuloÁlbum"
+msgstr "TítulÁlbum"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.artist\n"
@@ -9450,6 +10275,7 @@ msgid "Artist"
msgstr "Intérprete"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.artist\n"
@@ -9459,6 +10285,7 @@ msgid "Artist"
msgstr "Intérprete"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.musiccategoryID\n"
@@ -9468,6 +10295,7 @@ msgid "MusicCategoryID"
msgstr "IDCategoríaMúsica"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.musiccategoryID\n"
@@ -9477,6 +10305,7 @@ msgid "MusicCatID"
msgstr "IDCatMúsic"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.recordlabel\n"
@@ -9486,6 +10315,7 @@ msgid "RecordLabel"
msgstr "Discografica"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.recordlabel\n"
@@ -9495,6 +10325,7 @@ msgid "RecordLabl"
msgstr "Discográf"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.producer\n"
@@ -9504,6 +10335,7 @@ msgid "Producer"
msgstr "Productor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.producer\n"
@@ -9513,6 +10345,7 @@ msgid "Producer"
msgstr "Productor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.releaseyear\n"
@@ -9522,6 +10355,7 @@ msgid "ReleaseYear"
msgstr "AñoLanzamiento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.releaseyear\n"
@@ -9531,24 +10365,27 @@ msgid "ReleasYear"
msgstr "AñoLanzam"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.rating\n"
"Name\n"
"value.text"
msgid "Rating"
-msgstr "Puntuación"
+msgstr "Clasificación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.rating\n"
"ShortName\n"
"value.text"
msgid "Rating"
-msgstr "Puntuación"
+msgstr "Clasificac"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.format\n"
@@ -9558,6 +10395,7 @@ msgid "Format"
msgstr "Formato"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.format\n"
@@ -9567,6 +10405,7 @@ msgid "Format"
msgstr "Formato"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.numberoftracks\n"
@@ -9576,6 +10415,7 @@ msgid "NumberofTracks"
msgstr "NúmDePistas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.numberoftracks\n"
@@ -9585,6 +10425,7 @@ msgid "NoofTracks"
msgstr "NúmPistas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.datepurchased\n"
@@ -9594,6 +10435,7 @@ msgid "DatePurchased"
msgstr "FechaDeCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.datepurchased\n"
@@ -9603,6 +10445,7 @@ msgid "DatePurch"
msgstr "FchaCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.purchasedat\n"
@@ -9612,6 +10455,7 @@ msgid "PurchasedAt"
msgstr "CompradoEn"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.purchasedat\n"
@@ -9621,6 +10465,7 @@ msgid "PurchaseAt"
msgstr "CompradoEn"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.purchaseprice\n"
@@ -9630,6 +10475,7 @@ msgid "PurchasePrice"
msgstr "PrecioCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.purchaseprice\n"
@@ -9639,6 +10485,7 @@ msgid "PurchPrice"
msgstr "PrecCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.review\n"
@@ -9648,6 +10495,7 @@ msgid "Review"
msgstr "Revisar"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.review\n"
@@ -9657,6 +10505,7 @@ msgid "Review"
msgstr "Revisar"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.notes\n"
@@ -9666,6 +10515,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.notes\n"
@@ -9675,6 +10525,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library\n"
@@ -9684,6 +10535,7 @@ msgid "Library"
msgstr "Biblioteca"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.bookID\n"
@@ -9693,6 +10545,7 @@ msgid "BookID"
msgstr "IDLibro"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.bookID\n"
@@ -9702,24 +10555,27 @@ msgid "BookID"
msgstr "IDLibro"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.title\n"
"Name\n"
"value.text"
msgid "Title"
-msgstr "Cargo"
+msgstr "Titol"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.title\n"
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "Cargo"
+msgstr "Titol"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.topic\n"
@@ -9729,6 +10585,7 @@ msgid "Genre"
msgstr "Chenero"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.topic\n"
@@ -9738,6 +10595,7 @@ msgid "Genre"
msgstr "Chenero"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.authorID\n"
@@ -9747,6 +10605,7 @@ msgid "AuthorID"
msgstr "IDAutor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.authorID\n"
@@ -9756,6 +10615,7 @@ msgid "AuthorID"
msgstr "IDAutor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.copyrightyear\n"
@@ -9765,6 +10625,7 @@ msgid "CopyrightYear"
msgstr "AñoCopyright"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.copyrightyear\n"
@@ -9774,6 +10635,7 @@ msgid "CpyrightYr"
msgstr "AñoCopyrig"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.isbnnumber\n"
@@ -9783,6 +10645,7 @@ msgid "ISBNNumber"
msgstr "NúmISBN"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.isbnnumber\n"
@@ -9792,6 +10655,7 @@ msgid "ISBNNumber"
msgstr "NúmISBN"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.publisher\n"
@@ -9801,6 +10665,7 @@ msgid "Publisher"
msgstr "Editor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.publisher\n"
@@ -9810,24 +10675,27 @@ msgid "Publisher"
msgstr "Editor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.rating\n"
"Name\n"
"value.text"
msgid "Rating"
-msgstr "Puntuación"
+msgstr "Clasificación"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.rating\n"
"ShortName\n"
"value.text"
msgid "Rating"
-msgstr "Puntuación"
+msgstr "Clasific"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.translator\n"
@@ -9837,6 +10705,7 @@ msgid "Translator"
msgstr "Traductor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.translator\n"
@@ -9846,6 +10715,7 @@ msgid "Translator"
msgstr "Traductor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.pages\n"
@@ -9855,6 +10725,7 @@ msgid "Pages"
msgstr "Pachinas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.pages\n"
@@ -9864,6 +10735,7 @@ msgid "Pages"
msgstr "Pachinas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.datepurchased\n"
@@ -9873,6 +10745,7 @@ msgid "DatePurchased"
msgstr "FechaDeCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.datepurchased\n"
@@ -9882,6 +10755,7 @@ msgid "DatePurch"
msgstr "FchaCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.purchasedat\n"
@@ -9891,6 +10765,7 @@ msgid "PurchasedAt"
msgstr "CompradoEn"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.purchasedat\n"
@@ -9900,6 +10775,7 @@ msgid "PurchaseAt"
msgstr "CompradoEn"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.purchaseprice\n"
@@ -9909,6 +10785,7 @@ msgid "PurchasePrice"
msgstr "PrecioCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.purchaseprice\n"
@@ -9918,6 +10795,7 @@ msgid "PurchPrice"
msgstr "PrecCompra"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.covertype\n"
@@ -9927,15 +10805,17 @@ msgid "CoverType"
msgstr "TipoPortada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.covertype\n"
"ShortName\n"
"value.text"
msgid "CoverType"
-msgstr "TipoPortada"
+msgstr "TipPortada"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.editionnumber\n"
@@ -9945,6 +10825,7 @@ msgid "EditionNumber"
msgstr "NúmEdición"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.editionnumber\n"
@@ -9954,6 +10835,7 @@ msgid "EditionNo"
msgstr "NúmEdición"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.notes\n"
@@ -9963,6 +10845,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.library.Fields.notes\n"
@@ -9972,6 +10855,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors\n"
@@ -9981,6 +10865,7 @@ msgid "Authors"
msgstr "Autors"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.authorID\n"
@@ -9990,6 +10875,7 @@ msgid "AuthorID"
msgstr "IDAutor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.authorID\n"
@@ -9999,6 +10885,7 @@ msgid "AuthorID"
msgstr "IDAutor"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.firstname\n"
@@ -10008,6 +10895,7 @@ msgid "FirstName"
msgstr "Nombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.firstname\n"
@@ -10017,24 +10905,27 @@ msgid "FirstName"
msgstr "Nombre"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.lastname\n"
"Name\n"
"value.text"
msgid "LastName"
-msgstr "Apellidos"
+msgstr "Apellido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.lastname\n"
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "Apellidos"
+msgstr "Apellido"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.nationality\n"
@@ -10044,6 +10935,7 @@ msgid "Nationality"
msgstr "Nacionalidat"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.nationality\n"
@@ -10053,6 +10945,7 @@ msgid "Nationlity"
msgstr "Nacionalid"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.birthdate\n"
@@ -10062,15 +10955,17 @@ msgid "Birthdate"
msgstr "FechaNacimiento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.birthdate\n"
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "FechaNacimiento"
+msgstr "FechaNacim"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.birthplace\n"
@@ -10080,15 +10975,17 @@ msgid "Birthplace"
msgstr "LugarNacimiento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.birthplace\n"
"ShortName\n"
"value.text"
msgid "Birthplace"
-msgstr "LugarNacimiento"
+msgstr "LugarNacim"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.dateofdeath\n"
@@ -10098,6 +10995,7 @@ msgid "DateofDeath"
msgstr "FechaFallecimiento"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.dateofdeath\n"
@@ -10107,6 +11005,7 @@ msgid "DatofDeath"
msgstr "FechFallec"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.traininglocation\n"
@@ -10116,6 +11015,7 @@ msgid "TrainingLocation"
msgstr "LugarAprendizaje"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.traininglocation\n"
@@ -10125,6 +11025,7 @@ msgid "TraininLoc"
msgstr "LugrAprend"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.majorinfluences\n"
@@ -10134,6 +11035,7 @@ msgid "MajorInfluences"
msgstr "InfluenciasPrincipales"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.majorinfluences\n"
@@ -10143,6 +11045,7 @@ msgid "MajrInflue"
msgstr "InflPrales"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.photo\n"
@@ -10152,6 +11055,7 @@ msgid "Photo"
msgstr "Foto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.photo\n"
@@ -10161,6 +11065,7 @@ msgid "Photo"
msgstr "Foto"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.notes\n"
@@ -10170,6 +11075,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.authors.Fields.notes\n"
@@ -10179,6 +11085,7 @@ msgid "Notes"
msgstr "Notas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts\n"
@@ -10188,6 +11095,7 @@ msgid "Accounts"
msgstr "Cuentas"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts.Fields.accountID\n"
@@ -10197,6 +11105,7 @@ msgid "AccountID"
msgstr "IDCuenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts.Fields.accountID\n"
@@ -10206,6 +11115,7 @@ msgid "AccountID"
msgstr "IDCuenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts.Fields.accountnumber\n"
@@ -10215,6 +11125,7 @@ msgid "AccountNumber"
msgstr "NúmCuenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts.Fields.accountnumber\n"
@@ -10224,6 +11135,7 @@ msgid "AccountNo"
msgstr "NúmCuenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts.Fields.accountname\n"
@@ -10233,6 +11145,7 @@ msgid "AccountName"
msgstr "NombreCuenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts.Fields.accountname\n"
@@ -10242,6 +11155,7 @@ msgid "AcountName"
msgstr "NombreCta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts.Fields.accounttypeID\n"
@@ -10251,6 +11165,7 @@ msgid "AccountTypeID"
msgstr "IDTipoCuenta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.accounts.Fields.accounttypeID\n"
@@ -10260,6 +11175,7 @@ msgid "AccTypeID"
msgstr "IDTipoCta"
#: TableWizard.xcu
+#, fuzzy
msgctxt ""
"TableWizard.xcu\n"