summaryrefslogtreecommitdiff
path: root/slideshow/opengl/basicVertexShader.glsl
blob: 730da36fd67be03af75b83c2078fa4494c2dd164 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2008 by Sun Microsystems, Inc.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

#version 120

attribute vec3 a_position;
attribute vec3 a_normal;
attribute vec2 a_texCoord;

uniform mat4 u_projectionMatrix;
uniform mat4 u_modelViewMatrix;
uniform mat4 u_sceneTransformMatrix;
uniform mat4 u_primitiveTransformMatrix;
uniform mat4 u_operationsTransformMatrix;

varying vec2 v_texturePosition;
varying vec3 v_normal;

#if __VERSION__ < 140
mat4 inverse(mat4 m)
{
    float a00 = m[0][0], a01 = m[0][1], a02 = m[0][2], a03 = m[0][3];
    float a10 = m[1][0], a11 = m[1][1], a12 = m[1][2], a13 = m[1][3];
    float a20 = m[2][0], a21 = m[2][1], a22 = m[2][2], a23 = m[2][3];
    float a30 = m[3][0], a31 = m[3][1], a32 = m[3][2], a33 = m[3][3];

    float b00 = a00 * a11 - a01 * a10;
    float b01 = a00 * a12 - a02 * a10;
    float b02 = a00 * a13 - a03 * a10;
    float b03 = a01 * a12 - a02 * a11;
    float b04 = a01 * a13 - a03 * a11;
    float b05 = a02 * a13 - a03 * a12;
    float b06 = a20 * a31 - a21 * a30;
    float b07 = a20 * a32 - a22 * a30;
    float b08 = a20 * a33 - a23 * a30;
    float b09 = a21 * a32 - a22 * a31;
    float b10 = a21 * a33 - a23 * a31;
    float b11 = a22 * a33 - a23 * a32;

    float det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06;

    return mat4(
        a11 * b11 - a12 * b10 + a13 * b09,
        a02 * b10 - a01 * b11 - a03 * b09,
        a31 * b05 - a32 * b04 + a33 * b03,
        a22 * b04 - a21 * b05 - a23 * b03,
        a12 * b08 - a10 * b11 - a13 * b07,
        a00 * b11 - a02 * b08 + a03 * b07,
        a32 * b02 - a30 * b05 - a33 * b01,
        a20 * b05 - a22 * b02 + a23 * b01,
        a10 * b10 - a11 * b08 + a13 * b06,
        a01 * b08 - a00 * b10 - a03 * b06,
        a30 * b04 - a31 * b02 + a33 * b00,
        a21 * b02 - a20 * b04 - a23 * b00,
        a11 * b07 - a10 * b09 - a12 * b06,
        a00 * b09 - a01 * b07 + a02 * b06,
        a31 * b01 - a30 * b03 - a32 * b00,
        a20 * b03 - a21 * b01 + a22 * b00) / det;
}
#endif

