summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/UCB/ResourceManager.java
blob: 30a183ca5e70bc048a515b9089b74ffca76a7af5 (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
 *
 *  The Contents of this file are made available subject to the terms of
 *  the BSD license.
 *
 *  Copyright 2000, 2010 Oracle and/or its affiliates.
 *  All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions
 *  are met:
 *  1. Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *  2. Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *  3. Neither the name of Sun Microsystems, Inc. nor the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 *  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
 *  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 *  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 *************************************************************************/

import com.sun.star.ucb.NameClash;
import com.sun.star.ucb.TransferCommandOperation;
import com.sun.star.ucb.GlobalTransferCommandArgument;
import com.sun.star.uno.XInterface;

/**
 * Copying, Moving and Creating Links to a Resource
 */
public class ResourceManager {

    /**
     * Member properties
     */
    private  Helper      m_helper;
    private  XInterface  m_ucb;
    private  String      m_contenturl = "";
    private  String      m_targetFolderURL = "";
    private  String      m_newTitle = "";
    private  String      m_transOperation = "";

    /**
     * Constructor.
     *
     *@param      args   This constructor requires the arguments:
     *                          -url=...             (optional)
     *                          -targetFolderURL=... (optional)
     *                          -newTitle=...        (optional)
     *                          -transOper=...       (optional)
     *                          -workdir=...         (optional)
     *                       See Help (method printCmdLineUsage()).
     *                       Without the arguments a new connection to a
     *                       running office cannot created.
     */
    public ResourceManager( String args[] ) throws java.lang.Exception {

        // Parse arguments
        parseArguments( args );

        // Init
        m_helper       = new Helper( getContentURL() );

        // Get xUCB
        m_ucb          = m_helper.getUCB();
    }

    /**
     *  Copy, move or create a link for a resource.
     *  This method requires the main and the optional arguments to be set in order to work.
     *  See Constructor.
     *
     *@return true if resource successfully transferred, false otherwise
     */
    public boolean transferResource()
        throws com.sun.star.ucb.CommandAbortedException, com.sun.star.uno.Exception {
        String sourceURL       = getContentURL();      // URL of the source object
        String targetFolderURL = getTargetFolderURL(); // URL of the target folder
        String newTitle        = getNewTitle();        // New name for the resource
        String transOperation  = getTransOperation();
        return transferResource( sourceURL, targetFolderURL, newTitle, transOperation );
    }

    /**
     *  Copy, move or create a link for a resource.
     *
     *@param  sourceURL   Source URL
     *@param  targetFolderURL   Target folder URL
     *@param  transOperation   Transferring operation (copy, move, link)
     *@return true if resource successfully transferred, false otherwise
     */
    public boolean transferResource(
            String sourceURL, String targetFolderURL,
            String newTitle, String transOperation )
        throws com.sun.star.ucb.CommandAbortedException, com.sun.star.uno.Exception {

        boolean result = false;
        if ( m_ucb != null && sourceURL != null && !sourceURL.equals( "" ) &&
             targetFolderURL != null && !targetFolderURL.equals( "" ) &&
             newTitle != null && transOperation != null && !transOperation.equals( "" ) &&
             ( transOperation.equals( "copy" ) || transOperation.equals( "move" ) ||
               transOperation.equals( "link" ))) {


            // Copy, move or create a link for a resource to another location...

            GlobalTransferCommandArgument arg = new GlobalTransferCommandArgument();
            if ( transOperation.equals( "copy" )) {
                arg.Operation = TransferCommandOperation.COPY;
            } else if ( transOperation.equals( "move" )) {
                arg.Operation = TransferCommandOperation.MOVE;
            } else if ( transOperation.equals( "link" )) {
                arg.Operation = TransferCommandOperation.LINK;
            }
            arg.SourceURL = sourceURL;
            arg.TargetURL = targetFolderURL;

            // object get a new unique name
            arg.NewTitle  = newTitle;

            // fail, if object with same name exists in target folder
            arg.NameClash = NameClash.ERROR;

            // Let UCB execute the command "globalTransfer".
            m_helper.executeCommand( m_ucb, "globalTransfer", arg );
            result = true;
        }
        return result;
    }

    /**
     *  Get connect URL.
     *
     *@return   String    That contains the connect URL
     */
    public String getContentURL() {
        return m_contenturl;
    }

    /**
     * Get trasfering Operation.
     *
     *@return String    That contains the trasfering Operation
     */
    public String getTransOperation() {
        return m_transOperation;
    }

    /**
     * Get target folder URL.
     *
     *@return String    That contains the target folder URL
     */
    public String getTargetFolderURL() {
        return m_targetFolderURL;
    }

    /**
     * Get new title for the resource to be transferred.
     *
     *@return String    That contains a new title for the transferred
     *                  resource. Can be empty. In this case resource
     *                  will keep the title it has in the source folder.
     */
    public String getNewTitle() {
        return m_newTitle;
    }

    /**
     * Parse arguments
     */
    public void parseArguments( String[] args ) throws java.lang.Exception {

        String workdir = "";

        for ( int i = 0; i < args.length; i++ ) {
            if ( args[i].startsWith( "-url=" )) {
                m_contenturl    = args[i].substring( 5 );
            } else if ( args[i].startsWith( "-targetFolderURL=" )) {
                m_targetFolderURL = args[i].substring( 17 );
            } else if ( args[i].startsWith( "-newTitle=" )) {
                m_newTitle = args[i].substring( 10 );
            } else if ( args[i].startsWith( "-transOper=" )) {
                m_transOperation = args[i].substring( 11 );
            } else if ( args[i].startsWith( "-workdir=" )) {
                workdir = args[i].substring( 9 );
            } else if ( args[i].startsWith( "-help" ) ||
                        args[i].startsWith( "-?" )) {
                printCmdLineUsage();
                System.exit( 0 );
            }
        }

        if ( m_contenturl == null || m_contenturl.equals( "" )) {
            m_contenturl = Helper.prependCurrentDirAsAbsoluteFileURL( "data/data.txt" );
        }

        if ( m_targetFolderURL == null || m_targetFolderURL.equals( "" )) {
            m_targetFolderURL = Helper.getAbsoluteFileURLFromSystemPath( workdir );
        }

        if ( m_newTitle == null || m_newTitle.equals( "" )) {
            m_newTitle = "transferred-resource-" + System.currentTimeMillis();
        }

        if ( m_transOperation == null || m_transOperation.equals( "" )) {
            m_transOperation = "copy";
        }
    }

    /**
     * Print the commands options
     */
    public void printCmdLineUsage() {
        System.out.println(
            "Usage: ResourceManager -url=... -targetFolderURL=... -newTitle=... -transOper=... -workdir=..." );
        System.out.println(
            "Defaults: -url=<currentdir>/data/data.txt> -targetFolderURL=<workdir> -newTitle=transferred-resource-<uniquepostfix> -transOper=copy -workdir=<currentdir>");
        System.out.println(
            "\nExample : -url=file:///temp/MyFile.txt -targetFolderURL=file:///test/ -newTitle=RenamedFile.txt -transOper=copy " );
    }

    /**
     *  Create a new connection with the specific args to a running office and
     *  copy, move or create links a resource.
     */
    public static void main ( String args[] ) {

        System.out.println( "\n" );
        System.out.println(
            "-----------------------------------------------------------------" );
        System.out.println(
            "ResourceManager - copies/moves a resource." );
        System.out.println(
            "-----------------------------------------------------------------" );

        try {
            ResourceManager transResource = new ResourceManager( args );
            String sourceURL       = transResource.getContentURL();
            String targetFolderURL = transResource.getTargetFolderURL();
            String newTitle        = transResource.getNewTitle();
            String transOperation  = transResource.getTransOperation();
            boolean result = transResource.transferResource(
                                sourceURL, targetFolderURL, newTitle, transOperation );
            if ( result )
                System.out.println( "\nTransfering resource succeeded." );
            else
                System.out.println( "Transferring resource failed." );

            System.out.println( "   Source URL        : " + sourceURL );
            System.out.println( "   Target Folder URL : " + targetFolderURL );
            System.out.println( "   New name          : " + newTitle );
            System.out.println( "   Transfer Operation: " + transOperation );


        } catch ( com.sun.star.ucb.CommandAbortedException e ) {
            System.out.println( "Error: " + e );
        } catch ( com.sun.star.uno.Exception e ) {
            System.out.println( "Error: " + e );
        } catch ( java.lang.Exception e ) {
            System.out.println( "Error: " + e );
        }
        System.exit( 0 );
    }
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
v>
#: treeopt.src
msgctxt ""
@@ -1261,7 +1261,7 @@ msgctxt ""
"General\n"
"itemlist.text"
msgid "General"
-msgstr ""
+msgstr "Общи"
#: treeopt.src
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"View\n"
"itemlist.text"
msgid "View"
-msgstr ""
+msgstr "Изглед"
#: treeopt.src
msgctxt ""
@@ -1279,7 +1279,7 @@ msgctxt ""
"Grid\n"
"itemlist.text"
msgid "Grid"
-msgstr ""
+msgstr "Мрежа"
#: treeopt.src
msgctxt ""
@@ -1288,7 +1288,7 @@ msgctxt ""
"Print\n"
"itemlist.text"
msgid "Print"
-msgstr ""
+msgstr "Печат"
#: treeopt.src
msgctxt ""
@@ -1297,7 +1297,7 @@ msgctxt ""
"%PRODUCTNAME Draw\n"
"itemlist.text"
msgid "%PRODUCTNAME Draw"
-msgstr ""
+msgstr "%PRODUCTNAME Draw"
#: treeopt.src
msgctxt ""
@@ -1306,7 +1306,7 @@ msgctxt ""
"General\n"
"itemlist.text"
msgid "General"
-msgstr ""
+msgstr "Общи"
#: treeopt.src
msgctxt ""
@@ -1315,7 +1315,7 @@ msgctxt ""
"View\n"
"itemlist.text"
msgid "View"
-msgstr ""
+msgstr "Изглед"
#: treeopt.src
msgctxt ""
@@ -1324,7 +1324,7 @@ msgctxt ""
"Grid\n"
"itemlist.text"
msgid "Grid"
-msgstr ""
+msgstr "Мрежа"
#: treeopt.src
msgctxt ""
@@ -1333,7 +1333,7 @@ msgctxt ""
"Print\n"
"itemlist.text"
msgid "Print"
-msgstr ""
+msgstr "Печат"
#: treeopt.src
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"Charts\n"
"itemlist.text"
msgid "Charts"
-msgstr ""
+msgstr "Диаграми"
#: treeopt.src
msgctxt ""
@@ -1351,7 +1351,7 @@ msgctxt ""
"Default Colors\n"
"itemlist.text"
msgid "Default Colors"
-msgstr ""
+msgstr "Подразбирани цветове"
#: treeopt.src
msgctxt ""
@@ -1360,7 +1360,7 @@ msgctxt ""
"Load/Save\n"
"itemlist.text"
msgid "Load/Save"
-msgstr ""
+msgstr "Зареждане/записване"
#: treeopt.src
msgctxt ""
@@ -1369,7 +1369,7 @@ msgctxt ""
"General\n"
"itemlist.text"
msgid "General"
-msgstr ""
+msgstr "Общи"
#: treeopt.src
msgctxt ""
@@ -1378,7 +1378,7 @@ msgctxt ""
"VBA Properties\n"
"itemlist.text"
msgid "VBA Properties"
-msgstr ""
+msgstr "Настройки за VBA"
#: treeopt.src
msgctxt ""
@@ -1387,7 +1387,7 @@ msgctxt ""
"Microsoft Office\n"
"itemlist.text"
msgid "Microsoft Office"
-msgstr ""
+msgstr "Microsoft Office"
#: treeopt.src
msgctxt ""
@@ -1396,7 +1396,7 @@ msgctxt ""
"HTML Compatibility\n"
"itemlist.text"
msgid "HTML Compatibility"
-msgstr ""
+msgstr "Съвместимост за HTML"
#: treeopt.src
msgctxt ""
@@ -1405,7 +1405,7 @@ msgctxt ""
"%PRODUCTNAME Base\n"
"itemlist.text"
msgid "%PRODUCTNAME Base"
-msgstr ""
+msgstr "%PRODUCTNAME Base"
#: treeopt.src
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"Connections\n"
"itemlist.text"
msgid "Connections"
-msgstr ""
+msgstr "Връзки"
#: treeopt.src
msgctxt ""
@@ -1423,4 +1423,4 @@ msgctxt ""
"Databases\n"
"itemlist.text"
msgid "Databases"
-msgstr ""
+msgstr "Бази от данни"
diff --git a/source/bg/cui/source/tabpages.po b/source/bg/cui/source/tabpages.po
index ad38cc0a85c..a87f371296c 100644
--- a/source/bg/cui/source/tabpages.po
+++ b/source/bg/cui/source/tabpages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 14:07+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-01-05 23:22+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1449842861.000000\n"
+"X-POOTLE-MTIME: 1483658562.000000\n"
#: border.src
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"RID_SVXSTR_FRAMEDIR_LTR\n"
"string.text"
msgid "Left-to-right (LTR)"
-msgstr ""
+msgstr "Отляво надясно"
#: frmdirlbox.src
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"RID_SVXSTR_FRAMEDIR_RTL\n"
"string.text"
msgid "Right-to-left (RTL)"
-msgstr ""
+msgstr "Отдясно наляво"
#: frmdirlbox.src
msgctxt ""
@@ -259,7 +259,7 @@ msgctxt ""
"RID_SVXSTR_DESC_NEW_PATTERN\n"
"string.text"
msgid "Please enter a name for the pattern:"
-msgstr ""
+msgstr "Моля, въведете име за шарката:"
#: strings.src
msgctxt ""
@@ -282,6 +282,8 @@ msgid ""
"The pattern was modified without saving. \n"
"Modify the selected pattern or add a new pattern"
msgstr ""
+"Шарката бе променена без записване. \n"
+"Променете избраната шарка или добавете нова."
#: strings.src
msgctxt ""
diff --git a/source/bg/cui/uiconfig/ui.po b/source/bg/cui/uiconfig/ui.po
index 5e92cc2f55c..14ebb8a8c66 100644
--- a/source/bg/cui/uiconfig/ui.po
+++ b/source/bg/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-30 21:43+0000\n"
+"PO-Revision-Date: 2017-01-06 00:02+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1477863813.000000\n"
+"X-POOTLE-MTIME: 1483660937.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -753,7 +753,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: areatabpage.ui
msgctxt ""
@@ -762,7 +762,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Color"
-msgstr ""
+msgstr "Цвят"
#: areatabpage.ui
msgctxt ""
@@ -771,7 +771,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Gradient"
-msgstr ""
+msgstr "Градиент"
#: areatabpage.ui
msgctxt ""
@@ -780,7 +780,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hatch"
-msgstr ""
+msgstr "Щриховка"
#: areatabpage.ui
msgctxt ""
@@ -789,7 +789,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bitmap"
-msgstr ""
+msgstr "Растерно изображение"
#: areatabpage.ui
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pattern"
-msgstr ""
+msgstr "Шарка"
#: asiantypography.ui
msgctxt ""
@@ -1248,7 +1248,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add / Import"
-msgstr ""
+msgstr "Добавяне / Импортиране"
#: bitmaptabpage.ui
msgctxt ""
@@ -1257,7 +1257,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bitmap"
-msgstr ""
+msgstr "Растерно изображение"
#: bitmaptabpage.ui
msgctxt ""
@@ -1266,7 +1266,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style:"
-msgstr ""
+msgstr "Стил:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1275,7 +1275,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Original"
-msgstr ""
+msgstr "Оригинално"
#: bitmaptabpage.ui
msgctxt ""
@@ -1284,7 +1284,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Filled"
-msgstr ""
+msgstr "Запълнено"
#: bitmaptabpage.ui
msgctxt ""
@@ -1293,7 +1293,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Stretched"
-msgstr ""
+msgstr "Разтегнатo"
#: bitmaptabpage.ui
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Zoomed"
-msgstr ""
+msgstr "Увеличено"
#: bitmaptabpage.ui
msgctxt ""
@@ -1311,7 +1311,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Custom"
-msgstr ""
+msgstr "По избор"
#: bitmaptabpage.ui
msgctxt ""
@@ -1320,7 +1320,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Tiled"
-msgstr ""
+msgstr "Мозаично"
#: bitmaptabpage.ui
msgctxt ""
@@ -1329,7 +1329,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Size:"
-msgstr ""
+msgstr "Размер:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1338,7 +1338,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "W:"
-msgstr ""
+msgstr "Ш:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1347,7 +1347,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "H:"
-msgstr ""
+msgstr "В:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1356,7 +1356,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Scale"
-msgstr ""
+msgstr "Мащабиране"
#: bitmaptabpage.ui
msgctxt ""
@@ -1365,7 +1365,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position:"
-msgstr ""
+msgstr "Позиция:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Top Left"
-msgstr ""
+msgstr "Горе вляво"
#: bitmaptabpage.ui
msgctxt ""
@@ -1383,7 +1383,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Top Center"
-msgstr ""
+msgstr "Горе, центрирано"
#: bitmaptabpage.ui
msgctxt ""
@@ -1392,7 +1392,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Top Right"
-msgstr ""
+msgstr "Горе вдясно"
#: bitmaptabpage.ui
msgctxt ""
@@ -1401,7 +1401,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Center Left"
-msgstr ""
+msgstr "Центрирано вляво"
#: bitmaptabpage.ui
msgctxt ""
@@ -1410,7 +1410,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Center"
-msgstr ""
+msgstr "Център"
#: bitmaptabpage.ui
msgctxt ""
@@ -1419,7 +1419,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Center Right"
-msgstr ""
+msgstr "Центрирано вдясно"
#: bitmaptabpage.ui
msgctxt ""
@@ -1428,7 +1428,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Bottom Left"
-msgstr ""
+msgstr "Долу вляво"
#: bitmaptabpage.ui
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Bottom Center"
-msgstr ""
+msgstr "Долу, центрирано"
#: bitmaptabpage.ui
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Bottom Right"
-msgstr ""
+msgstr "Долу вдясно"
#: bitmaptabpage.ui
msgctxt ""
@@ -1455,7 +1455,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tiling Position:"
-msgstr ""
+msgstr "Позиция на мозайката:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1464,7 +1464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X:"
-msgstr ""
+msgstr "X:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1473,7 +1473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y:"
-msgstr ""
+msgstr "Y:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1482,7 +1482,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tiling Offset:"
-msgstr ""
+msgstr "Отместване на мозайката:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1491,7 +1491,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Row"
-msgstr ""
+msgstr "Ред"
#: bitmaptabpage.ui
msgctxt ""
@@ -1500,7 +1500,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Column"
-msgstr ""
+msgstr "Колона"
#: bitmaptabpage.ui
msgctxt ""
@@ -1509,7 +1509,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Options"
-msgstr ""
+msgstr "Настройки"
#: bitmaptabpage.ui
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Example"
-msgstr ""
+msgstr "Пример"
#: bitmaptabpage.ui
msgctxt ""
@@ -1527,7 +1527,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Preview"
-msgstr ""
+msgstr "Мостра"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1707,7 +1707,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pr_esets:"
-msgstr ""
+msgstr "Готови настройки:"
#: borderpage.ui
msgctxt ""
@@ -1716,7 +1716,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Adjacent Cells:"
-msgstr ""
+msgstr "Съседни клетки:"
#: borderpage.ui
msgctxt ""
@@ -1725,7 +1725,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remove border"
-msgstr ""
+msgstr "Премахване на канта"
#: borderpage.ui
msgctxt ""
@@ -3156,7 +3156,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Palette:"
-msgstr ""
+msgstr "Палитра:"
#: colorpage.ui
msgctxt ""
@@ -3165,7 +3165,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recent Colors"
-msgstr ""
+msgstr "Последни цветове"
#: colorpage.ui
msgctxt ""
@@ -3174,7 +3174,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "RGB"
-msgstr ""
+msgstr "RGB"
#: colorpage.ui
msgctxt ""
@@ -3183,7 +3183,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "CMYK"
-msgstr ""
+msgstr "CMYK"
#: colorpage.ui
msgctxt ""
@@ -3192,7 +3192,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Изтриване"
#: colorpage.ui
msgctxt ""
@@ -3201,7 +3201,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom Palette"
-msgstr ""
+msgstr "Палитра по избор"
#: colorpage.ui
msgctxt ""
@@ -3210,7 +3210,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colors"
-msgstr ""
+msgstr "Цветове"
#: colorpage.ui
msgctxt ""
@@ -3228,7 +3228,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "B"
-msgstr ""
+msgstr "З"
#: colorpage.ui
msgctxt ""
@@ -3237,7 +3237,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "G"
-msgstr ""
+msgstr "С"
#: colorpage.ui
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "R"
-msgstr ""
+msgstr "Ч"
#: colorpage.ui
msgctxt ""
@@ -3255,7 +3255,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hex"
-msgstr ""
+msgstr "Шестн."
#: colorpage.ui
msgctxt ""
@@ -3264,7 +3264,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_C"
-msgstr ""
+msgstr "Ц"
#: colorpage.ui
msgctxt ""
@@ -3273,7 +3273,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_K"
-msgstr ""
+msgstr "Ч"
#: colorpage.ui
msgctxt ""
@@ -3282,7 +3282,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y"
-msgstr ""
+msgstr "Ж"
#: colorpage.ui
msgctxt ""
@@ -3291,7 +3291,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_M"
-msgstr ""
+msgstr "М"
#: colorpage.ui
msgctxt ""
@@ -3300,7 +3300,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Active"
-msgstr ""
+msgstr "Активен"
#: colorpage.ui
msgctxt ""
@@ -3318,7 +3318,7 @@ msgctxt ""
"primary_icon_tooltip_text\n"
"string.text"
msgid "Blue"
-msgstr ""
+msgstr "Синьо"
#: colorpage.ui
msgctxt ""
@@ -3327,7 +3327,7 @@ msgctxt ""
"primary_icon_tooltip_text\n"
"string.text"
msgid "Red"
-msgstr ""
+msgstr "Червено"
#: colorpage.ui
msgctxt ""
@@ -3363,7 +3363,7 @@ msgctxt ""
"primary_icon_tooltip_text\n"
"string.text"
msgid "Green"
-msgstr ""
+msgstr "Зелено"
#: colorpage.ui
msgctxt ""
@@ -3372,7 +3372,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Hex"
-msgstr ""
+msgstr "Шестн."
#: colorpage.ui
msgctxt ""
@@ -3417,7 +3417,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pick"
-msgstr ""
+msgstr "Посочване"
#: colorpage.ui
msgctxt ""
@@ -3426,7 +3426,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New"
-msgstr ""
+msgstr "Нов"
#: colorpickerdialog.ui
msgctxt ""
@@ -4623,7 +4623,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accessibility option \"Use automatic font color for screen display\" is active. Font color attributes are not currently used to display text."
-msgstr ""
+msgstr "Включена е настройката за достъпност „Автоматичен цвят на шрифта за екранна визуализация“. Атрибутите за цвят на шрифта в момента не се използват при показване на текст."
#: effectspage.ui
msgctxt ""
diff --git a/source/bg/desktop/uiconfig/ui.po b/source/bg/desktop/uiconfig/ui.po
index 6ce3f60349a..a68b028d5ea 100644
--- a/source/bg/desktop/uiconfig/ui.po
+++ b/source/bg/desktop/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-10 00:20+0000\n"
+"PO-Revision-Date: 2016-12-29 18:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: none\n"
"Language: bg\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481329257.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1483036673.000000\n"
#: cmdlinehelp.ui
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Check for _Updates"
-msgstr ""
+msgstr "Проверка за обновяване"
#: extensionmanager.ui
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#: extensionmanager.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#: extensionmanager.ui
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Enable"
-msgstr ""
+msgstr "Включване"
#: extensionmanager.ui
msgctxt ""
diff --git a/source/bg/filter/source/config/fragments/filters.po b/source/bg/filter/source/config/fragments/filters.po
index 6bc7a52bbda..f55b718a1a2 100644
--- a/source/bg/filter/source/config/fragments/filters.po
+++ b/source/bg/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 16:36+0000\n"
+"PO-Revision-Date: 2016-12-30 00:50+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467650202.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1483059053.000000\n"
#: AbiWord.xcu
msgctxt ""
@@ -851,7 +851,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Drawing"
-msgstr ""
+msgstr "Стара рисунка на StarOffice"
#: StarOffice_Spreadsheet.xcu
msgctxt ""
@@ -860,7 +860,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Spreadsheet"
-msgstr ""
+msgstr "Стара електронна таблица на StarOffice"
#: StarOffice_Writer.xcu
msgctxt ""
@@ -869,7 +869,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Text Document"
-msgstr ""
+msgstr "Стар текстов документ на StarOffice"
#: StarOffice_XML__Base_.xcu
msgctxt ""
@@ -1130,7 +1130,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Zoner Callisto/Draw"
-msgstr ""
+msgstr "Zoner Callisto/Draw"
#: calc8.xcu
msgctxt ""
diff --git a/source/bg/filter/source/config/fragments/internalgraphicfilters.po b/source/bg/filter/source/config/fragments/internalgraphicfilters.po
index 62677505660..8afa54d4274 100644
--- a/source/bg/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/bg/filter/source/config/fragments/internalgraphicfilters.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-10 14:21+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-12-30 00:52+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457619697.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1483059126.000000\n"
#: bmp_Export.xcu
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - преносим документен формат"
#: pdf_Import.xcu
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - преносим документен формат"
#: pgm_Import.xcu
msgctxt ""
diff --git a/source/bg/filter/uiconfig/ui.po b/source/bg/filter/uiconfig/ui.po
index 150565d6d44..c82e332335a 100644
--- a/source/bg/filter/uiconfig/ui.po
+++ b/source/bg/filter/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-10-14 11:08+0000\n"
+"PO-Revision-Date: 2016-12-30 00:54+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1476443327.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1483059261.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "XML Filter List"
-msgstr ""
+msgstr "Списък с филтри за XML"
#: xmlfiltertabpagegeneral.ui
msgctxt ""
diff --git a/source/bg/forms/source/resource.po b/source/bg/forms/source/resource.po
index 62eb83f4ae3..3a07e77ee48 100644
--- a/source/bg/forms/source/resource.po
+++ b/source/bg/forms/source/resource.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2013-11-27 10:23+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-12-29 23:57+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1385547785.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1483055850.000000\n"
#: strings.src
msgctxt ""
@@ -506,4 +506,4 @@ msgctxt ""
"RID_STR_XFORMS_CANT_REMOVE_TYPE\n"
"string.text"
msgid "This is a built-in type and cannot be removed."
-msgstr ""
+msgstr "Този тип е вграден и не може да се премахне."
diff --git a/source/bg/helpcontent2/source/text/scalc/00.po b/source/bg/helpcontent2/source/text/scalc/00.po
index 17a9e1e7501..f0fe446cbe7 100644
--- a/source/bg/helpcontent2/source/text/scalc/00.po
+++ b/source/bg/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-11-26 00:38+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1480120717.000000\n"
@@ -554,8 +554,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Изберете <emph>Вмъкване - Имена</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -572,8 +572,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Изберете <emph>Вмъкване - Имена - Дефиниране</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -590,8 +590,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Изберете <emph>Вмъкване - Имена - Вмъкване</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -599,8 +599,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Изберете <emph>Вмъкване - Имена - Създаване</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -608,8 +608,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Изберете <emph>Вмъкване - Имена - Етикети</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index dae16fb95e3..94c05e6a365 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-10-13 08:59+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LibreOffice на български\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1476349170.000000\n"
@@ -20652,8 +20652,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDEX(СумаX;4;1)</item> връща стойността от ред 4 и колона 1 на областта <emph>СумаX</emph>, зададена в <emph>Вмъкване - Имена - Дефиниране</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20677,8 +20677,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=INDEX((multi);4;1)</item> връща стойността от ред 4 и колона 1 от (несвързана) област, наименувана във <emph>Вмъкване - Имена - Дефиниране</emph> като <emph>multi</emph>. Несвързаната област може да се състои от няколко правоъгълни области, всяка от които съдържа ред 4 и колона 1. Ако желаете да посочите втория блок от несвързаната област, въведете числото <item type=\"input\">2</item> като стойност на параметъра <emph>Област</emph>."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -49848,8 +49848,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Имена"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -49857,8 +49857,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Имена\">Имена</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50248,8 +50248,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Изберете областта, съдържаща всички диапазони, които желаете да наименувате. След това изберете <emph>Вмъкване - Имена - Създаване</emph>. Така ще отворите диалоговия прозорец <emph>Създаване на имена</emph>, от който можете да изберете желаните настройки за наименуване."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52135,8 +52135,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Изберете <emph>-няма-</emph>, за да премахнете дефиницията на област за печат от текущия лист. Изберете <emph>-целият лист-</emph>, за да зададете целия лист като област за печат. Посочете <emph>-избрано-</emph>, за да зададете избраната област от лист като област за печат. Избирайки <emph>-дефинирана от потребителя-</emph>, можете да зададете област за печат, която вече е дефинирана с командата <emph>Форматиране - Области за печат - Дефиниране</emph>. Ако сте дали име на област с командата <emph>Вмъкване - Имена - Дефиниране</emph>, това име ще бъде показано и ще можете да го изберете от списъка."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/scalc/guide.po b/source/bg/helpcontent2/source/text/scalc/guide.po
index 477c5eb5e39..bf69a76ac5e 100644
--- a/source/bg/helpcontent2/source/text/scalc/guide.po
+++ b/source/bg/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-11-26 00:32+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1480120357.000000\n"
@@ -2132,8 +2132,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "За да посочите областта източник, изберете клетките и изберете <emph>Вмъкване - Имена - Дефиниране</emph>. Запишете документа източник и го оставете отворен."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11832,8 +11832,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Изберете клетка или област от клетки, след което изберете <emph>Вмъкване - Имена - Дефиниране</emph>. Появава се диалога <emph>Дефиниране на имена</emph>."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11885,8 +11885,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Вмъкване - Имена - Дефиниране\">Вмъкване - Имена - Дефиниране</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index a33e70a2463..ed17fa4f2d9 100644
--- a/source/bg/helpcontent2/source/text/shared/00.po
+++ b/source/bg/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-10-14 08:32+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476433950.000000\n"
#: 00000001.xhp
@@ -12070,15 +12070,6 @@ msgstr "Изберете <emph>Форматиране - Страница</emph>
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Изберете <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област -</emph> раздел <emph>Цветове</emph>"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 517d6031a3d..7053686bcbc 100644
--- a/source/bg/helpcontent2/source/text/shared/01.po
+++ b/source/bg/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 19:01+0000\n"
+"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"PO-Revision-Date: 2016-10-13 12:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1476817280.000000\n"
+"X-POOTLE-MTIME: 1476362238.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -5028,179 +5028,184 @@ msgctxt ""
"01140000.xhp\n"
"bm_id3147294\n"
"help.text"
-msgid "<bookmark_value>printers; properties</bookmark_value><bookmark_value>settings; printers</bookmark_value><bookmark_value>properties; printers</bookmark_value><bookmark_value>default printer; setting up</bookmark_value><bookmark_value>printers; default printer</bookmark_value><bookmark_value>page formats; restriction</bookmark_value>"
-msgstr "<bookmark_value>принтери; свойства</bookmark_value><bookmark_value>настройки; принтери</bookmark_value><bookmark_value>свойства; принтери</bookmark_value><bookmark_value>подразбиран принтер; задаване</bookmark_value><bookmark_value>принтери; подразбиран принтер</bookmark_value><bookmark_value>формати на страници; ограничаване</bookmark_value>"
+msgid "<bookmark_value>printers; properties</bookmark_value> <bookmark_value>settings; printers</bookmark_value> <bookmark_value>properties; printers</bookmark_value> <bookmark_value>default printer; setting up</bookmark_value> <bookmark_value>printers; default printer</bookmark_value> <bookmark_value>page formats; restriction</bookmark_value>"
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"hd_id3147294\n"
-"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Настройки на принтера</link>"
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3154422\n"
-"2\n"
"help.text"
-msgid "<variable id=\"druckereinstellungtext\"><ahelp hid=\"SVTOOLS:MODALDIALOG:DLG_SVT_PRNDLG_PRNSETUPDLG\">Select the default printer for the current document.</ahelp></variable>"
-msgstr "<variable id=\"druckereinstellungtext\"><ahelp hid=\"SVTOOLS:MODALDIALOG:DLG_SVT_PRNDLG_PRNSETUPDLG\">Избор на подразбран принтер за текущия документ.</ahelp></variable>"
+msgid "<variable id=\"druckereinstellungtext\"><ahelp hid=\"svt/ui/printersetupdialog/PrinterSetupDialog\">Select the default printer for the current document.</ahelp> </variable>"
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3148620\n"
-"20\n"
"help.text"
msgid "You might experience a slight delay when you change the default printer for a document that contains embedded $[officename] OLE objects."
-msgstr "Възможно е да усетите леко забавяне, когато сменяте подразбирания принтер за документ, който съдържа вградени OLE обекти на $[officename]."
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"hd_id3145345\n"
-"4\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Printer </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Принтер</caseinline></switchinline>"
+msgid "Printer"
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3145211\n"
-"5\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Lists the information that applies to the selected printer. </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Показва информация, отнасяща се за избрания принтер. </caseinline></switchinline>"
+msgid "Lists the information that applies to the selected printer."
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3148538\n"
-"19\n"
"help.text"
msgid "If the list is empty, you need to install a default printer for your operating system. Refer to the online help for your operating system for instructions on how to install and setup a default printer."
-msgstr "Ако списъкът е празен, трябва да инсталирате подразбиран принтер за операционната система. Вижте в помощта на операционната система как да инсталирате и настроите подразбиран принтер."
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"hd_id3154381\n"
-"6\n"
"help.text"
msgid "Name"
-msgstr "Име"
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3156155\n"
-"7\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS:LISTBOX:DLG_SVT_PRNDLG_PRNSETUPDLG:LB_NAMES\">Lists the installed printers on your operating system. To change the default printer, select a printer name from the list.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS:LISTBOX:DLG_SVT_PRNDLG_PRNSETUPDLG:LB_NAMES\">Изброява инсталираните в операционната система принтери. За да смените подразбирания принтер, изберете име на принтер от списъка.</ahelp>"
+msgid "<ahelp hid=\"svt/ui/printersetupdialog/name\">Lists the installed printers on your operating system. To change the default printer, select a printer name from the list.</ahelp>"
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"hd_id3156153\n"
-"8\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Status </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Състояние</caseinline></switchinline>"
+msgid "Status"
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3150465\n"
-"9\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Describes the current status of the selected printer. </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Описва текущото състояние на избрания принтер. </caseinline></switchinline>"
+msgid "Describes the current status of the selected printer."
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"hd_id3154898\n"
-"10\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Type </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Тип</caseinline></switchinline>"
+msgid "Type"
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3156326\n"
-"11\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays the type of printer that you selected. </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Показва типа на избрания принтер. </caseinline></switchinline>"
+msgid "Displays the type of printer that you selected."
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"hd_id3149416\n"
-"12\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Location </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Местоположение</caseinline></switchinline>"
+msgid "Location"
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3149955\n"
-"13\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays the port for the selected printer. </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Показва порта на избрания принтер. </caseinline></switchinline>"
+msgid "Displays the port for the selected printer."
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"hd_id3145316\n"
-"14\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Comments </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Коментар</caseinline></switchinline>"
+msgid "Comments"
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3155923\n"
-"15\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays additional information for the printer. </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">Показва допълнителна информация за принера.</caseinline></switchinline>"
+msgid "Displays additional information for the printer."
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"hd_id3149669\n"
-"16\n"
"help.text"
msgid "Properties"
-msgstr "Свойства"
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3149045\n"
-"17\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\"><ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_SVT_PRNDLG_PRNSETUPDLG:BTN_PROPERTIES\">Changes the printer settings of your operating system for the current document.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\"><ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_SVT_PRNDLG_PRNSETUPDLG:BTN_PROPERTIES\">Променя настройките за принтер на операционната система за текущия документ.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\"svt/ui/printersetupdialog/properties\">Changes the printer settings of your operating system for the current document.</ahelp>"
+msgstr ""
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3157322\n"
-"18\n"
"help.text"
msgid "Ensure that the Landscape or Portrait layout option set in the printer properties dialog matches the page format that you set by choosing <emph>Format - Page</emph>."
-msgstr "Уверете се, че настройката Пейзаж или Портрет, зададена в диалоговия прозорец за настройване на принтера, съответства на формата на страниците, избран чрез <emph>Форматиране - Страница</emph>."
+msgstr ""
+
+#: 01140000.xhp
+msgctxt ""
+"01140000.xhp\n"
+"hd_id201612110303091265\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#: 01140000.xhp
+msgctxt ""
+"01140000.xhp\n"
+"par_id201612110239454950\n"
+"help.text"
+msgid "<ahelp hid=\"svt/ui/printersetupdialog/options\">Opens the <emph>Printer Options</emph> dialog where you can override the global printer options set on the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Writer</emph></caseinline><caseinline select=\"CALC\"><emph>Calc</emph></caseinline><defaultinline>Writer/Web</defaultinline></switchinline><emph> - Print</emph> panel for the current document.</ahelp>"
+msgstr ""
+
+#: 01140000.xhp
+msgctxt ""
+"01140000.xhp\n"
+"par_id3157323\n"
+"help.text"
+msgid "The <emph>Options</emph> button is only available in %PRODUCTNAME Writer and Calc."
+msgstr ""
#: 01160000.xhp
msgctxt ""
@@ -8292,8 +8297,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Въведете броя знаци в търсения текст, които може да са заменени.</ahelp> Например, ако зададете 2 знака, \"хотел\" и \"петел\" ще се считат за подобни."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -25621,32 +25626,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Щракнете върху запълването, което желаете да приложите върху избрания обект.</ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Цветове"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Цветове\">Цветове</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "Тук можете да изберете цвят, който да бъде приложен, да запишете текущия списък с цветове или да заредите друг."
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43244,6 +43223,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Въведете повторно главната парола.</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
@@ -43275,8 +43462,8 @@ msgctxt ""
"par_id3154863\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"sfx/ui/documentfontspage/DocumentInfoPage\">Embed document fonts in the current file.</ahelp>"
-msgstr "<ahelp hid=\"sfx/ui/documentfontspage/DocumentInfoPage\">Вграждане шрифтовете на документа в текущия файл.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Embed document fonts in the current file.</ahelp>"
+msgstr ""
#: prop_font_embed.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/guide.po b/source/bg/helpcontent2/source/text/shared/guide.po
index d4d19df9e36..93b8cc54820 100644
--- a/source/bg/helpcontent2/source/text/shared/guide.po
+++ b/source/bg/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-10-13 14:01+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1476367305.000000\n"
@@ -2191,7 +2191,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2271,7 +2271,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9920,8 +9920,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "За скок към клетка в електронна таблица първо въведете име за клетката (<emph>Вмъкване - Имена - Дефиниране</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12429,20 +12429,20 @@ msgstr "Уверете се, че в раздела <emph>Настройки</em
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "След като щракнете върху <emph>Нов документ</emph>, ще видите малък прозорец с бутон <emph>Синхронизиране на етикетите</emph>. Въведете първия етикет. Когато щракнете върху бутона <emph>Синхронизиране на етикетите</emph>, текущият отделен етикет ще бъде копиран върху всички останали етикети в листа."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "Щракнете върху <emph>Нов документ</emph>, за да създадете нов документ с въведените настройки."
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "Щракнете върху <emph>Нов документ</emph>, за да създадете нов документ с въведените настройки."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "След като щракнете върху <emph>Нов документ</emph>, ще видите малък прозорец с бутон <emph>Синхронизиране на етикетите</emph>. Въведете първия етикет. Когато щракнете върху бутона <emph>Синхронизиране на етикетите</emph>, текущият отделен етикет ще бъде копиран върху всички останали етикети в листа."
#: labels.xhp
msgctxt ""
@@ -18305,758 +18305,721 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Стартиране на $[officename] с параметри"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>стартиране с параметри</bookmark_value><bookmark_value>команден ред, параметри за</bookmark_value><bookmark_value>параметри;команден ред</bookmark_value><bookmark_value>аргументи в командния ред</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Стартиране на $[officename] с параметри"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "Стартирайки $[officename] от командния ред можете да задавате различни параметри, с които да влияете върху работата на софтуера. Употребата на тези параметри се препоръчва само за опитни потребители."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "За нормална работа параметрите на командния ред не са необходими. Някои от тях изискват по-дълбоко познаване на техническите страни на реализацията на $[officename]."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "Стартиране на $[officename] от командния ред"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
-msgstr "В Windows изберете <emph>Run</emph> (Изпълни) от менюто Start (Старт), а в Linux, *BSD или Mac OS X отворете команден прозорец."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "В Windows въведете следния текст в текстовото поле <emph>Open</emph> (Отвори) и натиснете бутона <emph>OK</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr "В съвместима с UNIX система въведете следния текст, после натиснете <emph>Return</emph>:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{инсталация}\\program\\soffice.exe {параметър} </caseinline><caseinline select=\"UNIX\">{инсталация}/program/soffice {параметър} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Заменете <emph>{инсталация}</emph> с пътя до вашата инсталация на $[officename] (например <emph>C:\\Program Files\\Office</emph> или <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "Ако е необходимо, на мястото на <emph>{параметър}</emph> въведете един или повече от следните параметри за командния ред."
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "Валидни параметри за командния ред"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "Параметър"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "Значение"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "Изброява параметрите за командния ред в <switchinline select=\"sys\"><caseinline select=\"WIN\">диалогов прозорец</caseinline><defaultinline>конзолата</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
-msgstr "--version"
+msgid "Opens the file and applies specified macros from the file."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
-msgstr "Показва информация за версията."
+msgid "Getting help and information"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "Стартира с празен документ на Writer."
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "--calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "Стартира с празен документ на Calc."
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "Стартира с празен документ на Draw."
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "Стартира с празен документ на Impress."
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "Стартира с празен документ на Math."
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "--global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "Стартира с празен главен документ на Writer."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "--web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "Стартира с празен документ на HTML."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "--show {файл.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "Стартира с файла на Impress <emph>{файл.odp}</emph> и започва презентация. След края на презентацията се включва режимът на редактиране."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
+"help.text"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
"help.text"
-msgid "--minimized"
-msgstr "--minimized"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "Стартира с минимизиран прозорец. Приветственият екран не се показва."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "--invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "Стартира в невидим режим."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Няма да се вижда нито логото при стартиране, нито началният прозорец на програмата. Независимо от това, $[officename] ще може да бъде управляван – включително да бъдат отваряни документи и диалогови прозорци – чрез <link href=\"http://api.libreoffice.org\" name=\"API\">интерфейса за приложни програми (API)</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
-msgstr "Когато $[officename] е стартиран с този параметър, може да бъде спрян само с диспечера на задачите (Task Manager) (в Windows) или командата <emph>kill</emph> (в съвместимите с UNIX системи)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "Той не може да бъде използван заедно с <emph>-quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Повече информация можете да намерите в <emph>ръководството за разработчици на $[officename]</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
"help.text"
-msgid "--norestore"
-msgstr "--norestore"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "Забранява рестартирането и възстановяването на файлове след срив на системата."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "Забранява началния помощник при стартиране."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Включва Quickstarter."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "--accept={низ на UNO}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "Уведомява $[officename], че при създаването на „UNO Acceptor Threads“ ще се използва „UNO Accept String“."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Повече информация можете да намерите в <emph>ръководството за разработчици на $[officename]</emph>."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "--unaccept={низ на UNO}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
-msgstr "Затваря обект acceptor, отворен с --accept={UNO string}. Използвайте --unaccept=all, за да затворите всички отворени обекти acceptor."
+msgid "Exit after loading documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {файл1} {файл2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "Отпечатва файловете <emph>{файл1} {файл2} ...</emph> с принтера по подразбиране и приключва работа. Приветственият екран не се появява."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Ако името на файла съдържа интервали, трябва да бъде заградено с кавички."
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "--pt {принтер} {файл1} {файл2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "Отпечатва файловете <emph>{файл1} {файл2} ...</emph> с принера <emph>{принтер}</emph> и приключва работа. Приветственият екран не се появява."
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Ако името на файла съдържа интервали, трябва да бъде заградено с кавички."
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {файл}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "Отваря <emph>{файл}</emph> за редактиране, дори ако е шаблон."
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "--view {файл}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "Създава временно копие на <emph>{файл}</emph> и го отваря само за четене."
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {файл}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "Създава нов документ от шаблона <emph>{файл}</emph>."
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "Забранява показването на приветствения екран при стартиране."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "Ако името на файла съдържа интервали, трябва да бъде заградено с кавички."
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "Стартира без да показва каквото и да е освен приветствения екран."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
-msgstr "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
-msgstr "Забранява проверката за отдалечено използване на инсталацията."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150828\n"
+"help.text"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3145268\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3153838\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "Добавете този параметър към командата за стартиране на програмата, за да забраните началния помощник."
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id315053p\n"
"help.text"
-msgid "--display {display}"
-msgstr "--display {дисплей}"
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
-msgstr "Задава на променливата от обкръжението <emph>DISPLAY</emph> в съвместими с UNIX платформи стойност <emph>{дисплей}</emph>. Този параметър се поддържа само от стартовия скрипт за $[officename] в съвместими с UNIX платформи."
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id315053q\n"
"help.text"
-msgid "--headless"
-msgstr "--headless"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "Стартира в режим без дисплей, който позволява на приложението да работи без потребителски интерфейс."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Този специален режим може да се използва, когато приложението се управлява от външни клиенти чрез <link href=\"http://api.libreoffice.org\" name=\"API\">интерфейса за приложни програми (API)</link>."
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "--infilter={filter}"
-msgstr "--infilter={филтър}"
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
-msgstr "Налага тип на входния филтър, например --infilter=\"Calc Office Open XML\"."
+msgid "Ignored switches"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
-msgstr "--convert-to разширение_на_резултата[:име_на_изходен_филтър] [--outdir директория_за_резултата] файлове"
+msgid "Ignored (MacOS X only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
-msgstr "Пакетно преобразуване на файлове. Ако не е зададен --outdir, за output_dir се използва текущата директория.<br/>Например --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (COM+ related; Windows only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014529900\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
-msgstr "--print-to-file [--printer-name име_на_принтер] [--outdir директория_за_резултата] файлове"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
-msgstr "Пакетно отпечатване на файлове във файл. Ако не е зададен --outdir, за output_dir се използва текущата директория.<br/>Например --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
+msgstr ""
#: startcenter.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/optionen.po b/source/bg/helpcontent2/source/text/shared/optionen.po
index aa026c4b4ae..07cb3b6cfd4 100644
--- a/source/bg/helpcontent2/source/text/shared/optionen.po
+++ b/source/bg/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
+"POT-Creation-Date: 2016-12-27 21:50+0100\n"
"PO-Revision-Date: 2016-12-02 11:16+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1480677383.000000\n"
@@ -2246,8 +2246,8 @@ msgctxt ""
"01010500.xhp\n"
"tit\n"
"help.text"
-msgid "Colors"
-msgstr "Цветове"
+msgid "Color"
+msgstr ""
#: 01010500.xhp
msgctxt ""
@@ -2261,324 +2261,201 @@ msgstr "<bookmark_value>цветове; модели</bookmark_value>"
msgctxt ""
"01010500.xhp\n"
"hd_id3150543\n"
-"1\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010500.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/optionen/01010500.xhp\" name=\"Цветове\">Цветове</link>"
+msgid "<link href=\"text/shared/optionen/01010500.xhp\" name=\"Color\">Color</link>"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
"par_id3153104\n"
-"2\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/ColorPage\">Allows you to select a color from a color table, edit an existing color, or define new colors.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/ColorPage\">Позволява ви да изберете цвят от таблица с цветове, да редактирате цвет или да задавате нови цветове.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/colorpage/ColorPage\">Allows you to select a color from a color palette, edit an existing color, or define new colors.</ahelp>"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
"hd_id3150767\n"
-"3\n"
"help.text"
-msgid "Color table"
-msgstr "Таблица с цветове"
+msgid "Colors"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
"hd_id3150869\n"
-"5\n"
"help.text"
-msgid "Name"
-msgstr "Име"
+msgid "Palette"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
"par_id3149809\n"
-"6\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/name\">Specifies the name of a selected color. You can also type a name in this field when defining a new color.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/name\">Указва името на избрания цвят. В това поле можете да въведете име, когато задавате нов цвят.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/colorpage/paletteselector\">Specifies the name of a selected palette. You can select a different palette here.</ahelp>"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
"hd_id3150447\n"
-"7\n"
"help.text"
-msgid "Color"
-msgstr "Цвят"
+msgid "Color Set"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
"par_id3149560\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/colorlb\">Contains a list of available colors. To select a color, choose one from the list.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/colorlb\">Съдържа списък на наличните цветове. За да изберете цвят, посочете го в списъка.</ahelp>"
-
-#: 01010500.xhp
-msgctxt ""
-"01010500.xhp\n"
-"hd_id3155132\n"
-"9\n"
"help.text"
-msgid "Color table"
-msgstr "Таблица с цветове"
-
-#: 01010500.xhp
-msgctxt ""
-"01010500.xhp\n"
-"par_id3152885\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/modellb\">To modify, select the color model: Red-Green-Blue (RGB) or Cyan-Magenta-Yellow-BlacK (CMYK).</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/modellb\">За да промените, изберете цветовия модел: червено, зелено и синьо (RGB, Red-Green-Blue) или цианово, пурпурно, жълто и черно (CMYK, Cyan-Magenta-Yellow-BlacK).</ahelp>"
-
-#: 01010500.xhp
-msgctxt ""
-"01010500.xhp\n"
-"par_id1527756\n"
-"help.text"
-msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMYK controls are provided only to ease the input of color values using CMYK notation."
-msgstr "%PRODUCTNAME използва само цветовия модел RGB за цветно печатане. Елементите за управление за CMYK са предназначени само за удобно въвеждане на цветове във формат CMYK."
-
-#: 01010500.xhp
-msgctxt ""
-"01010500.xhp\n"
-"par_id3147426\n"
-"40\n"
-"help.text"
-msgid "If you select RGB, the initials of the three colors will appear and you can set the color from 0 to 255 with the spin button."
-msgstr "Ако изберете RGB, ще видите инициалите на трите цвята и ще можете да задавате количествата им от 0 до 255 с бутоните – броячи."
-
-#: 01010500.xhp
-msgctxt ""
-"01010500.xhp\n"
-"hd_id3150103\n"
-"13\n"
-"help.text"
-msgid "R"
-msgstr "R"
-
-#: 01010500.xhp
-msgctxt ""
-"01010500.xhp\n"
-"par_id3152462\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/R\">Red</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/R\">Червено (Red)</ahelp>"
+msgid "<ahelp hid=\"cui/ui/colorpage/colorset\">Contains a list of available colors. Click on the desired one in the list to select it.</ahelp>"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"hd_id3145366\n"
-"15\n"
+"hd_id31563321\n"
"help.text"
-msgid "G"
-msgstr "G"
+msgid "Recent Colors"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"par_id3153144\n"
-"16\n"
+"par_id31544811\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/G\">Green</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/G\">Зелено (Green)</ahelp>"
+msgid "<ahelp hid=\"cui/ui/colorpage/recentcolorset\">Displays the last twelve colors selected and applied.</ahelp> Upon selecting a new color it is added to the left of the list. If the list is full and a new color is selected then the rightmost color is deleted."
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"hd_id3153573\n"
-"17\n"
+"hd_id3156332\n"
"help.text"
-msgid "B"
-msgstr "B"
+msgid "Add"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"par_id3153726\n"
-"18\n"
+"par_id3154481\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/B\">Blue</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/B\">Синьо (Blue)</ahelp>"
+msgid "<ahelp hid=\"cui/ui/colorpage/add\">Adds the new color to the <emph>Custom</emph> palette.</ahelp>"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"par_id3152940\n"
-"41\n"
+"hd_id31547578\n"
"help.text"
-msgid "If you select CMYK, the initials of the four colors will appear and you can set the color from 0 to 255 with the spin button."
-msgstr "Ако изберете CMYK, ще видите инициалите на четирите цвята и ще можете да задавате количествата им от 0 до 255 с бутоните – броячи."
+msgid "Delete"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"hd_id3154942\n"
-"42\n"
+"par_id3154483\n"
"help.text"
-msgid "C"
-msgstr "C"
+msgid "<ahelp hid=\"cui/ui/colorpage/delete\">Deletes the selected color without confirmation.</ahelp>"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"par_id3145800\n"
-"43\n"
+"par_id3154574\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/C\">Cyan</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/C\">Цианово (Cyan)</ahelp>"
+msgid "You can only delete colors from the <emph>custom</emph> palette."
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"hd_id3155417\n"
-"44\n"
+"hd_id31507671\n"
"help.text"
-msgid "M"
-msgstr "M"
+msgid "New"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"par_id3150093\n"
-"45\n"
+"par_id3147426\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/M\">Magenta</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/M\">Магента (Magenta)</ahelp>"
+msgid "<ahelp hid=\"cui/ui/colorpage/newpreview\">Displays a preview of the color selected from the color palette and the changes you make with the controls below.</ahelp>"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"hd_id3147124\n"
-"46\n"
+"hd_id3150103\n"
"help.text"
-msgid "Y"
-msgstr "Y"
+msgid "R"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"par_id3154098\n"
-"47\n"
+"par_id3152462\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/Y\">Yellow</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/Y\">Жълто (Yellow)</ahelp>"
+msgid "<ahelp hid=\"cui/ui/colorpage/R_custom\">The color code of the red component of the color. Possible values are between 0 and 255.</ahelp>"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"hd_id3154015\n"
-"48\n"
+"hd_id3145366\n"
"help.text"
-msgid "K"
-msgstr "K"
+msgid "G"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"par_id3156180\n"
-"49\n"
+"par_id3153144\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/K\">Black</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/K\">Черно (Black)</ahelp>"
+msgid "<ahelp hid=\"cui/ui/colorpage/G_custom\">The color code of the green component of the color. Possible values are between 0 and 255.</ahelp>"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"hd_id3156332\n"
-"27\n"
+"hd_id3153573\n"
"help.text"
-msgid "Add"
-msgstr "Добавяне"
+msgid "B"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"par_id3154481\n"
-"28\n"
+"par_id3153726\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/add\">Adds a new color.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/add\">Добавя нов цвят.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/colorpage/B_custom\">The color code of the blue component of the color. Possible values are between 0 and 255.</ahelp>"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"hd_id3153708\n"
-"29\n"
+"hd_id31535731\n"
"help.text"
-msgid "Modify"
-msgstr "Промяна"
+msgid "Hex"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
-"par_id3148916\n"
-"30\n"
+"par_id31537261\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/modify\">Changes the current color.</ahelp> Note that the color is overwritten without a confirmation."
-msgstr "<ahelp hid=\"cui/ui/colorpage/modify\">Променя текущия цвят.</ahelp> Имайте предвид, че цветът се заменя без потвърждение."
+msgid "<ahelp hid=\"cui/ui/colorpage/hex_custom\">The color code of the color expressed as a hexadecimal value.</ahelp>"
+msgstr ""
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
-"31\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Редактиране\">Редактиране</link>"
-
-#: 01010500.xhp
-msgctxt ""
-"01010500.xhp\n"
-"hd_id3159267\n"
-"33\n"
-"help.text"
-msgid "Load Color List"
-msgstr "Зареждане на списък с цветове"
-
-#: 01010500.xhp
-msgctxt ""
-"01010500.xhp\n"
-"par_id3154705\n"
-"34\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/load\">Accesses the <emph>Open</emph> dialog, which allows you to select a color palette</ahelp>."
-msgstr "<ahelp hid=\"cui/ui/colorpage/load\">Показва диалоговия прозорец <emph>Отваряне</emph>, в който можете да изберете цветова палитра</ahelp>."
-
-#: 01010500.xhp
-msgctxt ""
-"01010500.xhp\n"
-"hd_id3147344\n"
-"36\n"
-"help.text"
-msgid "Save Color List"
-msgstr "Записване на списък с цветове"
-
-#: 01010500.xhp
-msgctxt ""
-"01010500.xhp\n"
-"par_id3163808\n"
-"37\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/colorpage/save\">Opens the <emph>Save As</emph> dialog, which enables you to save the current color table under a specified name.</ahelp> If you do not choose this command, the current color table will be automatically saved as default and re-loaded the next time you start $[officename]."
-msgstr "<ahelp hid=\"cui/ui/colorpage/save\">Отваря диалоговия прозорец <emph>Записване като</emph>, с който можете да запазите текущата цветова таблица под зададено име.</ahelp> Ако не изберете тази команда, текущата таблица с цветове ще бъде автоматично записана като подразбирана и презаредена при следващото стартиране на $[officename]."
-
-#: 01010500.xhp
-msgctxt ""
-"01010500.xhp\n"
-"par_id3154572\n"
-"38\n"
-"help.text"
-msgid "The <emph>Load color list</emph> and <emph>Save color list </emph>icons are visible only if you select the <emph>Colors</emph> tab with the <emph>Format - Area</emph> command."
-msgstr "Иконите <emph>Зареждане на списък с цветове</emph> и <emph>Записване на списък с цветове</emph> се виждат само когато изберете раздела <emph>Цветове</emph> с командата <emph>Форматиране - Област</emph>."
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgstr ""
#: 01010501.xhp
msgctxt ""
@@ -5335,8 +5212,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN1064B\n"
"help.text"
-msgid "<ahelp hid=\"703988739\">Select to see a warning dialog when you try to save or send a document that contains recorded changes, versions, or comments.</ahelp>"
-msgstr "<ahelp hid=\"703988739\">Отметнете, за да виждате предупреждение при опит за записване или изпращане на документ, който съдържа записани промени, версии или коментари.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/savesenddocs\">Select to see a warning dialog when you try to save or send a document that contains recorded changes, versions, or comments.</ahelp>"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -5351,8 +5228,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10652\n"
"help.text"
-msgid "<ahelp hid=\"703988740\">Select to see a warning dialog when you try to print a document that contains recorded changes or comments.</ahelp>"
-msgstr "<ahelp hid=\"703988740\">Отметнете, за да виждате предупреждение при опит за отпечатване на документ, който съдържа записани промени или коментари.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/whenprinting\">Select to see a warning dialog when you try to print a document that contains recorded changes or comments.</ahelp>"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -5367,8 +5244,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10659\n"
"help.text"
-msgid "<ahelp hid=\"703988741\">Select to see a warning dialog when you try to sign a document that contains recorded changes, versions, fields, references to other sources (for example linked sections or linked pictures), or comments.</ahelp>"
-msgstr "<ahelp hid=\"703988741\">Отметнете, за да виждате предупреждение при опит за подписване на документ, който съдържа записани промени, версии, полета, обръщения до други източници (например свързани раздели или свързани картини) или коментари.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/whensigning\">Select to see a warning dialog when you try to sign a document that contains recorded changes, versions, fields, references to other sources (for example linked sections or linked pictures), or comments.</ahelp>"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -5383,8 +5260,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10660\n"
"help.text"
-msgid "<ahelp hid=\"703988742\">Select to see a warning dialog when you try to export a document to PDF format that displays recorded changes in Writer, or that displays comments.</ahelp>"
-msgstr "<ahelp hid=\"703988742\">Отметнете за да видите предупреждение при опит за експортиране към формат PDF на документ , в който са показани записани промени в Writer или коментари.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/whenpdf\">Select to see a warning dialog when you try to export a document to PDF format that displays recorded changes in Writer, or that displays comments.</ahelp>"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -5399,8 +5276,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10667\n"
"help.text"
-msgid "<ahelp hid=\"703988743\">Select to always remove user data from the file properties. If this option is not selected, you can still remove the personal information for the current document with the <emph>Reset Properties</emph> button on <emph>File - Properties - General</emph>.</ahelp>"
-msgstr "<ahelp hid=\"703988743\">Отметнете, ако желаете данните за потребителя винаги да се премахват от свойствата на файла. Ако това поле не е отметнато, можете да премахнете личната информация от текущия документ с бутона <emph>Нулиране на свойствата</emph> във <emph>Файл - Свойства - Общи</emph>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/removepersonal\">Select to always remove user data from the file properties. If this option is not selected, you can still remove the personal information for the current document with the <emph>Reset Properties</emph> button on <emph>File - Properties - General</emph>.</ahelp>"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -5415,8 +5292,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10680\n"
"help.text"
-msgid "<ahelp hid=\"703988744\">Select to always enable the <emph>Save with password</emph> option in the file save dialogs. Deselect the option to save files by default without password.</ahelp>"
-msgstr "<ahelp hid=\"703988744\">Отметнете това поле, ако искате настройката <emph>Записване с парола</emph> в диалозите за записване на файл да е винаги включена. За да се подразбира записване на файловете без парола, махнете отметката.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/password\">Select to always enable the <emph>Save with password</emph> option in the file save dialogs. Deselect the option to save files by default without password.</ahelp>"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -5431,8 +5308,24 @@ msgctxt ""
"01030300.xhp\n"
"par_id79042\n"
"help.text"
-msgid "<ahelp hid=\".\">If enabled, you must hold down the Ctrl key while clicking a hyperlink to follow that link. If not enabled, a click opens the hyperlink.</ahelp>"
-msgstr "<ahelp hid=\".\">Ако е отметнато, трябва да задържите клавиша Ctrl при щракване върху хипервръзка, за да я задействате. Ако не е отметнато, хипервръзката се отваря с обикновено щракване.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/ctrlclick\">If enabled, you must hold down the Ctrl key while clicking a hyperlink to follow that link. If not enabled, a click opens the hyperlink.</ahelp>"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id1972107\n"
+"help.text"
+msgid "Block any links from documents not among the trusted locations (see Macro Security)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id79043\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/blockuntrusted\">Blocks the use of links pointing to images not in the trusted locations defined on the <link href=\"text/shared/optionen/macrosecurity_ts.xhp\" name=\"Trusted Sources\">Trusted Sources</link> tab of the Macro Security dialog.</ahelp> This can increase security in case you work with documents from untrusted sources (e.g. the internet) and are worried about vulnerabilities in image processing software components. Blocking the use of links means that images are not loaded in documents, only a placeholder frame is visible."
+msgstr ""
#: 01030300.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/smath.po b/source/bg/helpcontent2/source/text/smath.po
index a72a029f812..44adf972f51 100644
--- a/source/bg/helpcontent2/source/text/smath.po
+++ b/source/bg/helpcontent2/source/text/smath.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-08-25 12:34+0200\n"
+"POT-Creation-Date: 2016-12-27 21:50+0100\n"
"PO-Revision-Date: 2015-08-27 09:39+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440668386.000000\n"
#: main0000.xhp
@@ -248,10 +248,9 @@ msgstr "<link href=\"text/smath/main0103.xhp\" name=\"View\">Изглед</link>
msgctxt ""
"main0103.xhp\n"
"par_id3147338\n"
-"2\n"
"help.text"
-msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the <emph>Commands</emph> window can also be accessed through a mouse click if you have already opened the Elements window with <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><emph>View - Elements</emph></link>."
-msgstr "Служи за задаване мащаба на изображението и видимостта на различните елементи. Повечето команди, които можете да въвеждате в прозореца <emph>Команди</emph>, са достъпни и чрез щракване с мишката, ако сте отворили прозореца „Елементи на формула“ с командата <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><emph>Изглед - Елементи на формула</emph></link>."
+msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the <emph>Commands</emph> window can also be accessed through a mouse click if you have already opened the Elements pane with <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><emph>View - Elements</emph></link>."
+msgstr ""
#: main0103.xhp
msgctxt ""
@@ -614,7 +613,6 @@ msgstr "Формули в контекст"
msgctxt ""
"main0503.xhp\n"
"par_id3148774\n"
-"8\n"
"help.text"
-msgid "To make working with formulas easier, use the context menus, which can be called up with a right mouse click. This applies especially to the Commands window. This context menu contains all the commands that are found in the Elements window, and also operators, and so on, which can be inserted into your formula by mouse-click without having to key them into the Commands window."
-msgstr "За да улесните работата си с формули, ползвайте контекстните менюта, достъпни чрез щракване с десния бутон. Това важи особено за прозореца „Команди“. Неговото контекстно меню съдържа всички команди от прозореца „Елементи на формула“ заедно със символи за операции и други, които можете да вмъквате във формулата с едно щракване, вместо да ги набирате с клавиатурата."
+msgid "To make working with formulas easier, use the context menus, which can be called up with a right mouse click. This applies especially to the Commands window. This context menu contains all the commands that are found in the Elements pane, and also operators, and so on, which can be inserted into your formula by mouse-click without having to key them into the Commands window."
+msgstr ""
diff --git a/source/bg/helpcontent2/source/text/smath/00.po b/source/bg/helpcontent2/source/text/smath/00.po
index 6dae6a3c878..1de1491bae5 100644
--- a/source/bg/helpcontent2/source/text/smath/00.po
+++ b/source/bg/helpcontent2/source/text/smath/00.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 12:17+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"PO-Revision-Date: 2015-11-17 11:48+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449836265.000000\n"
+"X-POOTLE-MTIME: 1447760932.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -311,31 +311,13 @@ msgstr "Отворете контекстното меню в прозореца
msgctxt ""
"00000004.xhp\n"
"par_id3154106\n"
-"71\n"
"help.text"
-msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
-msgstr "Изберете <emph>Изглед - Елементи</emph> - в прозореца Елементи щракнете върху"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153535\n"
-"help.text"
-msgid "<image id=\"img_id3151310\" src=\"res/helpimg/starmath/im21101.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151310\">Icon</alt></image>"
+msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Unary/Binary Operators</emph> from the listbox."
msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
-"par_id3153774\n"
-"72\n"
-"help.text"
-msgid "Unary/Binary Operators"
-msgstr "Едноместни/двуместни операции"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
"par_id3150360\n"
"73\n"
"help.text"
@@ -346,31 +328,13 @@ msgstr "Отворете контекстното меню в прозореца
msgctxt ""
"00000004.xhp\n"
"par_id3154473\n"
-"74\n"
"help.text"
-msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
-msgstr "Изберете <emph>Изглед - Елементи</emph> - в прозореца Елементи щракнете върху"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147531\n"
-"help.text"
-msgid "<image id=\"img_id3151103\" src=\"res/helpimg/starmath/bi21309.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151103\">Icon</alt></image>"
+msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Relations</emph> from the listbox."
msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
-"par_id3150833\n"
-"75\n"
-"help.text"
-msgid "Relations"
-msgstr "Релации"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
"par_id3149687\n"
"37\n"
"help.text"
@@ -381,31 +345,13 @@ msgstr "Отворете контекстното меню в прозореца
msgctxt ""
"00000004.xhp\n"
"par_id3149342\n"
-"76\n"
"help.text"
-msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
-msgstr "Изберете <emph>Изглед - Елементи</emph> - в прозореца Елементи щракнете върху"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146921\n"
-"help.text"
-msgid "<image id=\"img_id3146927\" src=\"res/helpimg/starmath/im21105.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146927\">Icon</alt></image>"
+msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Operators</emph> from the listbox."
msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
-"par_id3148990\n"
-"39\n"
-"help.text"
-msgid "Operators"
-msgstr "Операции"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
"par_id3149297\n"
"40\n"
"help.text"
@@ -416,31 +362,13 @@ msgstr "Отворете контекстното меню в прозореца
msgctxt ""
"00000004.xhp\n"
"par_id3143275\n"
-"77\n"
-"help.text"
-msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
-msgstr "Изберете <emph>Изглед - Елементи</emph> - в прозореца Елементи щракнете върху"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149103\n"
"help.text"
-msgid "<image id=\"img_id3154825\" src=\"res/helpimg/starmath/im21104.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3154825\">Icon</alt></image>"
+msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Functions</emph> from the listbox."
msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
-"par_id3149796\n"
-"42\n"
-"help.text"
-msgid "Functions"
-msgstr "Функции"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
"par_id3147092\n"
"43\n"
"help.text"
@@ -451,31 +379,13 @@ msgstr "Отворете контекстното меню в прозореца
msgctxt ""
"00000004.xhp\n"
"par_id3147220\n"
-"78\n"
-"help.text"
-msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
-msgstr "Изберете <emph>Изглед - Елементи</emph> - в прозореца Елементи щракнете върху"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147584\n"
"help.text"
-msgid "<image id=\"img_id3148733\" src=\"res/helpimg/starmath/im21107.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148733\">Icon</alt></image>"
+msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Brackets</emph> from the listbox."
msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
-"par_id3147330\n"
-"45\n"
-"help.text"
-msgid "Brackets"
-msgstr "Скоби"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
"par_id3153510\n"
"46\n"
"help.text"
@@ -486,31 +396,13 @@ msgstr "Отворете контекстното меню в прозореца
msgctxt ""
"00000004.xhp\n"
"par_id3147126\n"
-"79\n"
-"help.text"
-msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
-msgstr "Изберете <emph>Изглед - Елементи</emph> - в прозореца Елементи щракнете върху"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154376\n"
"help.text"
-msgid "<image id=\"img_id3154390\" src=\"res/helpimg/starmath/at21706.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154390\">Icon</alt></image>"
+msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Attributes</emph> from the listbox."
msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
-"par_id3153361\n"
-"48\n"
-"help.text"
-msgid "Attributes"
-msgstr "Атрибути"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
"par_id3154114\n"
"49\n"
"help.text"
@@ -521,31 +413,13 @@ msgstr "Отворете контекстното меню в прозореца
msgctxt ""
"00000004.xhp\n"
"par_id3150581\n"
-"80\n"
"help.text"
-msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
-msgstr "Изберете <emph>Изглед - Елементи</emph> - в прозореца Елементи щракнете върху"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3151029\n"
-"help.text"
-msgid "<image id=\"img_id3151036\" src=\"res/helpimg/starmath/im21108.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151036\">Icon</alt></image>"
+msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Formats</emph> from the listbox."
msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
-"par_id3155119\n"
-"51\n"
-"help.text"
-msgid "Formats"
-msgstr "Формати"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
"par_id3149008\n"
"52\n"
"help.text"
@@ -556,31 +430,13 @@ msgstr "Отворете контекстното меню в прозореца
msgctxt ""
"00000004.xhp\n"
"par_id3147313\n"
-"81\n"
"help.text"
-msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
-msgstr "Изберете <emph>Изглед - Елементи</emph> - в прозореца Елементи щракнете върху"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3151377\n"
-"help.text"
-msgid "<image id=\"img_id3151384\" src=\"res/helpimg/starmath/op21401.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151384\">Icon</alt></image>"
+msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Set Operations</emph> from the listbox."
msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
-"par_id3150686\n"
-"54\n"
-"help.text"
-msgid "Set Operations"
-msgstr "Операции с множества"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
"par_id3150109\n"
"55\n"
"help.text"
@@ -717,29 +573,12 @@ msgctxt ""
"par_id3153968\n"
"91\n"
"help.text"
-msgid "Choose <emph>View - Elements</emph> - in the Elements window, click"
-msgstr "Изберете <emph>Изглед - Елементи</emph> - в прозореца Елементи щракнете върху"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154715\n"
-"help.text"
-msgid "<image id=\"img_id3154722\" src=\"res/helpimg/starmath/im21117.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154722\">Icon</alt></image>"
+msgid "Choose <emph>View - Elements</emph>; then on the Elements pane select <emph>Others</emph> from the listbox."
msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
-"par_id3150459\n"
-"92\n"
-"help.text"
-msgid "Others"
-msgstr "Други"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
"par_id3145626\n"
"help.text"
msgid "<image id=\"img_id3145632\" src=\"cmd/sc_formelcursor.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145632\">Icon</alt></image>"
diff --git a/source/bg/helpcontent2/source/text/smath/01.po b/source/bg/helpcontent2/source/text/smath/01.po
index 15a5a2da78a..2d17801824b 100644
--- a/source/bg/helpcontent2/source/text/smath/01.po
+++ b/source/bg/helpcontent2/source/text/smath/01.po