void main( void )
{
    mat4 modelViewMatrix = u_modelViewMatrix * u_operationsTransformMatrix * u_sceneTransformMatrix * u_primitiveTransformMatrix;
    mat3 normalMatrix = mat3(transpose(inverse(modelViewMatrix)));
    gl_Position = u_projectionMatrix * modelViewMatrix * vec4(a_position, 1.0);
    v_texturePosition = a_texCoord;
    v_normal = normalize(normalMatrix * a_normal);
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
d class='graph'>
-rw-r--r--translations/source/cy/sdext/source/presenter/registry/data/org/openoffice/Office/extension.po6
-rw-r--r--translations/source/cy/starmath/source.po20
-rw-r--r--translations/source/cy/sw/source/ui/chrdlg.po12
-rw-r--r--translations/source/cy/sw/source/ui/lingu.po6
-rw-r--r--translations/source/cy/swext/mediawiki/help.po19
-rw-r--r--translations/source/cy/swext/mediawiki/src.po6
-rw-r--r--translations/source/cy/vcl/source/src.po6
-rw-r--r--translations/source/cy/wizards/source/euro.po6
-rw-r--r--translations/source/cy/wizards/source/importwizard.po30
-rw-r--r--translations/source/da/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--translations/source/da/helpcontent2/source/text/scalc.po22
-rw-r--r--translations/source/da/helpcontent2/source/text/scalc/01.po66
-rw-r--r--translations/source/da/helpcontent2/source/text/sdraw.po12
-rw-r--r--translations/source/da/helpcontent2/source/text/shared.po20
-rw-r--r--translations/source/da/helpcontent2/source/text/shared/01.po5
-rw-r--r--translations/source/da/helpcontent2/source/text/shared/02.po7
-rw-r--r--translations/source/da/helpcontent2/source/text/shared/autopi.po7
-rw-r--r--translations/source/da/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--translations/source/da/swext/mediawiki/help.po2
-rw-r--r--translations/source/de/basctl/source/basicide.po10
-rw-r--r--translations/source/de/desktop/source/deployment/misc.po10
-rw-r--r--translations/source/de/dictionaries/be_BY.po9
-rw-r--r--translations/source/de/dictionaries/el_GR.po9
-rw-r--r--translations/source/de/dictionaries/gd_GB.po9
-rw-r--r--translations/source/de/dictionaries/te_IN.po9
-rw-r--r--translations/source/de/helpcontent2/source/text/shared.po6
-rw-r--r--translations/source/de/helpcontent2/source/text/shared/00.po6
-rw-r--r--translations/source/de/helpcontent2/source/text/smath/01.po16
-rw-r--r--translations/source/de/helpcontent2/source/text/swriter/01.po8
-rw-r--r--translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po13
-rw-r--r--translations/source/de/readlicense_oo/docs/readme.po8
-rw-r--r--translations/source/de/sc/source/ui/miscdlgs.po8
-rw-r--r--translations/source/de/sc/source/ui/src.po38
-rw-r--r--translations/source/de/scp2/source/ooo.po51
-rw-r--r--translations/source/de/starmath/source.po20
-rw-r--r--translations/source/de/svx/source/dialog.po10
-rw-r--r--translations/source/de/sw/source/core/layout.po10
-rw-r--r--translations/source/de/sw/source/core/undo.po10
-rw-r--r--translations/source/de/sw/source/ui/app.po28
-rw-r--r--translations/source/de/sw/source/ui/config.po8
-rw-r--r--translations/source/de/sw/source/ui/dbui.po9
-rw-r--r--translations/source/de/sw/source/ui/dialog.po6
-rw-r--r--translations/source/de/sw/source/ui/docvw.po14
-rw-r--r--translations/source/de/sw/source/ui/ribbar.po14
-rw-r--r--translations/source/de/sw/source/ui/table.po12
-rw-r--r--translations/source/de/swext/mediawiki/help.po21
-rw-r--r--translations/source/de/swext/mediawiki/src.po10
-rw-r--r--translations/source/de/vcl/source/src.po20
-rw-r--r--translations/source/et/filter/source/pdf.po6
-rw-r--r--translations/source/et/sc/source/ui/navipi.po3
-rw-r--r--translations/source/et/sd/source/ui/view.po6
-rw-r--r--translations/source/et/sw/source/ui/utlui.po6
-rw-r--r--translations/source/et/swext/mediawiki/src/registry/data/org/openoffice/Office.po6
-rw-r--r--translations/source/et/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po6
-rw-r--r--translations/source/fi/chart2/source/controller/dialogs.po6
-rw-r--r--translations/source/fi/cui/source/dialogs.po8
-rw-r--r--translations/source/fi/dictionaries/af_ZA.po10
-rw-r--r--translations/source/fi/dictionaries/ar.po10
-rw-r--r--translations/source/fi/dictionaries/be_BY.po13
-rw-r--r--translations/source/fi/dictionaries/bg_BG.po10
-rw-r--r--translations/source/fi/dictionaries/bn_BD.po10
-rw-r--r--translations/source/fi/dictionaries/br_FR.po10
-rw-r--r--translations/source/fi/dictionaries/ca.po10
-rw-r--r--translations/source/fi/dictionaries/cs_CZ.po10
-rw-r--r--translations/source/fi/dictionaries/da_DK.po10
-rw-r--r--translations/source/fi/dictionaries/de.po10
-rw-r--r--translations/source/fi/dictionaries/el_GR.po13
-rw-r--r--translations/source/fi/dictionaries/en.po10
-rw-r--r--translations/source/fi/dictionaries/es_ES.po10
-rw-r--r--translations/source/fi/dictionaries/et_EE.po10
-rw-r--r--translations/source/fi/dictionaries/fr_FR.po10
-rw-r--r--translations/source/fi/dictionaries/gd_GB.po13
-rw-r--r--translations/source/fi/dictionaries/gl.po10
-rw-r--r--translations/source/fi/dictionaries/gu_IN.po10
-rw-r--r--translations/source/fi/dictionaries/he_IL.po10
-rw-r--r--translations/source/fi/dictionaries/hi_IN.po10
-rw-r--r--translations/source/fi/dictionaries/hr_HR.po10
-rw-r--r--translations/source/fi/dictionaries/hu_HU.po10
-rw-r--r--translations/source/fi/dictionaries/it_IT.po10
-rw-r--r--translations/source/fi/dictionaries/ku_TR.po10
-rw-r--r--translations/source/fi/dictionaries/lt_LT.po10
-rw-r--r--translations/source/fi/dictionaries/lv_LV.po10
-rw-r--r--translations/source/fi/dictionaries/ne_NP.po10
-rw-r--r--translations/source/fi/dictionaries/nl_NL.po10
-rw-r--r--translations/source/fi/dictionaries/no.po10
-rw-r--r--translations/source/fi/dictionaries/oc_FR.po10
-rw-r--r--translations/source/fi/dictionaries/pl_PL.po10
-rw-r--r--translations/source/fi/dictionaries/pt_BR.po10
-rw-r--r--translations/source/fi/dictionaries/pt_PT.po10
-rw-r--r--translations/source/fi/dictionaries/ro.po10
-rw-r--r--translations/source/fi/dictionaries/ru_RU.po10
-rw-r--r--translations/source/fi/dictionaries/sk_SK.po10
-rw-r--r--translations/source/fi/dictionaries/sl_SI.po10
-rw-r--r--translations/source/fi/dictionaries/sr.po10
-rw-r--r--translations/source/fi/dictionaries/sv_SE.po10
-rw-r--r--translations/source/fi/dictionaries/sw_TZ.po10
-rw-r--r--translations/source/fi/dictionaries/te_IN.po13
-rw-r--r--translations/source/fi/dictionaries/th_TH.po10
-rw-r--r--translations/source/fi/dictionaries/uk_UA.po10
-rw-r--r--translations/source/fi/dictionaries/vi.po10
-rw-r--r--translations/source/fi/dictionaries/zu_ZA.po10
-rw-r--r--translations/source/fi/svl/source/misc.po5
-rw-r--r--translations/source/fi/wizards/source/euro.po6
-rw-r--r--translations/source/fr/basctl/source/basicide.po8
-rw-r--r--translations/source/fr/connectivity/source/drivers/postgresql.po13
-rw-r--r--translations/source/fr/cui/source/dialogs.po6
-rw-r--r--translations/source/fr/cui/source/options.po6
-rw-r--r--translations/source/fr/desktop/source/deployment/misc.po8
-rw-r--r--translations/source/fr/dictionaries/be_BY.po9
-rw-r--r--translations/source/fr/dictionaries/el_GR.po9
-rw-r--r--translations/source/fr/dictionaries/gd_GB.po9
-rw-r--r--translations/source/fr/dictionaries/te_IN.po9
-rw-r--r--translations/source/fr/filter/source/xsltdialog.po3
-rw-r--r--translations/source/fr/helpcontent2/source/text/scalc.po22
-rw-r--r--translations/source/fr/helpcontent2/source/text/scalc/01.po227
-rw-r--r--translations/source/fr/helpcontent2/source/text/scalc/04.po24
-rw-r--r--translations/source/fr/helpcontent2/source/text/scalc/05.po16
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared.po14
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/00.po8
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/01.po10
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/02.po8
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/guide.po16
-rw-r--r--translations/source/fr/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--translations/source/fr/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--translations/source/fr/helpcontent2/source/text/smath/01.po85
-rw-r--r--translations/source/fr/helpcontent2/source/text/swriter/guide.po5
-rw-r--r--translations/source/fr/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po11
-rw-r--r--translations/source/fr/readlicense_oo/docs/readme.po6
-rw-r--r--translations/source/fr/reportbuilder/util.po6
-rw-r--r--translations/source/fr/sc/source/ui/miscdlgs.po6
-rw-r--r--translations/source/fr/sc/source/ui/navipi.po3
-rw-r--r--translations/source/fr/sc/source/ui/src.po51
-rw-r--r--translations/source/fr/scp2/source/ooo.po41
-rw-r--r--translations/source/fr/scp2/source/python.po6
-rw-r--r--translations/source/fr/scripting/source/pyprov.po8
-rw-r--r--translations/source/fr/starmath/source.po22
-rw-r--r--translations/source/fr/sw/source/ui/app.po18
-rw-r--r--translations/source/fr/sw/source/ui/chrdlg.po6
-rw-r--r--translations/source/fr/sw/source/ui/dialog.po6
-rw-r--r--translations/source/fr/sw/source/ui/lingu.po6
-rw-r--r--translations/source/fr/sw/source/ui/ribbar.po14
-rw-r--r--translations/source/fr/sw/source/ui/table.po10
-rw-r--r--translations/source/fr/swext/mediawiki/help.po9
-rw-r--r--translations/source/fr/vcl/source/src.po40
-rw-r--r--translations/source/gd/basctl/source/basicide.po4
-rw-r--r--translations/source/gd/basic/source/classes.po6
-rw-r--r--translations/source/gd/sc/source/ui/src.po4
-rw-r--r--translations/source/gd/scp2/source/accessories.po20
-rw-r--r--translations/source/gd/scp2/source/extensions.po20
-rw-r--r--translations/source/gd/scp2/source/ooo.po18
-rw-r--r--translations/source/gd/svtools/source/misc.po8
-rw-r--r--translations/source/gd/sw/source/ui/dbui.po6
-rw-r--r--translations/source/gl/basctl/source/basicide.po8
-rw-r--r--translations/source/gl/connectivity/source/drivers/postgresql.po13
-rw-r--r--translations/source/gl/cui/source/dialogs.po6
-rw-r--r--translations/source/gl/cui/source/options.po6
-rw-r--r--translations/source/gl/desktop/source/deployment/misc.po8
-rw-r--r--translations/source/gl/dictionaries/be_BY.po9
-rw-r--r--translations/source/gl/dictionaries/el_GR.po9
-rw-r--r--translations/source/gl/dictionaries/gd_GB.po9
-rw-r--r--translations/source/gl/dictionaries/te_IN.po9
-rw-r--r--translations/source/gl/filter/source/xsltdialog.po3
-rw-r--r--translations/source/gl/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po11
-rw-r--r--translations/source/gl/readlicense_oo/docs/readme.po6
-rw-r--r--translations/source/gl/reportbuilder/util.po6
-rw-r--r--translations/source/gl/sc/source/ui/miscdlgs.po6
-rw-r--r--translations/source/gl/sc/source/ui/navipi.po3
-rw-r--r--translations/source/gl/sc/source/ui/src.po51
-rw-r--r--translations/source/gl/scp2/source/ooo.po69
-rw-r--r--translations/source/gl/scp2/source/python.po6
-rw-r--r--translations/source/gl/scripting/source/pyprov.po6
-rw-r--r--translations/source/gl/starmath/source.po20
-rw-r--r--translations/source/gl/sw/source/ui/app.po16
-rw-r--r--translations/source/gl/sw/source/ui/chrdlg.po6
-rw-r--r--translations/source/gl/sw/source/ui/dialog.po6
-rw-r--r--translations/source/gl/sw/source/ui/lingu.po6
-rw-r--r--translations/source/gl/sw/source/ui/ribbar.po14
-rw-r--r--translations/source/gl/sw/source/ui/table.po10
-rw-r--r--translations/source/gl/swext/mediawiki/help.po9
-rw-r--r--translations/source/gl/vcl/source/src.po40
-rw-r--r--translations/source/he/basctl/source/basicide.po4
-rw-r--r--translations/source/he/basic/source/app.po112
-rw-r--r--translations/source/he/basic/source/classes.po8
-rw-r--r--translations/source/he/chart2/source/controller/dialogs.po6
-rw-r--r--translations/source/he/connectivity/source/resource.po10
-rw-r--r--translations/source/he/crashrep/source/all.po8
-rw-r--r--translations/source/he/cui/source/dialogs.po24
-rw-r--r--translations/source/he/cui/source/options.po8
-rw-r--r--translations/source/he/cui/source/tabpages.po252
-rw-r--r--translations/source/he/dbaccess/source/core/resource.po6
-rw-r--r--translations/source/he/dbaccess/source/ext/macromigration.po22
-rw-r--r--translations/source/he/dbaccess/source/ui/app.po12
-rw-r--r--translations/source/he/dbaccess/source/ui/dlg.po17
-rw-r--r--translations/source/he/dbaccess/source/ui/misc.po10
-rw-r--r--translations/source/he/dbaccess/source/ui/querydesign.po10
-rw-r--r--translations/source/he/dbaccess/source/ui/relationdesign.po10
-rw-r--r--translations/source/he/dbaccess/source/ui/tabledesign.po4
-rw-r--r--translations/source/he/dbaccess/source/ui/uno.po12
-rw-r--r--translations/source/he/editeng/source/items.po6
-rw-r--r--translations/source/he/filter/source/config/fragments/filters.po3
-rw-r--r--translations/source/he/filter/source/graphicfilter/eps.po8
-rw-r--r--translations/source/he/filter/source/pdf.po30
-rw-r--r--translations/source/he/filter/source/xsltdialog.po14
-rw-r--r--translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--translations/source/he/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--translations/source/he/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--translations/source/he/padmin/source.po6
-rw-r--r--translations/source/he/sc/source/ui/miscdlgs.po6
-rw-r--r--translations/source/he/sc/source/ui/src.po101
-rw-r--r--translations/source/he/scp2/source/calc.po8
-rw-r--r--translations/source/he/scp2/source/extensions.po6
-rw-r--r--translations/source/he/scp2/source/winexplorerext.po8
-rw-r--r--translations/source/he/sd/source/core.po8
-rw-r--r--translations/source/he/sd/source/filter/html.po10
-rw-r--r--translations/source/he/sd/source/ui/annotations.po53
-rw-r--r--translations/source/he/sd/source/ui/app.po77
-rw-r--r--translations/source/he/sd/source/ui/dlg.po30
-rw-r--r--translations/source/he/sd/source/ui/slideshow.po23
-rw-r--r--translations/source/he/sd/source/ui/slidesorter/view.po28
-rw-r--r--translations/source/he/sd/source/ui/view.po165
-rw-r--r--translations/source/he/setup_native/source/mac.po12
-rw-r--r--translations/source/he/sfx2/source/appl.po29
-rw-r--r--translations/source/he/sfx2/source/dialog.po223
-rw-r--r--translations/source/he/sfx2/source/doc.po91
-rw-r--r--translations/source/he/starmath/source.po7
-rw-r--r--translations/source/he/svtools/source/filter.po4
-rw-r--r--translations/source/he/svtools/source/java.po10
-rw-r--r--translations/source/he/svtools/source/misc.po240
-rw-r--r--translations/source/he/svtools/source/toolpanel.po10
-rw-r--r--translations/source/he/svx/source/dialog.po27
-rw-r--r--translations/source/he/svx/source/engine3d.po8
-rw-r--r--translations/source/he/svx/source/form.po10
-rw-r--r--translations/source/he/svx/source/src.po12
-rw-r--r--translations/source/he/svx/source/stbctrls.po12
-rw-r--r--translations/source/he/svx/source/svdraw.po42
-rw-r--r--translations/source/he/svx/source/tbxctrls.po16
-rw-r--r--translations/source/he/svx/source/toolbars.po16
-rw-r--r--translations/source/he/sw/source/ui/app.po22
-rw-r--r--translations/source/he/sw/source/ui/chrdlg.po8
-rw-r--r--translations/source/he/sw/source/ui/config.po7
-rw-r--r--translations/source/he/sw/source/ui/dbui.po51
-rw-r--r--translations/source/he/sw/source/ui/dialog.po11
-rw-r--r--translations/source/he/sw/source/ui/docvw.po34
-rw-r--r--translations/source/he/sw/source/ui/envelp.po6
-rw-r--r--translations/source/he/sw/source/ui/frmdlg.po14
-rw-r--r--translations/source/he/sw/source/ui/index.po55
-rw-r--r--translations/source/he/sw/source/ui/lingu.po6
-rw-r--r--translations/source/he/sw/source/ui/misc.po36
-rw-r--r--translations/source/he/sw/source/ui/ribbar.po14
-rw-r--r--translations/source/he/sw/source/ui/table.po21
-rw-r--r--translations/source/he/sw/source/ui/uiview.po8
-rw-r--r--translations/source/he/sw/source/ui/utlui.po33
-rw-r--r--translations/source/he/swext/mediawiki/help.po188
-rw-r--r--translations/source/he/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po36
-rw-r--r--translations/source/he/uui/source.po24
-rw-r--r--translations/source/he/vcl/source/src.po16
-rw-r--r--translations/source/he/wizards/source/formwizard.po10
-rw-r--r--translations/source/he/xmlsecurity/source/component.po8
-rw-r--r--translations/source/he/xmlsecurity/source/dialogs.po60
-rw-r--r--translations/source/ja/basctl/source/basicide.po8
-rw-r--r--translations/source/ja/connectivity/source/drivers/postgresql.po11
-rw-r--r--translations/source/ja/cui/source/dialogs.po8
-rw-r--r--translations/source/ja/cui/source/tabpages.po8
-rw-r--r--translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--translations/source/ja/reportbuilder/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--translations/source/ja/scp2/source/ooo.po15
-rw-r--r--translations/source/ja/sd/source/ui/app.po10
-rw-r--r--translations/source/ja/svl/source/misc.po7
-rw-r--r--translations/source/lt/basctl/source/basicide.po8
-rw-r--r--translations/source/lt/basic/source/app.po14
-rw-r--r--translations/source/lt/cui/source/dialogs.po10
-rw-r--r--translations/source/lt/editeng/source/editeng.po8
-rw-r--r--translations/source/lt/formula/source/core/resource.po16
-rw-r--r--translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po19
-rw-r--r--translations/source/lt/sc/source/ui/src.po6
-rw-r--r--translations/source/lt/sd/source/ui/dlg.po8
-rw-r--r--translations/source/lt/sfx2/source/appl.po12
-rw-r--r--translations/source/lt/sfx2/source/dialog.po8
-rw-r--r--translations/source/lt/svl/source/misc.po7
-rw-r--r--translations/source/lt/svx/inc.po8
-rw-r--r--translations/source/lt/svx/source/dialog.po8
-rw-r--r--translations/source/lt/svx/source/src.po8
-rw-r--r--translations/source/lt/svx/source/tbxctrls.po8
-rw-r--r--translations/source/lt/sw/source/ui/dbui.po16
-rw-r--r--translations/source/lt/sysui/desktop/share.po5
-rw-r--r--translations/source/nb/basctl/source/basicide.po8
-rw-r--r--translations/source/nb/connectivity/source/drivers/postgresql.po13
-rw-r--r--translations/source/nb/desktop/source/deployment/misc.po4
-rw-r--r--translations/source/nb/dictionaries/be_BY.po9
-rw-r--r--translations/source/nb/dictionaries/el_GR.po9
-rw-r--r--translations/source/nb/dictionaries/gd_GB.po9
-rw-r--r--translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po9
-rw-r--r--translations/source/nb/sc/source/ui/navipi.po3
-rw-r--r--translations/source/nb/sc/source/ui/src.po37
-rw-r--r--translations/source/nb/scp2/source/ooo.po45
-rw-r--r--translations/source/nb/scp2/source/python.po6
-rw-r--r--translations/source/nb/sw/source/ui/chrdlg.po6
-rw-r--r--translations/source/nb/sw/source/ui/lingu.po6
-rw-r--r--translations/source/nb/swext/mediawiki/help.po9
-rw-r--r--translations/source/ne/accessibility/source/helper.po10
-rw-r--r--translations/source/ne/basctl/source/basicide.po108
-rw-r--r--translations/source/ne/basic/source/app.po16
-rw-r--r--translations/source/ne/basic/source/classes.po20
-rw-r--r--translations/source/ne/chart2/source/controller/dialogs.po421
-rw-r--r--translations/source/ne/connectivity/source/resource.po8
-rw-r--r--translations/source/ne/cui/source/customize.po26
-rw-r--r--translations/source/ne/cui/source/dialogs.po26
-rw-r--r--translations/source/ne/cui/source/options.po15
-rw-r--r--translations/source/ne/cui/source/tabpages.po52
-rw-r--r--translations/source/ne/dbaccess/source/ui/dlg.po14
-rw-r--r--translations/source/ne/dbaccess/source/ui/tabledesign.po8
-rw-r--r--translations/source/ne/editeng/source/items.po45
-rw-r--r--translations/source/ne/extensions/source/abpilot.po17
-rw-r--r--translations/source/ne/extensions/source/bibliography.po9
-rw-r--r--translations/source/ne/extensions/source/propctrlr.po139
-rw-r--r--translations/source/ne/extensions/source/scanner.po12
-rw-r--r--translations/source/ne/extensions/source/update/check.po19
-rw-r--r--translations/source/ne/filter/source/pdf.po8
-rw-r--r--translations/source/ne/forms/source/resource.po8
-rw-r--r--translations/source/ne/fpicker/source/office.po17
-rw-r--r--translations/source/ne/framework/source/classes.po23
-rw-r--r--translations/source/ne/framework/source/services.po27
-rw-r--r--translations/source/ne/instsetoo_native/inc_openoffice/windows/msi_languages.po35
-rw-r--r--translations/source/ne/mysqlc/source.po10
-rw-r--r--translations/source/ne/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po8
-rw-r--r--translations/source/ne/officecfg/registry/data/org/openoffice/Office.po14
-rw-r--r--translations/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--translations/source/ne/padmin/source.po59
-rw-r--r--translations/source/ne/reportdesign/source/ui/inspection.po10
-rw-r--r--translations/source/ne/sc/source/ui/dbgui.po10
-rw-r--r--translations/source/ne/sc/source/ui/src.po66
-rw-r--r--translations/source/ne/scaddins/source/analysis.po27
-rw-r--r--translations/source/ne/scaddins/source/datefunc.po7
-rw-r--r--translations/source/ne/sccomp/source/solver.po28
-rw-r--r--translations/source/ne/scripting/source/pyprov.po11
-rw-r--r--translations/source/ne/sd/source/ui/app.po14
-rw-r--r--translations/source/ne/setup_native/source/mac.po52
-rw-r--r--translations/source/ne/sfx2/source/menu.po19
-rw-r--r--translations/source/ne/starmath/source.po89
-rw-r--r--translations/source/ne/svl/source/misc.po165
-rw-r--r--translations/source/ne/svtools/source/dialogs.po8
-rw-r--r--translations/source/ne/svtools/source/filter.po39
-rw-r--r--translations/source/ne/svx/source/form.po8
-rw-r--r--translations/source/ne/svx/source/gallery2.po8
-rw-r--r--translations/source/ne/svx/source/stbctrls.po8
-rw-r--r--translations/source/ne/svx/source/svdraw.po16
-rw-r--r--translations/source/ne/sw/source/ui/app.po8
-rw-r--r--translations/source/ne/sw/source/ui/chrdlg.po12
-rw-r--r--translations/source/ne/sw/source/ui/config.po20
-rw-r--r--translations/source/ne/sw/source/ui/dbui.po8
-rw-r--r--translations/source/ne/sw/source/ui/frmdlg.po24
-rw-r--r--translations/source/ne/sw/source/ui/index.po10
-rw-r--r--translations/source/ne/sw/source/ui/misc.po8
-rw-r--r--translations/source/ne/sw/source/ui/table.po10
-rw-r--r--translations/source/ne/sysui/desktop/share.po51
-rw-r--r--translations/source/ne/vcl/source/src.po90
-rw-r--r--translations/source/ne/wizards/source/euro.po24
-rw-r--r--translations/source/ne/wizards/source/formwizard.po70
-rw-r--r--translations/source/ne/wizards/source/importwizard.po32
-rw-r--r--translations/source/ne/xmlsecurity/source/dialogs.po35
-rw-r--r--translations/source/nl/basctl/source/basicide.po10
-rw-r--r--translations/source/nl/chart2/source/controller/dialogs.po8
-rw-r--r--translations/source/nl/connectivity/source/drivers/postgresql.po9
-rw-r--r--translations/source/nl/cui/source/dialogs.po7
-rw-r--r--translations/source/pl/connectivity/source/drivers/postgresql.po11
-rw-r--r--translations/source/pl/desktop/source/deployment/misc.po8
-rw-r--r--translations/source/pl/helpcontent2/source/text/shared.po16
-rw-r--r--translations/source/pl/helpcontent2/source/text/simpress.po10
-rw-r--r--translations/source/pl/reportbuilder/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/pl/sc/source/ui/navipi.po5
-rw-r--r--translations/source/pl/sc/source/ui/src.po63
-rw-r--r--translations/source/pl/scp2/source/ooo.po73
-rw-r--r--translations/source/pl/scp2/source/python.po8
-rw-r--r--translations/source/pl/sdext/source/pdfimport.po6
-rw-r--r--translations/source/pl/swext/mediawiki/help.po23
-rw-r--r--translations/source/pl/swext/mediawiki/src.po10
-rw-r--r--translations/source/pl/wizards/source/euro.po8
-rw-r--r--translations/source/pl/wizards/source/importwizard.po30
-rw-r--r--translations/source/pt-BR/cui/source/options.po6
-rw-r--r--translations/source/pt-BR/cui/source/tabpages.po10
-rw-r--r--translations/source/pt-BR/desktop/source/deployment/gui.po8
-rw-r--r--translations/source/pt-BR/extensions/source/update/check.po8
-rw-r--r--translations/source/pt-BR/helpcontent2/source/text/scalc/01.po72
-rw-r--r--translations/source/pt-BR/helpcontent2/source/text/scalc/05.po6
-rw-r--r--translations/source/pt-BR/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--translations/source/pt-BR/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--translations/source/pt-BR/swext/mediawiki/help.po5
-rw-r--r--translations/source/pt/basctl/source/basicide.po8
-rw-r--r--translations/source/pt/basic/source/app.po12
-rw-r--r--translations/source/pt/connectivity/source/drivers/postgresql.po2
-rw-r--r--translations/source/pt/connectivity/source/resource.po4
-rw-r--r--translations/source/pt/cui/source/dialogs.po6
-rw-r--r--translations/source/pt/cui/source/options.po4
-rw-r--r--translations/source/pt/cui/source/tabpages.po10
-rw-r--r--translations/source/pt/desktop/source/app.po6
-rw-r--r--translations/source/pt/desktop/source/deployment/gui.po2
-rw-r--r--translations/source/pt/desktop/source/deployment/misc.po2
-rw-r--r--translations/source/pt/dictionaries/be_BY.po2
-rw-r--r--translations/source/pt/dictionaries/el_GR.po2
-rw-r--r--translations/source/pt/dictionaries/gd_GB.po2
-rw-r--r--translations/source/pt/dictionaries/te_IN.po2
-rw-r--r--translations/source/pt/extensions/source/dbpilots.po6
-rw-r--r--translations/source/pt/extensions/source/propctrlr.po2
-rw-r--r--translations/source/pt/filter/source/pdf.po2
-rw-r--r--translations/source/pt/helpcontent2/source/text/sbasic/guide.po24
-rw-r--r--translations/source/pt/helpcontent2/source/text/sbasic/shared.po488
-rw-r--r--translations/source/pt/helpcontent2/source/text/sbasic/shared/01.po8
-rw-r--r--translations/source/pt/helpcontent2/source/text/sbasic/shared/02.po36
-rw-r--r--translations/source/pt/helpcontent2/source/text/scalc.po4
-rw-r--r--translations/source/pt/helpcontent2/source/text/scalc/01.po34
-rw-r--r--translations/source/pt/helpcontent2/source/text/scalc/04.po4
-rw-r--r--translations/source/pt/helpcontent2/source/text/scalc/05.po6
-rw-r--r--translations/source/pt/helpcontent2/source/text/scalc/guide.po78
-rw-r--r--translations/source/pt/helpcontent2/source/text/schart.po8
-rw-r--r--translations/source/pt/helpcontent2/source/text/schart/01.po132
-rw-r--r--translations/source/pt/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared.po10
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/00.po4
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/01.po4
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/02.po4
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/04.po6
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/guide.po10
-rw-r--r--translations/source/pt/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--translations/source/pt/helpcontent2/source/text/simpress.po10
-rw-r--r--translations/source/pt/helpcontent2/source/text/simpress/02.po6
-rw-r--r--translations/source/pt/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--translations/source/pt/helpcontent2/source/text/smath/01.po14
-rw-r--r--translations/source/pt/helpcontent2/source/text/swriter.po8
-rw-r--r--translations/source/pt/helpcontent2/source/text/swriter/01.po12
-rw-r--r--translations/source/pt/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--translations/source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po2
-rw-r--r--translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--translations/source/pt/padmin/source.po22
-rw-r--r--translations/source/pt/readlicense_oo/docs/readme.po2
-rw-r--r--translations/source/pt/reportbuilder/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--translations/source/pt/reportdesign/source/ui/inspection.po2
-rw-r--r--translations/source/pt/sc/source/ui/miscdlgs.po2
-rw-r--r--translations/source/pt/sc/source/ui/navipi.po2
-rw-r--r--translations/source/pt/sc/source/ui/src.po8
-rw-r--r--translations/source/pt/scaddins/source/analysis.po6
-rw-r--r--translations/source/pt/scp2/source/extensions.po8
-rw-r--r--translations/source/pt/scp2/source/ooo.po3
-rw-r--r--translations/source/pt/scp2/source/python.po2
-rw-r--r--translations/source/pt/sd/source/ui/app.po24
-rw-r--r--translations/source/pt/sd/source/ui/dlg.po12
-rw-r--r--translations/source/pt/sfx2/source/dialog.po2
-rw-r--r--translations/source/pt/sfx2/source/doc.po6
-rw-r--r--translations/source/pt/sfx2/source/view.po6
-rw-r--r--translations/source/pt/starmath/source.po2
-rw-r--r--translations/source/pt/svx/inc.po6
-rw-r--r--translations/source/pt/svx/source/dialog.po8
-rw-r--r--translations/source/pt/svx/source/tbxctrls.po2
-rw-r--r--translations/source/pt/sw/source/ui/chrdlg.po2
-rw-r--r--translations/source/pt/sw/source/ui/config.po2
-rw-r--r--translations/source/pt/sw/source/ui/envelp.po6
-rw-r--r--translations/source/pt/sw/source/ui/lingu.po2
-rw-r--r--translations/source/pt/sw/source/ui/misc.po6
-rw-r--r--translations/source/pt/sw/source/ui/uiview.po8
-rw-r--r--translations/source/pt/sw/source/ui/utlui.po6
-rw-r--r--translations/source/pt/swext/mediawiki/help.po4
-rw-r--r--translations/source/pt/vcl/source/src.po12
-rw-r--r--translations/source/ru/basctl/source/basicide.po4
-rw-r--r--translations/source/ru/chart2/source/controller/dialogs.po2
-rw-r--r--translations/source/ru/connectivity/source/drivers/postgresql.po12
-rw-r--r--translations/source/ru/cui/source/dialogs.po2
-rw-r--r--translations/source/ru/dictionaries/be_BY.po2
-rw-r--r--translations/source/ru/dictionaries/el_GR.po2
-rw-r--r--translations/source/ru/dictionaries/gd_GB.po2
-rw-r--r--translations/source/ru/dictionaries/te_IN.po2
-rw-r--r--translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--translations/source/ru/sc/source/ui/src.po21
-rw-r--r--translations/source/ru/scp2/source/ooo.po26
-rw-r--r--translations/source/ru/scripting/source/pyprov.po2
-rw-r--r--translations/source/ru/starmath/source.po16
-rw-r--r--translations/source/ru/sw/source/ui/lingu.po2
-rw-r--r--translations/source/ru/vcl/source/src.po37
-rw-r--r--translations/source/sk/basctl/source/basicide.po8
-rw-r--r--translations/source/sk/connectivity/source/drivers/postgresql.po13
-rw-r--r--translations/source/sk/desktop/source/deployment/misc.po8
-rw-r--r--translations/source/sk/dictionaries/be_BY.po9
-rw-r--r--translations/source/sk/dictionaries/el_GR.po9
-rw-r--r--translations/source/sk/dictionaries/gd_GB.po9
-rw-r--r--translations/source/sk/dictionaries/te_IN.po9
-rw-r--r--translations/source/sk/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--translations/source/sk/officecfg/registry/data/org/openoffice/Office/UI.po11
-rw-r--r--translations/source/sk/readlicense_oo/docs/readme.po6
-rw-r--r--translations/source/sk/reportbuilder/util.po10
-rw-r--r--translations/source/sk/scp2/source/ooo.po43
-rw-r--r--translations/source/sk/scp2/source/python.po6
-rw-r--r--translations/source/sk/starmath/source.po20
-rw-r--r--translations/source/sk/sw/source/ui/app.po30
-rw-r--r--translations/source/sk/sw/source/ui/chrdlg.po6
-rw-r--r--translations/source/sk/sw/source/ui/dbui.po12
-rw-r--r--translations/source/sk/sw/source/ui/dialog.po6
-rw-r--r--translations/source/sk/sw/source/ui/docvw.po12
-rw-r--r--translations/source/sk/sw/source/ui/lingu.po6
-rw-r--r--translations/source/sk/sw/source/ui/ribbar.po14
-rw-r--r--translations/source/sk/sw/source/ui/table.po10
-rw-r--r--translations/source/sk/sw/source/ui/utlui.po24
-rw-r--r--translations/source/sk/swext/mediawiki/help.po17
-rw-r--r--translations/source/sv/basctl/source/basicide.po8
-rw-r--r--translations/source/sv/chart2/source/controller/dialogs.po11
-rw-r--r--translations/source/sv/filter/source/pdf.po34
-rw-r--r--translations/source/sv/helpcontent2/source/text/shared/05.po10
-rw-r--r--translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po5
-rw-r--r--translations/source/sv/sfx2/source/dialog.po10
-rw-r--r--translations/source/sv/sw/source/ui/docvw.po12
-rw-r--r--translations/source/tr/basctl/source/basicide.po10
-rw-r--r--translations/source/tr/connectivity/source/drivers/postgresql.po11
-rw-r--r--translations/source/tr/helpcontent2/source/text/scalc.po8
-rw-r--r--translations/source/tr/helpcontent2/source/text/shared/optionen.po2
-rw-r--r--translations/source/ug/basctl/source/basicide.po10
-rw-r--r--translations/source/ug/connectivity/source/drivers/mozab.po12
-rw-r--r--translations/source/ug/connectivity/source/drivers/postgresql.po14
-rw-r--r--translations/source/ug/connectivity/source/resource.po462
-rw-r--r--translations/source/ug/dbaccess/source/core/resource.po6
-rw-r--r--translations/source/ug/dbaccess/source/sdbtools/resource.po6
-rw-r--r--translations/source/ug/editeng/source/editeng.po8
-rw-r--r--translations/source/ug/forms/source/resource.po6
-rw-r--r--translations/source/ug/formula/source/core/resource.po16
-rw-r--r--translations/source/ug/svl/source/misc.po7
-rw-r--r--translations/source/zh-TW/basctl/source/basicide.po8
-rw-r--r--translations/source/zh-TW/connectivity/source/drivers/postgresql.po13
-rw-r--r--translations/source/zh-TW/cui/source/dialogs.po6
-rw-r--r--translations/source/zh-TW/cui/source/options.po6
-rw-r--r--translations/source/zh-TW/cui/source/tabpages.po6
-rw-r--r--translations/source/zh-TW/desktop/source/deployment/misc.po8
-rw-r--r--translations/source/zh-TW/dictionaries/ar.po9
-rw-r--r--translations/source/zh-TW/dictionaries/be_BY.po9
-rw-r--r--translations/source/zh-TW/dictionaries/bg_BG.po9
-rw-r--r--translations/source/zh-TW/extensions/source/scanner.po6
-rw-r--r--translations/source/zh-TW/formula/source/core/resource.po14
-rw-r--r--translations/source/zh-TW/svl/source/misc.po5
-rw-r--r--translations/source/zh-TW/sysui/desktop/share.po5
-rw-r--r--translations/source/zh-TW/uui/source.po8
618 files changed, 5251 insertions, 6621 deletions
diff --git a/translations/source/ast/basctl/source/basicide.po b/translations/source/ast/basctl/source/basicide.po
index 289c3df2988..aa06258705c 100644
--- a/translations/source/ast/basctl/source/basicide.po
+++ b/translations/source/ast/basctl/source/basicide.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basctl%2Fsource%2Fbasicide.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-10-14 13:28+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2011-11-30 01:55+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\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: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_MOD.pageitem.text
@@ -145,7 +145,7 @@ msgstr "Sustituyir biblioteques esistentes"
#: moduldlg.src#RID_DLG_GOTOLINE.RID_FT_LINE.fixedtext.text
msgid "~Line Number:"
-msgstr ""
+msgstr "Númberu de ~llinia"
#: moduldlg.src#RID_DLG_NEWLIB.RID_FT_NEWLIB.fixedtext.text
msgid "~Name:"
@@ -642,7 +642,7 @@ msgstr ""
#: basidesh.src#RID_STR_GETLINE.string.text
msgid "Goto Line"
-msgstr ""
+msgstr "Dir a llinia"
#: basicprint.src#RID_PRINTDLG_STRLIST.1.itemlist.text
msgid "Print range"
diff --git a/translations/source/ast/connectivity/source/drivers/postgresql.po b/translations/source/ast/connectivity/source/drivers/postgresql.po
index bf8e3bfbf24..d9d1a7fc8cd 100644
--- a/translations/source/ast/connectivity/source/drivers/postgresql.po
+++ b/translations/source/ast/connectivity/source/drivers/postgresql.po
@@ -4,24 +4,25 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fsource%2Fdrivers%2Fpostgresql.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2011-11-30 02:02+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: postgresql.xcu#.Drivers.Installed.sdbc_postgresql__.DriverTypeDisplayName.value.text
msgid "PostgreSQL"
-msgstr ""
+msgstr "PostgreSQL"
#: description.xml#dispname.dispname.description.text
msgid "PostgreSQL-SDBC Driver"
-msgstr ""
+msgstr "Controlador PostgreSQL-SDBC"
#: description.xml#extdesc.extdesc.description.text
msgid "A native PostgreSQL database driver for LibreOffice. It is faster, seamlessly integrated and there is no need to install and setup a JDBC or ODBC driver separately. Compatible with PostgreSQL version 8.4 and later.\n"
-msgstr ""
+msgstr "Controlador nativu de la base de datos PostgreSQL pa LibreOffice. Ye más rápidu, perfeutamente integráu y nun fai falta instalar y configurar aparte un controlador JDBC o ODBC. Compatible con PostgreSQL versión 8.4 y siguientes.\n"
diff --git a/translations/source/ast/desktop/source/deployment/misc.po b/translations/source/ast/desktop/source/deployment/misc.po
index c9ba4c6b069..cd9b8f7eb4d 100644
--- a/translations/source/ast/desktop/source/deployment/misc.po
+++ b/translations/source/ast/desktop/source/deployment/misc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fmisc.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-11-14 15:24+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2011-11-30 02:07+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
@@ -29,4 +29,4 @@ msgstr ""
#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_LO_MIN.string.text
msgid "Extension requires at least LibreOffice version %VERSION"
-msgstr ""
+msgstr "La estensión requier polo menos LibreOffice versión %VERSION"
diff --git a/translations/source/ast/dictionaries/be_BY.po b/translations/source/ast/dictionaries/be_BY.po
index fd18e750062..5b95daa4287 100644
--- a/translations/source/ast/dictionaries/be_BY.po
+++ b/translations/source/ast/dictionaries/be_BY.po
@@ -4,16 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbe_BY.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2011-11-30 02:07+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: description.xml#dispname.dispname.description.text
msgid "Belarusian spelling dictionary"
-msgstr ""
+msgstr "Diccionariu ortográficu bielorrusu"
diff --git a/translations/source/ast/dictionaries/el_GR.po b/translations/source/ast/dictionaries/el_GR.po
index c382175942d..7e7ec7ed33a 100644
--- a/translations/source/ast/dictionaries/el_GR.po
+++ b/translations/source/ast/dictionaries/el_GR.po
@@ -4,16 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fel_GR.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2011-11-30 02:09+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: description.xml#dispname.dispname.description.text
msgid "Greek spelling dictionary, and hyphenation rules"
-msgstr ""
+msgstr "Diccionariu ortográficu griegu, y regles de dixebra silábica"
diff --git a/translations/source/ast/dictionaries/gd_GB.po b/translations/source/ast/dictionaries/gd_GB.po
index b78a976b953..1906be02e0a 100644
--- a/translations/source/ast/dictionaries/gd_GB.po
+++ b/translations/source/ast/dictionaries/gd_GB.po
@@ -4,16 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fgd_GB.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2011-11-30 02:10+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: description.xml#dispname.dispname.description.text
msgid "Scottish Gaelic spelling dictionary"
-msgstr ""
+msgstr "Diccionariu ortográficu de gaélicu escocés"
diff --git a/translations/source/ast/dictionaries/te_IN.po b/translations/source/ast/dictionaries/te_IN.po
index 895f301d16b..c8dab7e0a77 100644
--- a/translations/source/ast/dictionaries/te_IN.po
+++ b/translations/source/ast/dictionaries/te_IN.po
@@ -4,16 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fte_IN.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2011-11-30 02:10+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: description.xml#dispname.dispname.description.text
msgid "Telugu spelling dictionary, and hyphenation rules"
-msgstr ""
+msgstr "Diccionariu ortográficu telugu, y regles de dixebra silábica"
diff --git a/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po b/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
index fa2c62e8a4f..dbfa4d23cfe 100644
--- a/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+instsetoo_native%2Finc_openoffice%2Fwindows%2Fmsi_languages.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-10-13 21:56+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2011-11-30 02:16+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\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: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: CustomAc.ulf#OOO_CUSTOMACTION_1.LngText.text
@@ -1882,11 +1882,11 @@ msgstr "Encaboxar"
#: Control.ulf#OOO_CONTROL_255.LngText.text
msgid "[ProductName] will be installed with the default components, including spelling dictionaries in all available languages."
-msgstr ""
+msgstr "[ProductName] s'instalará colos componentes predeterminaos, incluyendo los diccionarios ortográficos de toles llingües disponibles."
#: Control.ulf#OOO_CONTROL_256.LngText.text
msgid "Choose which program features you want installed and where they will be installed. For example here you can select additional user interface languages or deselect unwanted dictionaries."
-msgstr ""
+msgstr "Escoyer les carauterístiques del programa que se quieren instalar y ónde s'instalarán. Por casu, equí puen esbillase más llingües pa la interfaz d'usuariu o quitar los diccionarios que nun se necesiten."
#: Control.ulf#OOO_CONTROL_257.LngText.text
msgid "Choose the setup type that best suits your needs."
diff --git a/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po b/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
index 9dc2cec97c2..b664588d045 100644
--- a/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+officecfg%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FUI.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-11-14 15:24+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2011-11-30 02:20+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
@@ -10597,13 +10597,12 @@ msgid "Shee~t From File..."
msgstr "~Fueya de ficheru..."
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_AddName.Label.value.text
-#, fuzzy
msgid "~Define Name..."
-msgstr "~Definir rangu..."
+msgstr "~Definir nome..."
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_AddName.ContextLabel.value.text
msgid "~Define..."
-msgstr ""
+msgstr "~Definir..."
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_DefineName.Label.value.text
msgid "~Manage Names..."
@@ -11831,11 +11830,11 @@ msgstr "Estándar"
#: BasicIDECommands.xcu#..BasicIDECommands.UserInterface.Commands..uno_GotoLine.Label.value.text
msgid "Goto Line Number..."
-msgstr ""
+msgstr "Dir a númberu de llinia..."
#: BasicIDECommands.xcu#..BasicIDECommands.UserInterface.Commands..uno_ShowLines.Label.value.text
msgid "Display Source Line Number"
-msgstr ""
+msgstr "Amosar númberu de llinia nel códigu"
#: WriterWebWindowState.xcu#..WriterWebWindowState.UIElements.States.private_resource/toolbar/standardbar.UIName.value.text
msgctxt "WriterWebWindowState.xcu#..WriterWebWindowState.UIElements.States.private_resource/toolbar/standardbar.UIName.value.text"
diff --git a/translations/source/ast/readlicense_oo/docs/readme.po b/translations/source/ast/readlicense_oo/docs/readme.po
index 6d7bac66f7c..a195780cbfb 100644
--- a/translations/source/ast/readlicense_oo/docs/readme.po
+++ b/translations/source/ast/readlicense_oo/docs/readme.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+readlicense_oo%2Fdocs%2Freadme.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-10-13 15:50+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2011-11-30 02:24+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\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: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: readme.xrm#Welcome.Welcome.readmeitem.text
@@ -57,7 +57,7 @@ msgstr "Notes sobre la instalación"
#: readme.xrm#javaneeded.javaneeded.readmeitem.text
msgid "${PRODUCTNAME} requires a recent version of Java Runtime Environment (JRE) for full functionality. JRE is not part of the ${PRODUCTNAME} installation package, it should be installed separately."
-msgstr ""
+msgstr "${PRODUCTNAME} requier una versión nueva de Java Runtime Environment (JRE) pa funcionar de mou completu. JRE nun ye parte del paquete d'instalación de ${PRODUCTNAME}, tien d'instalase aparte."
#: readme.xrm#sdfsdfgf42r.sdfsdfgf42r.readmeitem.text
msgid "System Requirements"
diff --git a/translations/source/ast/sc/source/ui/miscdlgs.po b/translations/source/ast/sc/source/ui/miscdlgs.po
index 0b5fb1a7c53..3823f441eb3 100644
--- a/translations/source/ast/sc/source/ui/miscdlgs.po
+++ b/translations/source/ast/sc/source/ui/miscdlgs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fmiscdlgs.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-05-25 23:17+0200\n"
+"PO-Revision-Date: 2011-11-30 02:27+0200\n"
"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: instbdlg.src#RID_SCDLG_INSERT_TABLE.FL_POSITION.fixedline.text
@@ -308,7 +308,7 @@ msgstr "Protexer fueyes"
#: retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_DESC.fixedtext.text
msgid "The document you are about to export has one or more protected items with password that cannot be exported. Please re-type your password to be able to export your document."
-msgstr ""
+msgstr "El documentu que tas a piques d'esportar tien un elementu o más protexíos por contraseña que nun se pue esportar. Escribi de nuevo la contraseña pa poder esportar el documentu."
#: retypepassdlg.src#RID_SCDLG_RETYPEPASS.FL_DOCUMENT.fixedline.text
msgid "Document protection"
diff --git a/translations/source/ast/sc/source/ui/navipi.po b/translations/source/ast/sc/source/ui/navipi.po
index 5010ff354c7..3a2e2d860e7 100644
--- a/translations/source/ast/sc/source/ui/navipi.po
+++ b/translations/source/ast/sc/source/ui/navipi.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fnavipi.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-11-14 15:24+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2011-11-30 02:28+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
@@ -135,9 +135,8 @@ msgid "Range names"
msgstr "Nomes de les árees"
#: navipi.src#SCSTR_CONTENT_DBAREA.string.text
-#, fuzzy
msgid "Database ranges"
-msgstr "Árees de base de datos"
+msgstr "Rangos de la base de datos"
#: navipi.src#SCSTR_CONTENT_GRAPHIC.string.text
msgid "Graphics"
diff --git a/translations/source/ast/sc/source/ui/src.po b/translations/source/ast/sc/source/ui/src.po
index 921c8f005a8..552a91732d9 100644
--- a/translations/source/ast/sc/source/ui/src.po
+++ b/translations/source/ast/sc/source/ui/src.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fsrc.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-11-14 15:24+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2011-11-30 02:46+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr "~Desaniciar"
#: namedlg.src#RID_SCDLG_NAMES.BTN_NAME_OK.pushbutton.text
msgid "OK"
-msgstr ""
+msgstr "Aceutar"
#: namedlg.src#RID_SCDLG_NAMES.BTN_NAME_CANCEL.pushbutton.text
msgctxt "namedlg.src#RID_SCDLG_NAMES.BTN_NAME_CANCEL.pushbutton.text"
@@ -66,13 +66,12 @@ msgstr "Reducir"
#: namedlg.src#RID_SCDLG_NAMES.BTN_MORE.checkbox.text
msgid "Range Options"
-msgstr ""
+msgstr "Opciones de rangu"
#: namedlg.src#RID_SCDLG_NAMES.BTN_PRINTAREA.checkbox.text
-#, fuzzy
msgctxt "namedlg.src#RID_SCDLG_NAMES.BTN_PRINTAREA.checkbox.text"
msgid "~Print range"
-msgstr "~Estaya d'impresión"
+msgstr "Im~prentar rangu"
#: namedlg.src#RID_SCDLG_NAMES.BTN_CRITERIA.checkbox.text
#, fuzzy
@@ -81,19 +80,16 @@ msgid "~Filter"
msgstr "~Filtru"
#: namedlg.src#RID_SCDLG_NAMES.BTN_ROWHEADER.checkbox.text
-#, fuzzy
msgctxt "namedlg.src#RID_SCDLG_NAMES.BTN_ROWHEADER.checkbox.text"
msgid "Repeat ~row"
msgstr "~Repetir filera"
#: namedlg.src#RID_SCDLG_NAMES.BTN_COLHEADER.checkbox.text
-#, fuzzy
msgctxt "namedlg.src#RID_SCDLG_NAMES.BTN_COLHEADER.checkbox.text"
msgid "Repeat ~column"
msgstr "Repetir ~columna"
#: namedlg.src#RID_SCDLG_NAMES.STR_INVALIDSYMBOL.string.text
-#, fuzzy
msgctxt "namedlg.src#RID_SCDLG_NAMES.STR_INVALIDSYMBOL.string.text"
msgid "Invalid expression"
msgstr "Espresión non válida"
@@ -105,19 +101,19 @@ msgstr "Falló la modificación del intervalu de nomes"
#: namedlg.src#RID_SCDLG_NAMES.STR_ERR_NAME_EXISTS.string.text
msgctxt "namedlg.src#RID_SCDLG_NAMES.STR_ERR_NAME_EXISTS.string.text"
msgid "Invalid name. Already in use for the selected scope."
-msgstr ""
+msgstr "Nome inválidu. Yá se ta usando pal contestu seleicionáu."
#: namedlg.src#RID_SCDLG_NAMES.STR_ERR_NAME_INVALID.string.text
msgid "Invalid name. Only use letters, numbers and underscore and don't use names like cell addresses"
-msgstr ""
+msgstr "Nome inválidu. Usa namái lletres, númberos y guiones baxos y nun uses nomes como direiciones de caxella"
#: namedlg.src#RID_SCDLG_NAMES.STR_DEFAULT_INFO.string.text
msgid "Select cells in the document to update the range."
-msgstr ""
+msgstr "Esbilla caxelles del documentu p'anovar el rangu."
#: namedlg.src#RID_SCDLG_NAMES.STR_MULTI_SELECT.string.text
msgid "(multiple)"
-msgstr ""
+msgstr "(múltiple)"
#: namedlg.src#RID_SCDLG_NAMES.modelessdialog.text
msgid "Manage Names"
@@ -9003,14 +8999,12 @@ msgid "Create Names"
msgstr "Crear nomes"
#: miscdlgs.src#RID_SCDLG_NAMES_PASTE.BTN_PASTE.pushbutton.text
-#, fuzzy
msgid "Paste"
-msgstr "~Apegar"
+msgstr "Apegar"
#: miscdlgs.src#RID_SCDLG_NAMES_PASTE.BTN_PASTE_ALL.pushbutton.text
-#, fuzzy
msgid "Paste All"
-msgstr "~Pegalo too"
+msgstr "Pegalo too"
#: miscdlgs.src#RID_SCDLG_NAMES_PASTE.BTN_CLOSE.pushbutton.text
msgctxt "miscdlgs.src#RID_SCDLG_NAMES_PASTE.BTN_CLOSE.pushbutton.text"
@@ -9019,7 +9013,7 @@ msgstr "Zarrar"
#: miscdlgs.src#RID_SCDLG_NAMES_PASTE.modaldialog.text
msgid "Paste Names"
-msgstr ""
+msgstr "Pegar nomes"
#: miscdlgs.src#RID_SCDLG_CHARTCOLROW.1.checkbox.text
msgid "First ~column as label"
@@ -9683,11 +9677,11 @@ msgstr "Avisame d'esto nel futuru."
#: scstring.src#SCSTR_DDEDOC_NOT_LOADED.string.text
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
-msgstr ""
+msgstr "L'orixe DDE darréu nun se pudo anovar seique'l documentu d'orixe nun taba abiertu. Abri'l documentu d'orixe ya inténtalo otra vuelta."
#: scstring.src#SCSTR_EXTDOC_NOT_LOADED.string.text
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
-msgstr ""
+msgstr "El siguiente ficheru esternu nun se pudo cargar. Los datos enllazaos d'esti ficheru nun s'anovaron."
#: simpref.src#RID_SCDLG_SIMPLEREF.FT_ASSIGN.fixedtext.text
msgid "Area"
@@ -10041,7 +10035,6 @@ msgid "Accept"
msgstr "Aceutar"
#: toolbox.src#SCSTR_QHELP_BTNCANCEL.string.text
-#, fuzzy
msgctxt "toolbox.src#SCSTR_QHELP_BTNCANCEL.string.text"
msgid "Cancel"
msgstr "Encaboxar"
@@ -10058,11 +10051,11 @@ msgstr "Función"
#: toolbox.src#SCSTR_QHELP_EXPAND_FORMULA.string.text
msgid "Expand Formula Bar"
-msgstr ""
+msgstr "Espander la barra de fórmules"
#: toolbox.src#SCSTR_QHELP_COLLAPSE_FORMULA.string.text
msgid "Collapse Formula Bar"
-msgstr ""
+msgstr "Soverar la barra de fórmules"
#: sortdlg.src#RID_SCPAGE_SORT_FIELDS.BTN_UP1.radiobutton.text
msgctxt "sortdlg.src#RID_SCPAGE_SORT_FIELDS.BTN_UP1.radiobutton.text"
@@ -11858,7 +11851,6 @@ msgid "Select Cell"
msgstr "Seleicionar caxella"
#: globstr.src#RID_GLOBSTR.STR_NAME_INPUT_RANGE.string.text
-#, fuzzy
msgctxt "globstr.src#RID_GLOBSTR.STR_NAME_INPUT_RANGE.string.text"
msgid "Select Range"
msgstr "Seleicionar rangu"
@@ -12898,7 +12890,7 @@ msgstr "Encaboxar"
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.BTN_MORE.checkbox.text
msgid "RangeOptions"
-msgstr ""
+msgstr "OpcionesRangu"
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.FT_NAME.fixedtext.text
msgctxt "namedefdlg.src#RID_SCDLG_NAMES_DEFINE.FT_NAME.fixedtext.text"
@@ -12918,7 +12910,7 @@ msgstr "Ámbitu"
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.RB_RANGE.imagebutton.text
msgctxt "namedefdlg.src#RID_SCDLG_NAMES_DEFINE.RB_RANGE.imagebutton.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.RB_RANGE.imagebutton.quickhelptext
msgctxt "namedefdlg.src#RID_SCDLG_NAMES_DEFINE.RB_RANGE.imagebutton.quickhelptext"
@@ -12953,19 +12945,19 @@ msgstr "Espresión non válida"
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.STR_ERR_NAME_EXISTS.string.text
msgctxt "namedefdlg.src#RID_SCDLG_NAMES_DEFINE.STR_ERR_NAME_EXISTS.string.text"
msgid "Invalid name. Already in use for the selected scope."
-msgstr ""
+msgstr "Nome inválidu. Yá se ta usando nel contestu seleicionáu."
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.STR_ERR_NAME_INVALID.string.text
msgid "Invalid name. Only use letters, numbers and underscore."
-msgstr ""
+msgstr "Nome inválidu. Usa namái lletres, númberos y guión baxu."
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.STR_DEFAULT_INFO.string.text
msgid "Define the name and range or formula expression."
-msgstr ""
+msgstr "Definir nome y rangu o la espresión de la fórmula."
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.modelessdialog.text
msgid "Define Name"
-msgstr ""
+msgstr "Definir nome"
#: dbnamdlg.src#RID_SCDLG_DBNAMES.FL_NAME.fixedline.text
msgid "Na~me"
diff --git a/translations/source/ast/scp2/source/ooo.po b/translations/source/ast/scp2/source/ooo.po
index f2921d1d52f..52864dde97e 100644
--- a/translations/source/ast/scp2/source/ooo.po
+++ b/translations/source/ast/scp2/source/ooo.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fooo.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-11-14 15:24+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2011-11-30 02:59+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
@@ -284,7 +284,6 @@ msgid "Tamil"
msgstr "Tamil"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_TA.LngText.text
-#, fuzzy
msgid "Installs Tamil help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Instala l'ayuda en tamil en %PRODUCTNAME %PRODUCTVERSION"
@@ -294,7 +293,6 @@ msgid "Hindi"
msgstr "Hindi"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_HI.LngText.text
-#, fuzzy
msgid "Installs Hindi help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Instala l'ayuda n'hindí en %PRODUCTNAME %PRODUCTVERSION"
@@ -386,7 +384,6 @@ msgid "Oriya"
msgstr "Oriya"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_OR.LngText.text
-#, fuzzy
msgid "Installs Oriya help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Instala l'ayuda n'oriya en %PRODUCTNAME %PRODUCTVERSION"
@@ -396,7 +393,6 @@ msgid "Marathi"
msgstr "Marathi"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_MR.LngText.text
-#, fuzzy
msgid "Installs Marathi help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Instala l'ayuda en marathi en %PRODUCTNAME %PRODUCTVERSION"
@@ -415,7 +411,6 @@ msgid "Arabic"
msgstr "Árabe"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_AR.LngText.text
-#, fuzzy
msgid "Installs Arabic help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Instala l'ayuda n'árabe en %PRODUCTNAME %PRODUCTVERSION"
@@ -605,7 +600,6 @@ msgid "Serbian (Latin)"
msgstr "Serbiu (llatín)"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_SH.LngText.text
-#, fuzzy
msgid "Installs Serbian (Latin) help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Instala l'ayuda en serbiu (llatín) en %PRODUCTNAME %PRODUCTVERSION"
@@ -624,7 +618,6 @@ msgid "Serbian (Cyrillic)"
msgstr "Serbiu (cirílicu)"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_SR.LngText.text
-#, fuzzy
msgid "Installs Serbian (Cyrillic) help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Instala l'ayuda en serbiu (cirílicu) en %PRODUCTNAME %PRODUCTVERSION"
@@ -778,7 +771,6 @@ msgid "Gujarati"
msgstr "Guyaratí"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_GU.LngText.text
-#, fuzzy
msgid "Installs Gujarati help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Instala l'ayuda en gujarati en %PRODUCTNAME %PRODUCTVERSION"
@@ -878,7 +870,6 @@ msgid "Assamese"
msgstr "Asamés"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_AS.LngText.text
-#, fuzzy
msgid "Installs Assamese help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Instala l'ayuda n'asamés en %PRODUCTNAME %PRODUCTVERSION"
@@ -951,7 +942,6 @@ msgid "Malayalam"
msgstr "Malayalam"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_ML.LngText.text
-#, fuzzy
msgid "Installs Malayalam help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Instala l'ayuda en malayalam en %PRODUCTNAME %PRODUCTVERSION"
@@ -970,7 +960,6 @@ msgid "Sanskrit (India)"
msgstr "Sánscritu (India)"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_SA_IN.LngText.text
-#, fuzzy
msgid "Installs Sanskrit help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Instala l'ayuda en sánscritu en %PRODUCTNAME %PRODUCTVERSION"
@@ -998,7 +987,6 @@ msgid "Telugu"
msgstr "Telugu"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_TE.LngText.text
-#, fuzzy
msgid "Installs Telugu help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Instala l'ayuda en telugu en %PRODUCTNAME %PRODUCTVERSION"
@@ -1101,9 +1089,8 @@ msgid "Belarusian"
msgstr "Bielorrusu"
#: module_ooo.ulf#STR_DESC_MODULE_EXTENSION_DICTIONARY_BE.LngText.text
-#, fuzzy
msgid "Belarusian spelling dictionary"
-msgstr "Diccionariu ortográficu pal Gallegu"
+msgstr "Diccionariu ortográficu bielorrusu"
#: module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_BG.LngText.text
msgctxt "module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_BG.LngText.text"
@@ -1183,9 +1170,8 @@ msgid "Greek"
msgstr "Griegu"
#: module_ooo.ulf#STR_DESC_MODULE_EXTENSION_DICTIONARY_EL.LngText.text
-#, fuzzy
msgid "Greek spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu d'ortografía y patrones de separtación en Holandés"
+msgstr "Diccionariu ortográficu griegu, y regles de dixebra silábica"
#: module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_ES.LngText.text
msgctxt "module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_ES.LngText.text"
@@ -1221,7 +1207,7 @@ msgstr "Gaélicu escocés"
#: module_ooo.ulf#STR_DESC_MODULE_EXTENSION_DICTIONARY_GD.LngText.text
msgid "Scottish Gaelic spelling dictionary"
-msgstr ""
+msgstr "Diccionariu ortográficu en gaélicu escocés"
#: module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_GL.LngText.text
msgctxt "module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_GL.LngText.text"
@@ -1441,9 +1427,8 @@ msgid "Telugu"
msgstr "Telugu"
#: module_ooo.ulf#STR_DESC_MODULE_EXTENSION_DICTIONARY_TE.LngText.text
-#, fuzzy
msgid "Telugu spelling dictionary, and hyphenation rules"
-msgstr "Diccionariu d'ortografía y patrones de separtación en Holandés"
+msgstr "Diccionariu ortográficu telugu, y regles de dixebra silábica"
#: module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_TH.LngText.text
msgctxt "module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_TH.LngText.text"
@@ -1790,9 +1775,8 @@ msgid "Tamil"
msgstr "Tamil"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_TA.LngText.text
-#, fuzzy
msgid "Installs the Tamil user interface"
-msgstr "Instala la interface d'usuariu en Tamil"
+msgstr "Instala la interfaz d'usuariu en Tamil"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_HI.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_HI.LngText.text"
@@ -1800,9 +1784,8 @@ msgid "Hindi"
msgstr "Hindí"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_HI.LngText.text
-#, fuzzy
msgid "Installs the Hindi user interface"
-msgstr "Instala la interface d'usuariu en Hindí"
+msgstr "Instala la interfaz d'usuariu en hindí"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_ST.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_ST.LngText.text"
@@ -1855,9 +1838,8 @@ msgid "Swahili"
msgstr "Swaḥili"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_SW_TZ.LngText.text
-#, fuzzy
msgid "Installs the Swahili user interface"
-msgstr "Instala la interface d'usuariu en Swaḥili"
+msgstr "Instala la interfaz d'usuariu en suaḥili"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_LO.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_LO.LngText.text"
@@ -1901,9 +1883,8 @@ msgid "Oriya"
msgstr "Oriya"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_OR.LngText.text
-#, fuzzy
msgid "Installs the Oriya user interface"
-msgstr "Instala la interface d'usuariu n'Oriya"
+msgstr "Instala la interfaz d'usuariu n'oriya"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_MR.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_MR.LngText.text"
@@ -1911,9 +1892,8 @@ msgid "Marathi"
msgstr "Marathi"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_MR.LngText.text
-#, fuzzy
msgid "Installs the Marathi user interface"
-msgstr "Instala la interface d'usuariu en Marathi"
+msgstr "Instala la interfaz d'usuariu en marathi"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_NE.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_NE.LngText.text"
@@ -1930,9 +1910,8 @@ msgid "Arabic"
msgstr "Árabe"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_AR.LngText.text
-#, fuzzy
msgid "Installs the Arabic user interface"
-msgstr "Instala la interface d'usuariu n'Árabe"
+msgstr "Instala la interfaz d'usuariu n'árabe"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_CA.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_CA.LngText.text"
@@ -2120,9 +2099,8 @@ msgid "Serbian (Latin)"
msgstr "Serbiu (Llatín)"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_SH.LngText.text
-#, fuzzy
msgid "Installs the Serbian (Latin) user interface"
-msgstr "Instala la interface d'usuariu en Serbiu (Llatín)"
+msgstr "Instala la interfaz d'usuariu en serbiu (llatín)"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_GA.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_GA.LngText.text"
@@ -2139,9 +2117,8 @@ msgid "Serbian (Cyrillic)"
msgstr "Serbiu (Cirílicu)"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_SR.LngText.text
-#, fuzzy
msgid "Installs the Serbian (Cyrillic) user interface"
-msgstr "Instala la interface d'usuariu en Serbiu (Cirílicu)"
+msgstr "Instala la interfaz d'usuariu en serbiu (cirílicu)"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_BS.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_BS.LngText.text"
@@ -2293,9 +2270,8 @@ msgid "Gujarati"
msgstr "Gujarati"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_GU.LngText.text
-#, fuzzy
msgid "Installs the Gujarati user interface"
-msgstr "Instala la interface en Gujarati"
+msgstr "Instala la interfaz d'usuariu en gujarati"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_EN_ZA.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_EN_ZA.LngText.text"
@@ -2384,9 +2360,8 @@ msgid "Assamese"
msgstr "Asamés"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_AS.LngText.text
-#, fuzzy
msgid "Installs the Assamese user interface"
-msgstr "Instala la interface n'Asamés"
+msgstr "Instala la interfaz d'usuariu n'asamés"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_BRX.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_BRX.LngText.text"
@@ -2457,9 +2432,8 @@ msgid "Malayalam"
msgstr "Malayalam"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_ML.LngText.text
-#, fuzzy
msgid "Installs the Malayalam user interface"
-msgstr "Instala la interface en Malayalam"
+msgstr "Instala la interfaz d'usuariu en malayalam"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_MNI.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_MNI.LngText.text"
@@ -2476,9 +2450,8 @@ msgid "Sanskrit (India)"
msgstr "Sánscritu (India)"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_SA_IN.LngText.text
-#, fuzzy
msgid "Installs the Sanskrit user interface"
-msgstr "Instala la interface en Sánscritu"
+msgstr "Instala la interfaz d'usuariu en sánscritu"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_SAT.LngText.text
msgctxt "module_langpack.ulf#STR_NAME_MODULE_LANGPACK_SAT.LngText.text"
@@ -2504,9 +2477,8 @@ msgid "Telugu"
msgstr "Telugu"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_TE.LngText.text
-#, fuzzy
msgid "Installs the Telugu user interface"
-msgstr "Instala la interface en Telugu"
+msgstr "Instala la interfaz d'usuariu en telugu"
#: module_langpack.ulf#STR_NAME_MODULE_LANGPACK_LB.LngText.text
msgid "Luxembourgish"
diff --git a/translations/source/ast/scp2/source/python.po b/translations/source/ast/scp2/source/python.po
index ed69305b5e4..41950c1c155 100644
--- a/translations/source/ast/scp2/source/python.po
+++ b/translations/source/ast/scp2/source/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fpython.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-04-05 17:30+0200\n"
+"PO-Revision-Date: 2011-11-30 03:01+0200\n"
"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: module_python_mailmerge.ulf#STR_NAME_MODULE_OPTIONAL_PYTHON_MAILMERGE.LngText.text
@@ -29,4 +29,4 @@ msgstr "Python-UNO Bridge"
#: module_python.ulf#STR_DESC_MODULE_OPTIONAL_PYTHON.LngText.text
msgid "Adds the ability to automate %PRODUCTNAME with the Python scripting language. See https://wiki.documentfoundation.org/Development/PyUno for a complete documentation."
-msgstr ""
+msgstr "Amiesta la capacidá d'automatizar %PRODUCTNAME col llinguax de scripts Python. Visita https://wiki.documentfoundation.org/Development/PyUno pa ver la documentación completa."
diff --git a/translations/source/ast/starmath/source.po b/translations/source/ast/starmath/source.po
index f44fe0b8aba..acc221a5ac8 100644
--- a/translations/source/ast/starmath/source.po
+++ b/translations/source/ast/starmath/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+starmath%2Fsource.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-10-08 22:08+0200\n"
+"PO-Revision-Date: 2011-11-30 03:04+0200\n"
"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: smres.src#RID_FONTDIALOG.1.fixedtext.text
@@ -945,35 +945,35 @@ msgstr "Flecha doble hacia la drecha"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XPRECEDESY.toolboxitem.text
msgid "Precedes"
-msgstr ""
+msgstr "Precede"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XNOTPRECEDESY.toolboxitem.text
msgid "Not precedes"
-msgstr ""
+msgstr "Nun precede"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XSUCCEEDSY.toolboxitem.text
msgid "Succeeds"
-msgstr ""
+msgstr "Tien éxitu"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XNOTSUCCEEDSY.toolboxitem.text
msgid "Not succeeds"
-msgstr ""
+msgstr "Nun tien éxitu"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XPRECEDESEQUALY.toolboxitem.text
msgid "Precedes or equal to"
-msgstr ""
+msgstr "Precede o ye igual a"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XSUCCEEDSEQUALY.toolboxitem.text
msgid "Succeeds or equal to"
-msgstr ""
+msgstr "Tien éxitu o ye igual a"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XPRECEDESEQUIVY.toolboxitem.text
msgid "Precedes or equivalent to"
-msgstr ""
+msgstr "Precede o ye equivalente a"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XSUCCEEDSEQUIVY.toolboxitem.text
msgid "Succeeds or equivalent to"
-msgstr ""
+msgstr "Tien éxitu o ye equivalente a"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_C.RID_XINY.toolboxitem.text
msgid "Is In"
diff --git a/translations/source/ast/sw/source/ui/chrdlg.po b/translations/source/ast/sw/source/ui/chrdlg.po
index ff68c20dee8..5dd254a5d9d 100644
--- a/translations/source/ast/sw/source/ui/chrdlg.po
+++ b/translations/source/ast/sw/source/ui/chrdlg.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fchrdlg.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-10-13 12:37+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2011-11-30 03:07+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\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: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: swbreak.src#DLG_BREAK.RB_LINE.radiobutton.text
@@ -63,7 +63,7 @@ msgstr "[Nengún]"
#: chrdlg.src#MSG_ILLEGAL_PAGENUM.infobox.text
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
-msgstr ""
+msgstr "Los númberos de páxina nun se puen aplicar na páxina actual. Los númberos pares se puen aplicar nes páxines izquierdes, los impares en páxines dereches."
#: numpara.src#TP_NUMPARA.FL_OUTLINE_START.fixedline.text
msgid "Outline"
diff --git a/translations/source/ast/sw/source/ui/lingu.po b/translations/source/ast/sw/source/ui/lingu.po
index 7a27704531b..cd830abc489 100644
--- a/translations/source/ast/sw/source/ui/lingu.po
+++ b/translations/source/ast/sw/source/ui/lingu.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Flingu.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-04-05 17:32+0200\n"
+"PO-Revision-Date: 2011-11-30 03:08+0200\n"
"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: olmenu.src#MN_SPELL_POPUP.MN_IGNORE_WORD.menuitem.text
@@ -72,5 +72,6 @@ msgid "Ignore"
msgstr "Inorar"
#: olmenu.src#STR_EXPLANATION_LINK.string.text
+#, fuzzy
msgid "Explanations..."
-msgstr ""
+msgstr "Esplicaciones..."
diff --git a/translations/source/ast/swext/mediawiki/help.po b/translations/source/ast/swext/mediawiki/help.po
index ed0c3d5e510..a83af5e74bc 100644
--- a/translations/source/ast/swext/mediawiki/help.po
+++ b/translations/source/ast/swext/mediawiki/help.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+swext%2Fmediawiki%2Fhelp.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-11-14 15:24+0200\n"
-"Last-Translator: astur <ivarela@softastur.org>\n"
+"PO-Revision-Date: 2011-11-30 03:08+0200\n"
+"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
@@ -42,9 +42,8 @@ msgid "System Requirements"
msgstr "Requerimientos del sistema"
#: wiki.xhp#par_id9340495.help.text
-#, fuzzy
msgid "Java Runtime Environment"
-msgstr "Java Runtime Environment 1.4"
+msgstr "Java Runtime Environment"
#: wiki.xhp#par_id7387615.help.text
msgid "A Wiki account on a supported <link href=\"http://www.mediawiki.org/wiki/MediaWiki\">MediaWiki</link> server"
diff --git a/translations/source/bg/basctl/source/basicide.po b/translations/source/bg/basctl/source/basicide.po
index 58158df08a7..c29233aac3a 100644
--- a/translations/source/bg/basctl/source/basicide.po
+++ b/translations/source/bg/basctl/source/basicide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+basctl%2Fsource%2Fbasicide.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-04-19 18:28+0200\n"
+"PO-Revision-Date: 2011-12-03 11:57+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: moduldlg.src#RID_TD_ORGANIZE.RID_TC_ORGANIZE.RID_TP_MOD.pageitem.text
@@ -145,7 +145,7 @@ msgstr "Замяна на съществуващите библиотеки"
#: moduldlg.src#RID_DLG_GOTOLINE.RID_FT_LINE.fixedtext.text
msgid "~Line Number:"
-msgstr ""
+msgstr "~Номер на ред:"
#: moduldlg.src#RID_DLG_NEWLIB.RID_FT_NEWLIB.fixedtext.text
msgid "~Name:"
@@ -641,7 +641,7 @@ msgstr ""
#: basidesh.src#RID_STR_GETLINE.string.text
msgid "Goto Line"
-msgstr ""
+msgstr "Преход към ред"
#: basicprint.src#RID_PRINTDLG_STRLIST.1.itemlist.text
msgid "Print range"
diff --git a/translations/source/bg/connectivity/source/drivers/postgresql.po b/translations/source/bg/connectivity/source/drivers/postgresql.po
index cf5ce0c6542..229fbfb30a5 100644
--- a/translations/source/bg/connectivity/source/drivers/postgresql.po
+++ b/translations/source/bg/connectivity/source/drivers/postgresql.po
@@ -4,24 +4,25 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+connectivity%2Fsource%2Fdrivers%2Fpostgresql.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2011-12-03 11:59+0200\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: postgresql.xcu#.Drivers.Installed.sdbc_postgresql__.DriverTypeDisplayName.value.text
msgid "PostgreSQL"
-msgstr ""
+msgstr "PostgreSQL"
#: description.xml#dispname.dispname.description.text
msgid "PostgreSQL-SDBC Driver"
-msgstr ""
+msgstr "Драйвер за PostgreSQL-SDBC"
#: description.xml#extdesc.extdesc.description.text
msgid "A native PostgreSQL database driver for LibreOffice. It is faster, seamlessly integrated and there is no need to install and setup a JDBC or ODBC driver separately. Compatible with PostgreSQL version 8.4 and later.\n"
-msgstr ""
+msgstr "Драйвер за бази от данни PostgreSQL за LibreOffice, който е по-бърз, тясно интегриран и не изисква инсталиране и настройване на отделен ODBC или JDBC драйвер. Съвместим с PostgreSQL версия 8.4 и по-нови.\n"
diff --git a/translations/source/bg/cui/source/dialogs.po b/translations/source/bg/cui/source/dialogs.po
index f759fd78bff..d311d66fa46 100644
--- a/translations/source/bg/cui/source/dialogs.po
+++ b/translations/source/bg/cui/source/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Fdialogs.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-10-20 21:59+0200\n"
+"PO-Revision-Date: 2011-12-03 12:00+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: thesdlg.src#RID_SVXDLG_THESAURUS.FT_WORD.fixedtext.text
@@ -1295,7 +1295,7 @@ msgstr "~Език на текста"
#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.LINK_EXPLAIN.fixedtext.text
msgid "More..."
-msgstr ""
+msgstr "Повече…"
#: SpellDialog.src#RID_SVXDLG_SPELLCHECK.FT_NOTINDICT.fixedtext.text
msgid "~Not in dictionary"
diff --git a/translations/source/bg/cui/source/options.po b/translations/source/bg/cui/source/options.po
index 94a8f248bc4..39551899544 100644
--- a/translations/source/bg/cui/source/options.po
+++ b/translations/source/bg/cui/source/options.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+cui%2Fsource%2Foptions.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-11-02 12:06+0200\n"
+"PO-Revision-Date: 2011-12-03 12:00+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -1298,11 +1298,11 @@ msgstr "Съвместимост"
#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.10.itemlist.text
msgid "AutoCaption"
-msgstr ""
+msgstr "Автонадпис"
#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_EDITOPTIONS.11.itemlist.text
msgid "Mail Merge E-mail"
-msgstr ""
+msgstr "Циркулярни писма"
#: treeopt.src#RID_OFADLG_OPTIONS_TREE_PAGES.SID_SW_ONLINEOPTIONS.1.itemlist.text
msgid "%PRODUCTNAME Writer/Web"
diff --git a/translations/source/bg/desktop/source/deployment/misc.po b/translations/source/bg/desktop/source/deployment/misc.po
index 49737f88a14..80a70fe72d4 100644
--- a/translations/source/bg/desktop/source/deployment/misc.po
+++ b/translations/source/bg/desktop/source/deployment/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+desktop%2Fsource%2Fdeployment%2Fmisc.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-11-02 12:06+0200\n"
+"PO-Revision-Date: 2011-12-03 12:02+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -21,12 +21,12 @@ msgstr "Неизвестен"
#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_OOO_MIN.string.text
msgid "Extension requires at least OpenOffice.org reference version %VERSION"
-msgstr ""
+msgstr "Разширението изисква версия на OpenOffice.org, не по-ниска от %VERSION"
#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_OOO_MAX.string.text
msgid "Extension does not support OpenOffice.org reference versions greater than %VERSION"
-msgstr ""
+msgstr "Разширението не поддържа по-нови версии на OpenOffice.org от %VERSION"
#: dp_misc.src#RID_DEPLOYMENT_DEPENDENCIES_LO_MIN.string.text
msgid "Extension requires at least LibreOffice version %VERSION"
-msgstr ""
+msgstr "Разширението изисква версия на LibreOffice, не по-ниска от %VERSION"
diff --git a/translations/source/bg/dictionaries/be_BY.po b/translations/source/bg/dictionaries/be_BY.po
index a9379bc2efe..f8233e8574f 100644
--- a/translations/source/bg/dictionaries/be_BY.po
+++ b/translations/source/bg/dictionaries/be_BY.po
@@ -4,16 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fbe_BY.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2011-12-03 12:06+0200\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: description.xml#dispname.dispname.description.text
msgid "Belarusian spelling dictionary"
-msgstr ""
+msgstr "Белоруски правописен речник"
diff --git a/translations/source/bg/dictionaries/el_GR.po b/translations/source/bg/dictionaries/el_GR.po
index ea640866105..d209e205578 100644
--- a/translations/source/bg/dictionaries/el_GR.po
+++ b/translations/source/bg/dictionaries/el_GR.po
@@ -4,16 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fel_GR.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2011-12-03 12:09+0200\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: description.xml#dispname.dispname.description.text
msgid "Greek spelling dictionary, and hyphenation rules"
-msgstr ""
+msgstr "Гръцки правописен речник и правила за сричкопренасяне"
diff --git a/translations/source/bg/dictionaries/gd_GB.po b/translations/source/bg/dictionaries/gd_GB.po
index 4d46df93c14..85b0ea2e160 100644
--- a/translations/source/bg/dictionaries/gd_GB.po
+++ b/translations/source/bg/dictionaries/gd_GB.po
@@ -4,16 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fgd_GB.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2011-12-03 12:10+0200\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: description.xml#dispname.dispname.description.text
msgid "Scottish Gaelic spelling dictionary"
-msgstr ""
+msgstr "Келтски (Шотландия) правописен речник"
diff --git a/translations/source/bg/dictionaries/te_IN.po b/translations/source/bg/dictionaries/te_IN.po
index 32b25900962..44c489aaeb1 100644
--- a/translations/source/bg/dictionaries/te_IN.po
+++ b/translations/source/bg/dictionaries/te_IN.po
@@ -4,16 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fte_IN.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2011-12-03 12:12+0200\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: description.xml#dispname.dispname.description.text
msgid "Telugu spelling dictionary, and hyphenation rules"
-msgstr ""
+msgstr "Правописен речник и правила за сричкопренасяне на телугу"
diff --git a/translations/source/bg/filter/source/xsltdialog.po b/translations/source/bg/filter/source/xsltdialog.po
index 878c7453829..09881503b83 100644
--- a/translations/source/bg/filter/source/xsltdialog.po
+++ b/translations/source/bg/filter/source/xsltdialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+filter%2Fsource%2Fxsltdialog.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-11-02 12:06+0200\n"
+"PO-Revision-Date: 2011-12-03 12:13+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -270,7 +270,6 @@ msgid "Browse..."
msgstr "Преглед..."
#: xmlfiltertabpagexslt.src#RID_XML_FILTER_TABPAGE_XSLT.FT_XML_TRANSFORM_SERVICE.fixedtext.text
-#, fuzzy
msgid "XSLT Transformation Service"
msgstr "Услуга за преобразуване чрез XSLT"
diff --git a/translations/source/bg/helpcontent2/source/text/scalc.po b/translations/source/bg/helpcontent2/source/text/scalc.po
index c4a9318ff6e..1df71631a55 100644
--- a/translations/source/bg/helpcontent2/source/text/scalc.po
+++ b/translations/source/bg/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-08-28 10:44+0200\n"
+"PO-Revision-Date: 2011-12-04 11:30+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: main0112.xhp#tit.help.text
@@ -217,39 +217,39 @@ msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\">Лентата <emph>Мостра на
#: main0210.xhp#hd_id3147393.3.help.text
msgid "Full Screen"
-msgstr ""
+msgstr "Цял екран"
#: main0210.xhp#par_id460828.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#hd_id3147394.3.help.text
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Форматиране на страница\">Форматиране на страница</link>"
#: main0210.xhp#hd_id3147494.3.help.text
msgid "Margins"
-msgstr ""
+msgstr "Бели полета"
#: main0210.xhp#par_id460929.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> на диалоговия прозорец <emph>Стил за страници</emph>."
#: main0210.xhp#hd_id3245494.3.help.text
msgid "Scaling Factor"
-msgstr ""
+msgstr "Коеф. на мащабиране"
#: main0210.xhp#par_id460939.help.text
msgid "This slide defines a page scale for the printed spreadsheet. Scaling factor can be set on <emph>Sheet</emph> tab of <emph>Page Style</emph> dialog, too."
-msgstr ""
+msgstr "Този плъзгач задава мащаб на страницата в разпечатката. Коефициентът на мащабиране може да бъде зададен и в раздела <emph>Лист</emph> на диалоговия прозорец <emph>Стил за страници</emph>."
#: main0210.xhp#hd_id3147395.3.help.text
msgid "Close Preview"
-msgstr ""
+msgstr "Затваряне на мострата"
#: main0210.xhp#par_id460829.help.text
msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
-msgstr ""
+msgstr "За да затворите мострата на страница, щракнете върху бутона <emph>Затваряне на мострата</emph>."
#: main0000.xhp#tit.help.text
msgctxt "main0000.xhp#tit.help.text"
diff --git a/translations/source/bg/helpcontent2/source/text/scalc/04.po b/translations/source/bg/helpcontent2/source/text/scalc/04.po
index 2b94c15b07d..41f8a44ac5f 100644
--- a/translations/source/bg/helpcontent2/source/text/scalc/04.po
+++ b/translations/source/bg/helpcontent2/source/text/scalc/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F04.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-05-04 01:15+0200\n"
+"PO-Revision-Date: 2011-12-04 11:33+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: 01020000.xhp#tit.help.text
@@ -103,35 +103,35 @@ msgstr "Премества курсора до последната клетка
#: 01020000.xhp#hd_id4149127.92.help.text
msgid "Shift+Home"
-msgstr ""
+msgstr "Shift+Home"
#: 01020000.xhp#par_id4159205.93.help.text
msgid "Selects cells from the current cell to the first cell of the current row."
-msgstr ""
+msgstr "Избира клетките от текущата клетка до първата клетка на текущия ред."
#: 01020000.xhp#hd_id4149897.94.help.text
msgid "Shift+End"
-msgstr ""
+msgstr "Shift+End"
#: 01020000.xhp#par_id4155095.95.help.text
msgid "Selects cells from the current cell to the last cell of the current row."
-msgstr ""
+msgstr "Избира клетките от текущата клетка до последната клетка на текущия ред."
#: 01020000.xhp#hd_id5149127.92.help.text
msgid "Shift+Page Up"
-msgstr ""
+msgstr "Shift+Page Up"
#: 01020000.xhp#par_id5159205.93.help.text
msgid "Selects cells from the current cell up to one page in the current column or extends the existing selection one page up."
-msgstr ""
+msgstr "Избира клетките от текущата клетка до една страница нагоре в текущата колона или разширява текущата селекция с една страница нагоре."
#: 01020000.xhp#hd_id5149897.94.help.text
msgid "Shift+Page Down"
-msgstr ""
+msgstr "Shift+Page Down"
#: 01020000.xhp#par_id5155095.95.help.text
msgid "Selects cells from the current cell down to one page in the current column or extends the existing selection one page down."
-msgstr ""
+msgstr "Избира клетките от текущата клетка до една страница надолу в текущата колона или разширява текущата селекция с една страница надолу."
#: 01020000.xhp#hd_id3143220.101.help.text
msgctxt "01020000.xhp#hd_id3143220.101.help.text"
@@ -203,7 +203,7 @@ msgstr "В мострата на страници: преминава към с
#: 01020000.xhp#hd_id3146885.113.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Up"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Up"
#: 01020000.xhp#par_id3152976.114.help.text
msgid "Moves one screen to the left."
@@ -211,7 +211,7 @@ msgstr "Преминава с един екран наляво."
#: 01020000.xhp#hd_id3149013.115.help.text
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Down"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Page Down"
#: 01020000.xhp#par_id3150477.116.help.text
msgid "Moves one screen page to the right."
diff --git a/translations/source/bg/helpcontent2/source/text/scalc/05.po b/translations/source/bg/helpcontent2/source/text/scalc/05.po
index 2484e4fc6c6..8b479e1fdba 100644
--- a/translations/source/bg/helpcontent2/source/text/scalc/05.po
+++ b/translations/source/bg/helpcontent2/source/text/scalc/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fscalc%2F05.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-04-05 18:44+0200\n"
+"PO-Revision-Date: 2011-12-04 20:06+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: empty_cells.xhp#tit.help.text
@@ -251,11 +251,11 @@ msgstr "Невалиден аргумент"
#: 02140000.xhp#par_id3153160.11.help.text
msgid "Function argument is not valid. For example, a negative number for the SQRT() function, for this please use IMSQRT()."
-msgstr ""
+msgstr "Аргументът на функцията е невалиден. Например, функцията SQRT() не приема отрицателни числа – за тях трябва да използвате IMSQRT()."
#: 02140000.xhp#par_id3154015.12.help.text
msgid "503<br/>#NUM!"
-msgstr ""
+msgstr "503<br/>#ЧИС!"
#: 02140000.xhp#par_id3155766.13.help.text
msgid "Invalid floating point operation"
@@ -263,7 +263,7 @@ msgstr "Невалидна операция с плаваща запетая"
#: 02140000.xhp#par_id3159266.14.help.text
msgid "A calculation results in an overflow of the defined value range."
-msgstr "Деление на нула или друго изчисление, което предизвиква нарушаване на дефиниционната област на променливата."
+msgstr "Изчислението предизвиква нарушаване на дефиниционната област на променливата."
#: 02140000.xhp#par_id3149258.15.help.text
msgid "504"
@@ -405,7 +405,7 @@ msgstr "Променливата е недостъпна"
#: 02140000.xhp#par_id3146142.60.help.text
msgid "519<br/>#VALUE"
-msgstr ""
+msgstr "519<br/>#СТОЙНОСТ"
#: 02140000.xhp#par_id3155954.61.help.text
msgid "No result (#VALUE is in the cell rather than Err:519!)"
@@ -467,7 +467,7 @@ msgstr "Функцията е пропуснала целевата стойно
#: 02140000.xhp#par_id3153544.75.help.text
msgid "524<br/>#REF"
-msgstr ""
+msgstr "524<br/>#ОБР"
#: 02140000.xhp#par_id3154634.76.help.text
msgid "invalid references (instead of Err:524 cell contains #REF)"
@@ -479,7 +479,7 @@ msgstr "<emph>Компилатор:</emph> име, описващо ред ил
#: 02140000.xhp#par_id3155984.78.help.text
msgid "525<br/>#NAME?"
-msgstr ""
+msgstr "525<br/>#ИМЕ?"
#: 02140000.xhp#par_id3148428.79.help.text
msgid "invalid names (instead of Err:525 cell contains #NAME?)"
@@ -517,7 +517,7 @@ msgstr "<emph>Интерпретатор:</emph> Прекалено капсул
#: 02140000.xhp#par_id5324564.help.text
msgid "532<br/>#DIV/0!"
-msgstr ""
+msgstr "532<br/>#ДЕЛ/0!"
#: 02140000.xhp#par_id7941831.help.text
msgid "Division by zero"
diff --git a/translations/source/bg/helpcontent2/source/text/shared.po b/translations/source/bg/helpcontent2/source/text/shared.po
index 306cf22c9a0..e408c7d2eb1 100644
--- a/translations/source/bg/helpcontent2/source/text/shared.po
+++ b/translations/source/bg/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+helpcontent2%2Fsource%2Ftext%2Fshared.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-10-22 13:40+0200\n"
+"PO-Revision-Date: 2011-12-04 20:08+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: main0226.xhp#tit.help.text
@@ -1454,15 +1454,15 @@ msgstr "Помощ за %PRODUCTNAME"
#: main0108.xhp#hd_id4153881.7.help.text
msgid "License Information"
-msgstr ""
+msgstr "Лицензионна информация"
#: main0108.xhp#par_id4144510.8.help.text
msgid "<ahelp hid=\".uno:ShowLicense\">Displays the Licensing and Legal information dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ShowLicense\">Показва диалоговия прозорец Лицензионна и правна информация.</ahelp>"
#: main0108.xhp#hd_id5153881.7.help.text
msgid "%PRODUCTNAME Credits"
-msgstr ""
+msgstr "%PRODUCTNAME – благодарности"
#: main0108.xhp#par_id5144510.8.help.text
msgid "<ahelp hid=\".uno:ShowLicense\">Displays the CREDITS.odt document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>"
diff --git a/translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po b/translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 7b5e28d6f2f..615187fee50 100644
--- a/translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+instsetoo_native%2Finc_openoffice%2Fwindows%2Fmsi_languages.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-10-18 21:01+0200\n"
+"PO-Revision-Date: 2011-12-03 12:15+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: CustomAc.ulf#OOO_CUSTOMACTION_1.LngText.text
@@ -1882,11 +1882,11 @@ msgstr "Отказ"
#: Control.ulf#OOO_CONTROL_255.LngText.text
msgid "[ProductName] will be installed with the default components, including spelling dictionaries in all available languages."
-msgstr ""
+msgstr "[ProductName] ще се инсталира с подразбираните компоненти, включително правописни речници за всички налични езици."
#: Control.ulf#OOO_CONTROL_256.LngText.text
msgid "Choose which program features you want installed and where they will be installed. For example here you can select additional user interface languages or deselect unwanted dictionaries."
-msgstr ""
+msgstr "Изберете кои програмни компоненти да се инсталират и къде. Например, тук можете да посочите допълнителни езици за потребителския интерфейс или да отмените инсталирането на нежелани речници."
#: Control.ulf#OOO_CONTROL_257.LngText.text
msgid "Choose the setup type that best suits your needs."
diff --git a/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po b/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
index c0be5af091e..603b794c197 100644
--- a/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/translations/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+officecfg%2Fregistry%2Fdata%2Forg%2Fopenoffice%2FOffice%2FUI.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-11-02 12:06+0200\n"
+"PO-Revision-Date: 2011-12-03 12:16+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -10597,13 +10597,12 @@ msgid "Shee~t From File..."
msgstr "~Лист от файл..."
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_AddName.Label.value.text
-#, fuzzy
msgid "~Define Name..."
-msgstr "~Дефиниране на област..."
+msgstr "~Дефиниране на име..."
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_AddName.ContextLabel.value.text
msgid "~Define..."
-msgstr ""
+msgstr "~Дефиниране..."
#: CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_DefineName.Label.value.text
msgid "~Manage Names..."
@@ -11831,11 +11830,11 @@ msgstr "Стандартни"
#: BasicIDECommands.xcu#..BasicIDECommands.UserInterface.Commands..uno_GotoLine.Label.value.text
msgid "Goto Line Number..."
-msgstr ""
+msgstr "Преход към ред…"
#: BasicIDECommands.xcu#..BasicIDECommands.UserInterface.Commands..uno_ShowLines.Label.value.text
msgid "Display Source Line Number"
-msgstr ""
+msgstr "Видими номера на редове"
#: WriterWebWindowState.xcu#..WriterWebWindowState.UIElements.States.private_resource/toolbar/standardbar.UIName.value.text
msgctxt "WriterWebWindowState.xcu#..WriterWebWindowState.UIElements.States.private_resource/toolbar/standardbar.UIName.value.text"
diff --git a/translations/source/bg/readlicense_oo/docs/readme.po b/translations/source/bg/readlicense_oo/docs/readme.po
index d7ebe7ab836..c291ca58847 100644
--- a/translations/source/bg/readlicense_oo/docs/readme.po
+++ b/translations/source/bg/readlicense_oo/docs/readme.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+readlicense_oo%2Fdocs%2Freadme.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-10-19 20:58+0200\n"
+"PO-Revision-Date: 2011-12-03 12:18+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: readme.xrm#Welcome.Welcome.readmeitem.text
@@ -57,7 +57,7 @@ msgstr "Бележки за инсталирането"
#: readme.xrm#javaneeded.javaneeded.readmeitem.text
msgid "${PRODUCTNAME} requires a recent version of Java Runtime Environment (JRE) for full functionality. JRE is not part of the ${PRODUCTNAME} installation package, it should be installed separately."
-msgstr ""
+msgstr "${PRODUCTNAME} изисква скорошна версия на Java Runtime Environment (JRE) за пълната си функционалност. JRE не е част от инсталационния пакет на ${PRODUCTNAME} и трябва да се инсталира отделно."
#: readme.xrm#sdfsdfgf42r.sdfsdfgf42r.readmeitem.text
msgid "System Requirements"
diff --git a/translations/source/bg/reportbuilder/util.po b/translations/source/bg/reportbuilder/util.po
index bf277299c07..a28b1451563 100644
--- a/translations/source/bg/reportbuilder/util.po
+++ b/translations/source/bg/reportbuilder/util.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+reportbuilder%2Futil.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-10-20 01:30+0200\n"
+"PO-Revision-Date: 2011-12-04 10:37+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: none\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: description.xml#dispname.dispname.description.text
@@ -21,4 +21,4 @@ msgstr "Report Builder"
#: description.xml#extdesc.extdesc.description.text
msgid "Use the Report Builder to create stylish, smart-looking database reports. The flexible report editor can define group and page headers as well as group and page footers. Additionally, calculation fields are available to accomplish complex database reports.\n"
-msgstr ""
+msgstr "С Report Builder можете да създавате елегантни, професионално оформени справки за бази от данни. Гъвкавият редактор на справки позволява задаване на колонтитули на групи и страници, както и изчисляеми полета за изграждане на сложни справки.\n"
diff --git a/translations/source/bg/sc/source/ui/miscdlgs.po b/translations/source/bg/sc/source/ui/miscdlgs.po
index 5de78e36ce5..ee37ac77f84 100644
--- a/translations/source/bg/sc/source/ui/miscdlgs.po
+++ b/translations/source/bg/sc/source/ui/miscdlgs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fmiscdlgs.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-05-03 22:07+0200\n"
+"PO-Revision-Date: 2011-12-03 12:20+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: instbdlg.src#RID_SCDLG_INSERT_TABLE.FL_POSITION.fixedline.text
@@ -308,7 +308,7 @@ msgstr "Защитаване на лист"
#: retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_DESC.fixedtext.text
msgid "The document you are about to export has one or more protected items with password that cannot be exported. Please re-type your password to be able to export your document."
-msgstr ""
+msgstr "Експортираният документ съдържа елементи, защитени с парола, които не могат да бъдат експортирани. Моля, въведете отново паролата, за да експортирате документа."
#: retypepassdlg.src#RID_SCDLG_RETYPEPASS.FL_DOCUMENT.fixedline.text
msgid "Document protection"
diff --git a/translations/source/bg/sc/source/ui/navipi.po b/translations/source/bg/sc/source/ui/navipi.po
index 3fa7a78ccbf..0d1374c1e23 100644
--- a/translations/source/bg/sc/source/ui/navipi.po
+++ b/translations/source/bg/sc/source/ui/navipi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fnavipi.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-11-02 12:06+0200\n"
+"PO-Revision-Date: 2011-12-03 12:20+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -135,7 +135,6 @@ msgid "Range names"
msgstr "Имена на области"
#: navipi.src#SCSTR_CONTENT_DBAREA.string.text
-#, fuzzy
msgid "Database ranges"
msgstr "Области от БД"
diff --git a/translations/source/bg/sc/source/ui/src.po b/translations/source/bg/sc/source/ui/src.po
index b6bcc711bd8..2ccfc8346ca 100644
--- a/translations/source/bg/sc/source/ui/src.po
+++ b/translations/source/bg/sc/source/ui/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sc%2Fsource%2Fui%2Fsrc.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-11-02 12:06+0200\n"
+"PO-Revision-Date: 2011-12-03 12:35+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -27,7 +27,7 @@ msgstr "~Изтриване"
#: namedlg.src#RID_SCDLG_NAMES.BTN_NAME_OK.pushbutton.text
msgid "OK"
-msgstr ""
+msgstr "OK"
#: namedlg.src#RID_SCDLG_NAMES.BTN_NAME_CANCEL.pushbutton.text
msgctxt "namedlg.src#RID_SCDLG_NAMES.BTN_NAME_CANCEL.pushbutton.text"
@@ -66,34 +66,29 @@ msgstr "Свиване"
#: namedlg.src#RID_SCDLG_NAMES.BTN_MORE.checkbox.text
msgid "Range Options"
-msgstr ""
+msgstr "Настройки за област"
#: namedlg.src#RID_SCDLG_NAMES.BTN_PRINTAREA.checkbox.text
-#, fuzzy
msgctxt "namedlg.src#RID_SCDLG_NAMES.BTN_PRINTAREA.checkbox.text"
msgid "~Print range"
msgstr "~Област за печат"
#: namedlg.src#RID_SCDLG_NAMES.BTN_CRITERIA.checkbox.text
-#, fuzzy
msgctxt "namedlg.src#RID_SCDLG_NAMES.BTN_CRITERIA.checkbox.text"
msgid "~Filter"
msgstr "~Филтър"
#: namedlg.src#RID_SCDLG_NAMES.BTN_ROWHEADER.checkbox.text
-#, fuzzy
msgctxt "namedlg.src#RID_SCDLG_NAMES.BTN_ROWHEADER.checkbox.text"
msgid "Repeat ~row"
msgstr "Повтаряне на ~ред"
#: namedlg.src#RID_SCDLG_NAMES.BTN_COLHEADER.checkbox.text
-#, fuzzy
msgctxt "namedlg.src#RID_SCDLG_NAMES.BTN_COLHEADER.checkbox.text"
msgid "Repeat ~column"
msgstr "Повтаряне на ~колона"
#: namedlg.src#RID_SCDLG_NAMES.STR_INVALIDSYMBOL.string.text
-#, fuzzy
msgctxt "namedlg.src#RID_SCDLG_NAMES.STR_INVALIDSYMBOL.string.text"
msgid "Invalid expression"
msgstr "Невалиден израз"
@@ -105,19 +100,19 @@ msgstr "Не бе възможно да се промени името на об
#: namedlg.src#RID_SCDLG_NAMES.STR_ERR_NAME_EXISTS.string.text
msgctxt "namedlg.src#RID_SCDLG_NAMES.STR_ERR_NAME_EXISTS.string.text"
msgid "Invalid name. Already in use for the selected scope."
-msgstr ""
+msgstr "Невалидно име. Вече е използвано в избрания обхват."
#: namedlg.src#RID_SCDLG_NAMES.STR_ERR_NAME_INVALID.string.text
msgid "Invalid name. Only use letters, numbers and underscore and don't use names like cell addresses"
-msgstr ""
+msgstr "Невалидно име. Използвайте само букви, цифри и знак долна черта и не използвайте адреси на клетки."
#: namedlg.src#RID_SCDLG_NAMES.STR_DEFAULT_INFO.string.text
msgid "Select cells in the document to update the range."
-msgstr ""
+msgstr "Изберете клетки от документа за обновяване на областта."
#: namedlg.src#RID_SCDLG_NAMES.STR_MULTI_SELECT.string.text
msgid "(multiple)"
-msgstr ""
+msgstr "(няколко)"
#: namedlg.src#RID_SCDLG_NAMES.modelessdialog.text
msgid "Manage Names"
@@ -9002,14 +8997,12 @@ msgid "Create Names"
msgstr "Създаване на имена"
#: miscdlgs.src#RID_SCDLG_NAMES_PASTE.BTN_PASTE.pushbutton.text
-#, fuzzy
msgid "Paste"
-msgstr "Поста~вяне"
+msgstr "Поставяне"
#: miscdlgs.src#RID_SCDLG_NAMES_PASTE.BTN_PASTE_ALL.pushbutton.text
-#, fuzzy
msgid "Paste All"
-msgstr "Поста~вяне - всичко"
+msgstr "Поставяне - всичко"
#: miscdlgs.src#RID_SCDLG_NAMES_PASTE.BTN_CLOSE.pushbutton.text
msgctxt "miscdlgs.src#RID_SCDLG_NAMES_PASTE.BTN_CLOSE.pushbutton.text"
@@ -9018,7 +9011,7 @@ msgstr "Затваряне"
#: miscdlgs.src#RID_SCDLG_NAMES_PASTE.modaldialog.text
msgid "Paste Names"
-msgstr ""
+msgstr "Поставяне на имена"
#: miscdlgs.src#RID_SCDLG_CHARTCOLROW.1.checkbox.text
msgid "First ~column as label"
@@ -9682,11 +9675,11 @@ msgstr "В бъдеще да се предупреждава за това."
#: scstring.src#SCSTR_DDEDOC_NOT_LOADED.string.text
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
-msgstr ""
+msgstr "Не бе възможно да се обнови следният DDE източник, вероятно защото изходният документ не е отворен. Моля отворете изходния документ и опитайте отново."
#: scstring.src#SCSTR_EXTDOC_NOT_LOADED.string.text
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
-msgstr ""
+msgstr "Не бе възможно да се зареди следният външен файл. Свързаните данни от този файл не бяха обновени."
#: simpref.src#RID_SCDLG_SIMPLEREF.FT_ASSIGN.fixedtext.text
msgid "Area"
@@ -10040,7 +10033,6 @@ msgid "Accept"
msgstr "Приемане"
#: toolbox.src#SCSTR_QHELP_BTNCANCEL.string.text
-#, fuzzy
msgctxt "toolbox.src#SCSTR_QHELP_BTNCANCEL.string.text"
msgid "Cancel"
msgstr "Отказ"
@@ -10057,11 +10049,11 @@ msgstr "Функция"
#: toolbox.src#SCSTR_QHELP_EXPAND_FORMULA.string.text
msgid "Expand Formula Bar"
-msgstr ""
+msgstr "Разгъване на лентата за формули"
#: toolbox.src#SCSTR_QHELP_COLLAPSE_FORMULA.string.text
msgid "Collapse Formula Bar"
-msgstr ""
+msgstr "Свиване на лентата за формули"
#: sortdlg.src#RID_SCPAGE_SORT_FIELDS.BTN_UP1.radiobutton.text
msgctxt "sortdlg.src#RID_SCPAGE_SORT_FIELDS.BTN_UP1.radiobutton.text"
@@ -11856,7 +11848,6 @@ msgid "Select Cell"
msgstr "Избор на клетка"
#: globstr.src#RID_GLOBSTR.STR_NAME_INPUT_RANGE.string.text
-#, fuzzy
msgctxt "globstr.src#RID_GLOBSTR.STR_NAME_INPUT_RANGE.string.text"
msgid "Select Range"
msgstr "Избор на област"
@@ -12896,7 +12887,7 @@ msgstr "Отказ"
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.BTN_MORE.checkbox.text
msgid "RangeOptions"
-msgstr ""
+msgstr "Настройки за област"
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.FT_NAME.fixedtext.text
msgctxt "namedefdlg.src#RID_SCDLG_NAMES_DEFINE.FT_NAME.fixedtext.text"
@@ -12916,7 +12907,7 @@ msgstr "Обхват"
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.RB_RANGE.imagebutton.text
msgctxt "namedefdlg.src#RID_SCDLG_NAMES_DEFINE.RB_RANGE.imagebutton.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.RB_RANGE.imagebutton.quickhelptext
msgctxt "namedefdlg.src#RID_SCDLG_NAMES_DEFINE.RB_RANGE.imagebutton.quickhelptext"
@@ -12951,19 +12942,19 @@ msgstr "Невалиден израз"
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.STR_ERR_NAME_EXISTS.string.text
msgctxt "namedefdlg.src#RID_SCDLG_NAMES_DEFINE.STR_ERR_NAME_EXISTS.string.text"
msgid "Invalid name. Already in use for the selected scope."
-msgstr ""
+msgstr "Невалидно име. Вече е използвано в избрания обхват."
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.STR_ERR_NAME_INVALID.string.text
msgid "Invalid name. Only use letters, numbers and underscore."
-msgstr ""
+msgstr "Невалидно име. Използвайте само букви, цифри и знак долна черта."
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.STR_DEFAULT_INFO.string.text
msgid "Define the name and range or formula expression."
-msgstr ""
+msgstr "Задайте името и областта или израза."
#: namedefdlg.src#RID_SCDLG_NAMES_DEFINE.modelessdialog.text
msgid "Define Name"
-msgstr ""
+msgstr "Дефиниране на име"
#: dbnamdlg.src#RID_SCDLG_DBNAMES.FL_NAME.fixedline.text
msgid "Na~me"
diff --git a/translations/source/bg/scp2/source/ooo.po b/translations/source/bg/scp2/source/ooo.po
index 6c18c676994..51ca2064e3f 100644
--- a/translations/source/bg/scp2/source/ooo.po
+++ b/translations/source/bg/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fooo.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-11-02 12:06+0200\n"
+"PO-Revision-Date: 2011-12-03 12:39+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -284,7 +284,6 @@ msgid "Tamil"
msgstr "Тамилски"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_TA.LngText.text
-#, fuzzy
msgid "Installs Tamil help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на тамилски в %PRODUCTNAME %PRODUCTVERSION"
@@ -294,7 +293,6 @@ msgid "Hindi"
msgstr "Хинди"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_HI.LngText.text
-#, fuzzy
msgid "Installs Hindi help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на хинди в %PRODUCTNAME %PRODUCTVERSION"
@@ -349,7 +347,6 @@ msgid "Swahili"
msgstr "Суахили"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_SW_TZ.LngText.text
-#, fuzzy
msgid "Installs Swahili help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на суахили в %PRODUCTNAME %PRODUCTVERSION"
@@ -386,7 +383,6 @@ msgid "Oriya"
msgstr "Ория"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_OR.LngText.text
-#, fuzzy
msgid "Installs Oriya help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на ория в %PRODUCTNAME %PRODUCTVERSION"
@@ -396,7 +392,6 @@ msgid "Marathi"
msgstr "Марати"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_MR.LngText.text
-#, fuzzy
msgid "Installs Marathi help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на марати в %PRODUCTNAME %PRODUCTVERSION"
@@ -415,7 +410,6 @@ msgid "Arabic"
msgstr "Арабски"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_AR.LngText.text
-#, fuzzy
msgid "Installs Arabic help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на арабски в %PRODUCTNAME %PRODUCTVERSION"
@@ -605,7 +599,6 @@ msgid "Serbian (Latin)"
msgstr "Сръбски (латиница)"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_SH.LngText.text
-#, fuzzy
msgid "Installs Serbian (Latin) help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на сръбски (латиница) в %PRODUCTNAME %PRODUCTVERSION"
@@ -624,7 +617,6 @@ msgid "Serbian (Cyrillic)"
msgstr "Сръбски (кирилица)"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_SR.LngText.text
-#, fuzzy
msgid "Installs Serbian (Cyrillic) help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на сръбски (кирилица) в %PRODUCTNAME %PRODUCTVERSION"
@@ -778,7 +770,6 @@ msgid "Gujarati"
msgstr "Гуджарати"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_GU.LngText.text
-#, fuzzy
msgid "Installs Gujarati help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на гуджарати в %PRODUCTNAME %PRODUCTVERSION"
@@ -878,7 +869,6 @@ msgid "Assamese"
msgstr "Асамски"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_AS.LngText.text
-#, fuzzy
msgid "Installs Assamese help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на асамски в %PRODUCTNAME %PRODUCTVERSION"
@@ -951,7 +941,6 @@ msgid "Malayalam"
msgstr "Малаялам"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_ML.LngText.text
-#, fuzzy
msgid "Installs Malayalam help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на малаялам в %PRODUCTNAME %PRODUCTVERSION"
@@ -970,7 +959,6 @@ msgid "Sanskrit (India)"
msgstr "Санскритски (Индия)"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_SA_IN.LngText.text
-#, fuzzy
msgid "Installs Sanskrit help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на санскритски в %PRODUCTNAME %PRODUCTVERSION"
@@ -998,7 +986,6 @@ msgid "Telugu"
msgstr "Телугу"
#: module_helppack.ulf#STR_DESC_MODULE_HELPPACK_TE.LngText.text
-#, fuzzy
msgid "Installs Telugu help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Инсталира помощ на телугу в %PRODUCTNAME %PRODUCTVERSION"
@@ -1101,9 +1088,8 @@ msgid "Belarusian"
msgstr "Беларуски"
#: module_ooo.ulf#STR_DESC_MODULE_EXTENSION_DICTIONARY_BE.LngText.text
-#, fuzzy
msgid "Belarusian spelling dictionary"
-msgstr "Галисийски правописен речник"
+msgstr "Белоруски правописен речник"
#: module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_BG.LngText.text
msgctxt "module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_BG.LngText.text"
@@ -1183,9 +1169,8 @@ msgid "Greek"
msgstr "Гръцки"
#: module_ooo.ulf#STR_DESC_MODULE_EXTENSION_DICTIONARY_EL.LngText.text
-#, fuzzy
msgid "Greek spelling dictionary, and hyphenation rules"
-msgstr "Холандски правописен речник и правила за сричкопренасяне"
+msgstr "Гръцки правописен речник и правила за сричкопренасяне"
#: module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_ES.LngText.text
msgctxt "module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_ES.LngText.text"
@@ -1221,7 +1206,7 @@ msgstr "Шотландски келтски"
#: module_ooo.ulf#STR_DESC_MODULE_EXTENSION_DICTIONARY_GD.LngText.text
msgid "Scottish Gaelic spelling dictionary"
-msgstr ""
+msgstr "Келтски (Шотландия) правописен речник"
#: module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_GL.LngText.text
msgctxt "module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_GL.LngText.text"
@@ -1441,9 +1426,8 @@ msgid "Telugu"
msgstr "Телугу"
#: module_ooo.ulf#STR_DESC_MODULE_EXTENSION_DICTIONARY_TE.LngText.text
-#, fuzzy
msgid "Telugu spelling dictionary, and hyphenation rules"
-msgstr "Холандски правописен речник и правила за сричкопренасяне"
+msgstr "Правописен речник и правила за сричкопренасяне на телугу"
#: module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_TH.LngText.text
msgctxt "module_ooo.ulf#STR_NAME_MODULE_EXTENSION_DICTIONARY_TH.LngText.text"
@@ -1790,7 +1774,6 @@ msgid "Tamil"
msgstr "Тамилски"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_TA.LngText.text
-#, fuzzy
msgid "Installs the Tamil user interface"
msgstr "Инсталира потребителски интерфейс на тамилски"
@@ -1800,7 +1783,6 @@ msgid "Hindi"
msgstr "Хинди"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_HI.LngText.text
-#, fuzzy
msgid "Installs the Hindi user interface"
msgstr "Инсталира потребителски интерфейс на хинди"
@@ -1855,7 +1837,6 @@ msgid "Swahili"
msgstr "Суахили"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_SW_TZ.LngText.text
-#, fuzzy
msgid "Installs the Swahili user interface"
msgstr "Инсталира потребителски интерфейс на суахили"
@@ -1901,7 +1882,6 @@ msgid "Oriya"
msgstr "Ория"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_OR.LngText.text
-#, fuzzy
msgid "Installs the Oriya user interface"
msgstr "Инсталира потребителски интерфейс на ория"
@@ -1911,7 +1891,6 @@ msgid "Marathi"
msgstr "Маратхи"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_MR.LngText.text
-#, fuzzy
msgid "Installs the Marathi user interface"
msgstr "Инсталира потребителски интерфейс на маратхи"
@@ -1930,7 +1909,6 @@ msgid "Arabic"
msgstr "Арабски"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_AR.LngText.text
-#, fuzzy
msgid "Installs the Arabic user interface"
msgstr "Инсталира потребителски интерфейс на арабски"
@@ -2120,7 +2098,6 @@ msgid "Serbian (Latin)"
msgstr "Сръбски (латиница)"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_SH.LngText.text
-#, fuzzy
msgid "Installs the Serbian (Latin) user interface"
msgstr "Инсталира потребителски интерфейс на сръбски (латиница)"
@@ -2139,7 +2116,6 @@ msgid "Serbian (Cyrillic)"
msgstr "Сръбски (кирилица)"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_SR.LngText.text
-#, fuzzy
msgid "Installs the Serbian (Cyrillic) user interface"
msgstr "Инсталира потребителски интерфейс на сръбски (кирилица)"
@@ -2293,7 +2269,6 @@ msgid "Gujarati"
msgstr "Гуджарати"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_GU.LngText.text
-#, fuzzy
msgid "Installs the Gujarati user interface"
msgstr "Инсталира потребителски интерфейс на гуджарати"
@@ -2384,7 +2359,6 @@ msgid "Assamese"
msgstr "Асамски"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_AS.LngText.text
-#, fuzzy
msgid "Installs the Assamese user interface"
msgstr "Инсталира потребителски интерфейс на асамски"
@@ -2457,7 +2431,6 @@ msgid "Malayalam"
msgstr "Малаялам"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_ML.LngText.text
-#, fuzzy
msgid "Installs the Malayalam user interface"
msgstr "Инсталира потребителски интерфейс на малаялам"
@@ -2476,7 +2449,6 @@ msgid "Sanskrit (India)"
msgstr "Санскритски (Индия)"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_SA_IN.LngText.text
-#, fuzzy
msgid "Installs the Sanskrit user interface"
msgstr "Инсталира потребителски интерфейс на санскритски"
@@ -2504,7 +2476,6 @@ msgid "Telugu"
msgstr "Телугу"
#: module_langpack.ulf#STR_DESC_MODULE_LANGPACK_TE.LngText.text
-#, fuzzy
msgid "Installs the Telugu user interface"
msgstr "Инсталира потребителски интерфейс на телугу"
diff --git a/translations/source/bg/scp2/source/python.po b/translations/source/bg/scp2/source/python.po
index b974dcc4ce5..1c5b8140851 100644
--- a/translations/source/bg/scp2/source/python.po
+++ b/translations/source/bg/scp2/source/python.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scp2%2Fsource%2Fpython.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-04-05 18:59+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2011-12-03 12:43+0200\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: module_python_mailmerge.ulf#STR_NAME_MODULE_OPTIONAL_PYTHON_MAILMERGE.LngText.text
@@ -29,4 +29,4 @@ msgstr "Мост Python-UNO"
#: module_python.ulf#STR_DESC_MODULE_OPTIONAL_PYTHON.LngText.text
msgid "Adds the ability to automate %PRODUCTNAME with the Python scripting language. See https://wiki.documentfoundation.org/Development/PyUno for a complete documentation."
-msgstr ""
+msgstr "Добавя възможност за автоматизиране на %PRODUCTNAME чрез скриптовия език Python. За пълна документация вижте https://wiki.documentfoundation.org/Development/PyUno."
diff --git a/translations/source/bg/scripting/source/pyprov.po b/translations/source/bg/scripting/source/pyprov.po
index b21d520f455..c232e3f4209 100644
--- a/translations/source/bg/scripting/source/pyprov.po
+++ b/translations/source/bg/scripting/source/pyprov.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+scripting%2Fsource%2Fpyprov.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-10-18 01:56+0200\n"
+"PO-Revision-Date: 2011-12-03 12:44+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: none\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: description.xml#dispname.dispname.description.text
@@ -21,4 +21,4 @@ msgstr "Доставчик на скриптове за Python"
#: description.xml#extdesc.extdesc.description.text
msgid "Add support for Python via the Scripting Framework to enable Python scripts in the user and share directories of a LibreOffice installation, and also in loaded documents.\n"
-msgstr ""
+msgstr "Добавя поддръжка за Python през инфраструктурата за скриптиране, което позволява скриптове на Python в директориите user и share от инсталацията на LIbreOffice и в заредени документи.\n"
diff --git a/translations/source/bg/starmath/source.po b/translations/source/bg/starmath/source.po
index 50d320ae84c..bb7d21ae99a 100644
--- a/translations/source/bg/starmath/source.po
+++ b/translations/source/bg/starmath/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+starmath%2Fsource.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-10-18 01:58+0200\n"
+"PO-Revision-Date: 2011-12-03 12:46+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: smres.src#RID_FONTDIALOG.1.fixedtext.text
@@ -945,35 +945,35 @@ msgstr "Двойна стрелка надясно"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XPRECEDESY.toolboxitem.text
msgid "Precedes"
-msgstr ""
+msgstr "Предхожда"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XNOTPRECEDESY.toolboxitem.text
msgid "Not precedes"
-msgstr ""
+msgstr "Не предхожда"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XSUCCEEDSY.toolboxitem.text
msgid "Succeeds"
-msgstr ""
+msgstr "Следва"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XNOTSUCCEEDSY.toolboxitem.text
msgid "Not succeeds"
-msgstr ""
+msgstr "Не следва"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XPRECEDESEQUALY.toolboxitem.text
msgid "Precedes or equal to"
-msgstr ""
+msgstr "Предхожда или е равно на"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XSUCCEEDSEQUALY.toolboxitem.text
msgid "Succeeds or equal to"
-msgstr ""
+msgstr "Следва или е равно на"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XPRECEDESEQUIVY.toolboxitem.text
msgid "Precedes or equivalent to"
-msgstr ""
+msgstr "Предхожда или е еквивалентно на"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_B.RID_XSUCCEEDSEQUIVY.toolboxitem.text
msgid "Succeeds or equivalent to"
-msgstr ""
+msgstr "Следва или е еквивалентно на"
#: toolbox.src#RID_TOOLBOXWINDOW.TOOLBOX_CAT_C.RID_XINY.toolboxitem.text
msgid "Is In"
diff --git a/translations/source/bg/sw/source/ui/app.po b/translations/source/bg/sw/source/ui/app.po
index 2fb3d373895..1bb2f01c551 100644
--- a/translations/source/bg/sw/source/ui/app.po
+++ b/translations/source/bg/sw/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fapp.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-10-20 21:10+0200\n"
+"PO-Revision-Date: 2011-12-03 12:47+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: mn.src#MN_TXT.FN_FORMAT_PAGE_DLG.menuitem.text
@@ -393,27 +393,27 @@ msgstr "~Обтичане"
#: mn.src#MN_AT_FRAME.FN_TOOL_ANCHOR_FRAME.menuitem.text
msgid "To ~Frame"
-msgstr ""
+msgstr "Към ~рамка"
#: mn.src#MN_ANCHOR.FN_TOOL_ANCHOR.FN_TOOL_ANCHOR_PAGE.menuitem.text
msgid "To P~age"
-msgstr ""
+msgstr "Към ~страница"
#: mn.src#MN_ANCHOR.FN_TOOL_ANCHOR.FN_TOOL_ANCHOR_PARAGRAPH.menuitem.text
msgid "To ~Paragraph"
-msgstr ""
+msgstr "Към ~абзац"
#: mn.src#MN_ANCHOR.FN_TOOL_ANCHOR.FN_TOOL_ANCHOR_AT_CHAR.menuitem.text
msgid "To ~Character"
-msgstr ""
+msgstr "Към ~знак"
#: mn.src#MN_ANCHOR.FN_TOOL_ANCHOR.FN_TOOL_ANCHOR_CHAR.menuitem.text
msgid "As C~haracter"
-msgstr ""
+msgstr "Като з~нак"
#: mn.src#MN_ANCHOR.FN_TOOL_ANCHOR.menuitem.text
msgid "An~chor"
-msgstr ""
+msgstr "~Котва"
#: mn.src#MN_DRAWFORM_POPUPMENU.string.text
msgid "Control"
diff --git a/translations/source/bg/sw/source/ui/chrdlg.po b/translations/source/bg/sw/source/ui/chrdlg.po
index 14189319636..63c8ff47d3c 100644
--- a/translations/source/bg/sw/source/ui/chrdlg.po
+++ b/translations/source/bg/sw/source/ui/chrdlg.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fchrdlg.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-04-05 19:00+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2011-12-03 12:48+0200\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: swbreak.src#DLG_BREAK.RB_LINE.radiobutton.text
@@ -63,7 +63,7 @@ msgstr "[Няма]"
#: chrdlg.src#MSG_ILLEGAL_PAGENUM.infobox.text
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
-msgstr ""
+msgstr "Не е възможно да се постави номер на текущата страница. Четни номера могат да се използват само на леви страници, а нечетни – само на десни страници."
#: numpara.src#TP_NUMPARA.FL_OUTLINE_START.fixedline.text
msgid "Outline"
diff --git a/translations/source/bg/sw/source/ui/dialog.po b/translations/source/bg/sw/source/ui/dialog.po
index 46d98670f35..b427eda4f36 100644
--- a/translations/source/bg/sw/source/ui/dialog.po
+++ b/translations/source/bg/sw/source/ui/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fdialog.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-05-04 00:10+0200\n"
+"PO-Revision-Date: 2011-12-03 12:48+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: ascfldlg.src#DLG_ASCII_FILTER.FL_1.fixedline.text
@@ -96,7 +96,7 @@ msgstr "Знаци без интервалите:"
#: wordcountdialog.src#DLG_WORDCOUNT.modelessdialog.text
msgid "Word Count"
-msgstr ""
+msgstr "Брой на думите"
#: regionsw.src#FT_SUBREG_TEXT.#define.text
msgid "~Section"
diff --git a/translations/source/bg/sw/source/ui/lingu.po b/translations/source/bg/sw/source/ui/lingu.po
index 8b88d296c54..5865e2b67f8 100644
--- a/translations/source/bg/sw/source/ui/lingu.po
+++ b/translations/source/bg/sw/source/ui/lingu.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Flingu.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-04-05 19:00+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2011-12-03 12:48+0200\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: olmenu.src#MN_SPELL_POPUP.MN_IGNORE_WORD.menuitem.text
@@ -73,4 +73,4 @@ msgstr "Игнориране"
#: olmenu.src#STR_EXPLANATION_LINK.string.text
msgid "Explanations..."
-msgstr ""
+msgstr "Пояснения..."
diff --git a/translations/source/bg/sw/source/ui/ribbar.po b/translations/source/bg/sw/source/ui/ribbar.po
index 5d7b1af596a..66bd6cf61c9 100644
--- a/translations/source/bg/sw/source/ui/ribbar.po
+++ b/translations/source/bg/sw/source/ui/ribbar.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Fribbar.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-04-05 19:00+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2011-12-03 12:48+0200\n"
+"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: Pootle 2.1.6\n"
"X-Accelerator-Marker: ~\n"
#: workctrl.src#RID_INSERT_FIELD_CTRL.FN_INSERT_FLD_DATE.menuitem.text
@@ -421,20 +421,20 @@ msgstr "Прилагане"
#: tbxanchr.src#MN_ANCHOR_POPUP.FN_TOOL_ANCHOR_PAGE.menuitem.text
msgid "To Page"
-msgstr ""
+msgstr "Към страница"
#: tbxanchr.src#MN_ANCHOR_POPUP.FN_TOOL_ANCHOR_PARAGRAPH.menuitem.text
msgid "To Paragraph"
-msgstr ""
+msgstr "Към абзац"
#: tbxanchr.src#MN_ANCHOR_POPUP.FN_TOOL_ANCHOR_AT_CHAR.menuitem.text
msgid "To Character"
-msgstr ""
+msgstr "Към знак"
#: tbxanchr.src#MN_ANCHOR_POPUP.FN_TOOL_ANCHOR_CHAR.menuitem.text
msgid "As Character"
-msgstr ""
+msgstr "Като знак"
#: tbxanchr.src#MN_ANCHOR_POPUP.FN_TOOL_ANCHOR_FRAME.menuitem.text
msgid "To Frame"
-msgstr ""
+msgstr "Към рамка"
diff --git a/translations/source/bg/sw/source/ui/table.po b/translations/source/bg/sw/source/ui/table.po
index ba069d796ff..545435102f5 100644
--- a/translations/source/bg/sw/source/ui/table.po
+++ b/translations/source/bg/sw/source/ui/table.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+sw%2Fsource%2Fui%2Ftable.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-11-02 12:06+0200\n"
+"PO-Revision-Date: 2011-12-03 12:49+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -382,7 +382,7 @@ msgstr "Отляво надясно"
#: tabledlg.src#TP_FORMAT_TABLE.LB_TEXTORIENTATION.2.stringlist.text
msgid "Right-to-left"
-msgstr ""
+msgstr "Отдясно наляво"
#: tabledlg.src#TP_FORMAT_TABLE.LB_TEXTORIENTATION.3.stringlist.text
msgctxt "tabledlg.src#TP_FORMAT_TABLE.LB_TEXTORIENTATION.3.stringlist.text"
@@ -456,15 +456,15 @@ msgstr "Първите %POSITION_OF_CONTROL реда"
#: tabledlg.src#TP_TABLE_TEXTFLOW.FT_TEXTORIENTATION.fixedtext.text
msgid "Text ~orientation"
-msgstr ""
+msgstr "~Ориентация на текста"
#: tabledlg.src#TP_TABLE_TEXTFLOW.LB_TEXTORIENTATION.1.stringlist.text
msgid "horizontal"
-msgstr ""
+msgstr "хоризонтална"
#: tabledlg.src#TP_TABLE_TEXTFLOW.LB_TEXTORIENTATION.2.stringlist.text
msgid "vertical"
-msgstr ""
+msgstr "вертикална"
#: tabledlg.src#TP_TABLE_TEXTFLOW.LB_TEXTORIENTATION.3.stringlist.text
msgctxt "tabledlg.src#TP_TABLE_TEXTFLOW.LB_TEXTORIENTATION.3.stringlist.text"
diff --git a/translations/source/bg/swext/mediawiki/help.po b/translations/source/bg/swext/mediawiki/help.po
index 7622057efe0..78353afc41d 100644
--- a/translations/source/bg/swext/mediawiki/help.po
+++ b/translations/source/bg/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+swext%2Fmediawiki%2Fhelp.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:03+0200\n"
-"PO-Revision-Date: 2011-11-02 12:06+0200\n"
+"PO-Revision-Date: 2011-12-03 13:09+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -42,9 +42,8 @@ msgid "System Requirements"
msgstr "Системни изисквания:"
#: wiki.xhp#par_id9340495.help.text
-#, fuzzy
msgid "Java Runtime Environment"
-msgstr "Java Runtime Environment 1.4"
+msgstr "Java Runtime Environment"
#: wiki.xhp#par_id7387615.help.text
msgid "A Wiki account on a supported <link href=\"http://www.mediawiki.org/wiki/MediaWiki\">MediaWiki</link> server"
@@ -56,7 +55,7 @@ msgstr "Инсталиране на Wiki Publisher"
#: wiki.xhp#par_id4277169.help.text
msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Java</item>. Ensure that \"Use a Java runtime environment\" is marked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE 1.4 or later and restart %PRODUCTNAME."
-msgstr ""
+msgstr "Преди да използвате Wiki Publisher, уверете се, че в %PRODUCTNAME е зададена среда за изпълнение на Java (JRE). За да проверите състоянието на JRE, изберете <item type=\"menuitem\">Инструменти - Настройки - %PRODUCTNAME - Java</item>. Уверете се, че полето „Използване на обкръжение за изпълнение на Java“ е отметнато и в голямото списъчно поле е избрана версия на JRE. Ако не е зададена JRE, активирайте JRE 1.4 или по-нова и рестартирайте %PRODUCTNAME."
#: wiki.xhp#hd_id5316019.help.text
msgid "To Connect to a Wiki"
@@ -292,7 +291,7 @@ msgstr "Обединени клетки"
#: wikiformats.xhp#par_id8253730.help.text
msgid "OpenDocument and especially LibreOffice represent tables that have joined cells that span rows as tables with nested tables. In contrast, the wiki model of table is to declare column and row spans for such joined cells. "
-msgstr ""
+msgstr "В OpenDocument и в частност в LibreOffice таблиците с обединени клетки от различни редове се представят чрез вложени таблици. Обратно, в модела за таблици на Уики за такива клетки се декларират диапазони от редове и колони."
#: wikiformats.xhp#par_id8163090.help.text
msgid "If only columns of the same row are joined, the result of the transformation resembles the source document very well."
diff --git a/translations/source/bg/vcl/source/src.po b/translations/source/bg/vcl/source/src.po
index f522a806112..405f007bfcb 100644
--- a/translations/source/bg/vcl/source/src.po
+++ b/translations/source/bg/vcl/source/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+vcl%2Fsource%2Fsrc.oo&subcomponent=ui\n"
"POT-Creation-Date: 2011-11-26 00:04+0200\n"
-"PO-Revision-Date: 2011-11-02 12:06+0200\n"
+"PO-Revision-Date: 2011-12-03 13:13+0200\n"
"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -745,56 +745,55 @@ msgstr "Разделител на прозорци"
#: fpicker.src#STR_FPICKER_AUTO_EXTENSION.string.text
msgid "~Automatic file name extension"
-msgstr ""
+msgstr "~Автоматично файлово разширение"
#: fpicker.src#STR_FPICKER_PASSWORD.string.text
msgid "Save with pass~word"
-msgstr ""
+msgstr "Съхраняване с ~парола"
#: fpicker.src#STR_FPICKER_FILTER_OPTIONS.string.text
msgid "~Edit filter settings"
-msgstr ""
+msgstr "Параметри на ~филтъра"
#: fpicker.src#STR_FPICKER_READONLY.string.text
msgid "~Read-only"
-msgstr ""
+msgstr "Само за ~четене"
#: fpicker.src#STR_FPICKER_INSERT_AS_LINK.string.text
msgid "~Link"
-msgstr ""
+msgstr "~Връзка"
#: fpicker.src#STR_FPICKER_SHOW_PREVIEW.string.text
-#, fuzzy
msgid "Pr~eview"
-msgstr "Мостра"
+msgstr "~Мостра"
#: fpicker.src#STR_FPICKER_PLAY.string.text
msgid "~Play"
-msgstr ""
+msgstr "Въ~зпроизвеждане"
#: fpicker.src#STR_FPICKER_VERSION.string.text
msgid "~Version:"
-msgstr ""
+msgstr "В~ерсия:"
#: fpicker.src#STR_FPICKER_TEMPLATES.string.text
msgid "S~tyles:"
-msgstr ""
+msgstr "С~тилове:"
#: fpicker.src#STR_FPICKER_IMAGE_TEMPLATE.string.text
msgid "Style:"
-msgstr ""
+msgstr "Стил:"
#: fpicker.src#STR_FPICKER_SELECTION.string.text
msgid "~Selection"
-msgstr ""
+msgstr "~Селекция"
#: fpicker.src#STR_FPICKER_FOLDER_DEFAULT_TITLE.string.text
msgid "Select Path"
-msgstr ""
+msgstr "Избор на път"
#: fpicker.src#STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION.string.text
msgid "Please select a folder."
-msgstr ""
+msgstr "Моля, изберете папка."
#: fpicker.src#STR_FPICKER_ALREADYEXISTOVERWRITE.string.text
msgid ""
@@ -802,19 +801,22 @@ msgid ""
"\n"
"Do you want to replace it?"
msgstr ""
+"Файлът „$filename$“ вече съществува.\n"
+"\n"
+"Желаете ли да го замените?"
#: fpicker.src#STR_FPICKER_ALLFORMATS.string.text
msgid "All Formats"
-msgstr ""
+msgstr "Всички формати"
#: fpicker.src#STR_FPICKER_OPEN.string.text
msgid "Open"
-msgstr ""
+msgstr "Отваряне"
#: fpicker.src#STR_FPICKER_SAVE.string.text
msgid "Save"
-msgstr ""
+msgstr "Съхраняване"
#: fpicker.src#STR_FPICKER_TYPE.string.text
msgid "File ~type"
-msgstr ""
+msgstr "~Тип на файла"
diff --git a/translations/source/ca/helpcontent2/source/text/sbasic/shared.po b/translations/source/ca/helpcontent2/source/text/sbasic/shared.po
index 41266bf9aba..64a2317cf61 100644
--- a/translations/source/ca/helpcontent2/source/text/sbasic/shared.po
+++ b/translations/source/ca/helpcontent2/source/text/sbasic/shared.po