summaryrefslogtreecommitdiff
path: root/canvas/source
diff options
context:
space:
mode:
Diffstat (limited to 'canvas/source')
-rw-r--r--canvas/source/cairo/cairo_canvasfont.cxx4
-rw-r--r--canvas/source/cairo/cairo_canvashelper_text.cxx8
-rw-r--r--canvas/source/cairo/cairo_textlayout.cxx8
-rw-r--r--canvas/source/directx/dx_textlayout_drawhelper.cxx8
-rw-r--r--canvas/source/opengl/ogl_canvashelper.cxx4
-rw-r--r--canvas/source/vcl/canvasfont.cxx4
-rw-r--r--canvas/source/vcl/impltools.cxx8
-rw-r--r--canvas/source/vcl/spritecanvashelper.cxx2
-rw-r--r--canvas/source/vcl/spritehelper.cxx2
9 files changed, 24 insertions, 24 deletions
diff --git a/canvas/source/cairo/cairo_canvasfont.cxx b/canvas/source/cairo/cairo_canvasfont.cxx
index 505ebd2acf01..8aca75baa26a 100644
--- a/canvas/source/cairo/cairo_canvasfont.cxx
+++ b/canvas/source/cairo/cairo_canvasfont.cxx
@@ -68,7 +68,7 @@ namespace cairocanvas
const bool bOldMapState( pOutDev->IsMapModeEnabled() );
pOutDev->EnableMapMode(false);
- const Size aSize = pOutDev->GetFontMetric( *maFont ).GetSize();
+ const Size aSize = pOutDev->GetFontMetric( *maFont ).GetFontSize();
const double fDividend( rFontMatrix.m10 + rFontMatrix.m11 );
double fStretch = (rFontMatrix.m00 + rFontMatrix.m01);
@@ -78,7 +78,7 @@ namespace cairocanvas
const long nNewWidth = ::basegfx::fround( aSize.Width() * fStretch );
- maFont->SetWidth( nNewWidth );
+ maFont->SetAverageFontWidth( nNewWidth );
pOutDev->EnableMapMode(bOldMapState);
}
diff --git a/canvas/source/cairo/cairo_canvashelper_text.cxx b/canvas/source/cairo/cairo_canvashelper_text.cxx
index f1c829da3126..03246f7b37a7 100644
--- a/canvas/source/cairo/cairo_canvashelper_text.cxx
+++ b/canvas/source/cairo/cairo_canvashelper_text.cxx
@@ -81,7 +81,7 @@ namespace cairocanvas
if( !::rtl::math::approxEqual(aScale.getX(), aScale.getY()) )
{
// retrieve true font width
- const sal_Int32 nFontWidth( rOutDev.GetFontMetric( io_rVCLFont ).GetWidth() );
+ const sal_Int32 nFontWidth( rOutDev.GetFontMetric( io_rVCLFont ).GetAverageFontWidth() );
const sal_Int32 nScaledFontWidth( ::basegfx::fround(nFontWidth * aScale.getX()) );
@@ -92,13 +92,13 @@ namespace cairocanvas
return false;
}
- io_rVCLFont.SetWidth( nScaledFontWidth );
+ io_rVCLFont.SetAverageFontWidth( nScaledFontWidth );
}
if( !::rtl::math::approxEqual(aScale.getY(), 1.0) )
{
- const sal_Int32 nFontHeight( io_rVCLFont.GetHeight() );
- io_rVCLFont.SetHeight( ::basegfx::fround(nFontHeight * aScale.getY()) );
+ const sal_Int32 nFontHeight( io_rVCLFont.GetFontHeight() );
+ io_rVCLFont.SetFontHeight( ::basegfx::fround(nFontHeight * aScale.getY()) );
}
io_rVCLFont.SetOrientation( static_cast< short >( ::basegfx::fround(-fmod(nRotate, 2*M_PI)*(1800.0/M_PI)) ) );
diff --git a/canvas/source/cairo/cairo_textlayout.cxx b/canvas/source/cairo/cairo_textlayout.cxx
index 1e076b3f2f4d..8bb4d46cd074 100644
--- a/canvas/source/cairo/cairo_textlayout.cxx
+++ b/canvas/source/cairo/cairo_textlayout.cxx
@@ -430,8 +430,8 @@ namespace cairocanvas
continue;
vcl::Font aFont = rOutDev.GetFont();
- long nWidth = aFont.GetWidth();
- long nHeight = aFont.GetHeight();
+ long nWidth = aFont.GetAverageFontWidth();
+ long nHeight = aFont.GetFontHeight();
if (nWidth == 0)
nWidth = nHeight;
if (nWidth == 0 || nHeight == 0)
@@ -487,7 +487,7 @@ namespace cairocanvas
SAL_INFO(
"canvas.cairo",
- "Size:(" << aFont.GetWidth() << "," << aFont.GetHeight()
+ "Size:(" << aFont.GetAverageFontWidth() << "," << aFont.GetFontHeight()
<< "), Pos (" << rOutpos.X() << "," << rOutpos.Y()
<< "), G("
<< (cairo_glyphs.size() > 0 ? cairo_glyphs[0].index : -1)
@@ -507,7 +507,7 @@ namespace cairocanvas
//faux bold
if (rSysFontData.bFakeBold)
{
- double bold_dx = 0.5 * sqrt( 0.7 * aFont.GetHeight() );
+ double bold_dx = 0.5 * sqrt( 0.7 * aFont.GetFontHeight() );
int total_steps = 1 * ((int) (bold_dx + 0.5));
// loop to draw the text for every half pixel of displacement
diff --git a/canvas/source/directx/dx_textlayout_drawhelper.cxx b/canvas/source/directx/dx_textlayout_drawhelper.cxx
index cd5f5e903668..8de5f73afeee 100644
--- a/canvas/source/directx/dx_textlayout_drawhelper.cxx
+++ b/canvas/source/directx/dx_textlayout_drawhelper.cxx
@@ -130,7 +130,7 @@ namespace dxcanvas
// adjust to stretched font
if(!::rtl::math::approxEqual(rFontMatrix.m00, rFontMatrix.m11))
{
- const Size aSize = xVirtualDevice->GetFontMetric( aFont ).GetSize();
+ const Size aSize = xVirtualDevice->GetFontMetric( aFont ).GetFontSize();
const double fDividend( rFontMatrix.m10 + rFontMatrix.m11 );
double fStretch = (rFontMatrix.m00 + rFontMatrix.m01);
@@ -139,7 +139,7 @@ namespace dxcanvas
const sal_Int32 nNewWidth = ::basegfx::fround( aSize.Width() * fStretch );
- aFont.SetWidth( nNewWidth );
+ aFont.SetAverageFontWidth( nNewWidth );
}
// set font
@@ -259,7 +259,7 @@ namespace dxcanvas
// adjust to stretched font
if(!::rtl::math::approxEqual(rFontMatrix.m00, rFontMatrix.m11))
{
- const Size aSize = xVirtualDevice->GetFontMetric( aFont ).GetSize();
+ const Size aSize = xVirtualDevice->GetFontMetric( aFont ).GetFontSize();
const double fDividend( rFontMatrix.m10 + rFontMatrix.m11 );
double fStretch = (rFontMatrix.m00 + rFontMatrix.m01);
@@ -268,7 +268,7 @@ namespace dxcanvas
const sal_Int32 nNewWidth = ::basegfx::fround( aSize.Width() * fStretch );
- aFont.SetWidth( nNewWidth );
+ aFont.SetAverageFontWidth( nNewWidth );
}
// set font
diff --git a/canvas/source/opengl/ogl_canvashelper.cxx b/canvas/source/opengl/ogl_canvashelper.cxx
index b14cc87e5f8a..51a7dd9c9f60 100644
--- a/canvas/source/opengl/ogl_canvashelper.cxx
+++ b/canvas/source/opengl/ogl_canvashelper.cxx
@@ -738,7 +738,7 @@ namespace oglcanvas
// adjust to stretched font
if(!::rtl::math::approxEqual(rFontMatrix.m00, rFontMatrix.m11))
{
- const Size aSize = pVDev->GetFontMetric( aFont ).GetSize();
+ const Size aSize = pVDev->GetFontMetric( aFont ).GetFontSize();
const double fDividend( rFontMatrix.m10 + rFontMatrix.m11 );
double fStretch = (rFontMatrix.m00 + rFontMatrix.m01);
@@ -747,7 +747,7 @@ namespace oglcanvas
const sal_Int32 nNewWidth = ::basegfx::fround( aSize.Width() * fStretch );
- aFont.SetWidth( nNewWidth );
+ aFont.SetAverageFontWidth( nNewWidth );
}
// set font
diff --git a/canvas/source/vcl/canvasfont.cxx b/canvas/source/vcl/canvasfont.cxx
index f65fdf2273ee..cd78c2feda9a 100644
--- a/canvas/source/vcl/canvasfont.cxx
+++ b/canvas/source/vcl/canvasfont.cxx
@@ -68,7 +68,7 @@ namespace vclcanvas
const bool bOldMapState( rOutDev.IsMapModeEnabled() );
rOutDev.EnableMapMode(false);
- const Size aSize = rOutDev.GetFontMetric( *maFont ).GetSize();
+ const Size aSize = rOutDev.GetFontMetric( *maFont ).GetFontSize();
const double fDividend( rFontMatrix.m10 + rFontMatrix.m11 );
double fStretch = (rFontMatrix.m00 + rFontMatrix.m01);
@@ -78,7 +78,7 @@ namespace vclcanvas
const long nNewWidth = ::basegfx::fround( aSize.Width() * fStretch );
- maFont->SetWidth( nNewWidth );
+ maFont->SetAverageFontWidth( nNewWidth );
rOutDev.EnableMapMode(bOldMapState);
}
diff --git a/canvas/source/vcl/impltools.cxx b/canvas/source/vcl/impltools.cxx
index be277286fafc..49afca1d78dd 100644
--- a/canvas/source/vcl/impltools.cxx
+++ b/canvas/source/vcl/impltools.cxx
@@ -117,7 +117,7 @@ namespace vclcanvas
if( !::rtl::math::approxEqual(aScale.getX(), aScale.getY()) )
{
// retrieve true font width
- const sal_Int32 nFontWidth( rOutDev.GetFontMetric( io_rVCLFont ).GetWidth() );
+ const sal_Int32 nFontWidth( rOutDev.GetFontMetric( io_rVCLFont ).GetAverageFontWidth() );
const sal_Int32 nScaledFontWidth( ::basegfx::fround(nFontWidth * aScale.getX()) );
@@ -128,13 +128,13 @@ namespace vclcanvas
return false;
}
- io_rVCLFont.SetWidth( nScaledFontWidth );
+ io_rVCLFont.SetAverageFontWidth( nScaledFontWidth );
}
if( !::rtl::math::approxEqual(aScale.getY(), 1.0) )
{
- const sal_Int32 nFontHeight( io_rVCLFont.GetHeight() );
- io_rVCLFont.SetHeight( ::basegfx::fround(nFontHeight * aScale.getY()) );
+ const sal_Int32 nFontHeight( io_rVCLFont.GetFontHeight() );
+ io_rVCLFont.SetFontHeight( ::basegfx::fround(nFontHeight * aScale.getY()) );
}
io_rVCLFont.SetOrientation( static_cast< short >( ::basegfx::fround(-fmod(nRotate, 2*M_PI)*(1800.0/M_PI)) ) );
diff --git a/canvas/source/vcl/spritecanvashelper.cxx b/canvas/source/vcl/spritecanvashelper.cxx
index c7aee1ffb867..65d1141f7203 100644
--- a/canvas/source/vcl/spritecanvashelper.cxx
+++ b/canvas/source/vcl/spritecanvashelper.cxx
@@ -103,7 +103,7 @@ namespace vclcanvas
const Point& rPos )
{
vcl::Font aVCLFont;
- aVCLFont.SetHeight( 20 );
+ aVCLFont.SetFontHeight( 20 );
aVCLFont.SetColor( Color( INFO_COLOR ) );
rOutDev.SetTextAlign(ALIGN_TOP);
diff --git a/canvas/source/vcl/spritehelper.cxx b/canvas/source/vcl/spritehelper.cxx
index 8c6af62accfe..8dd45e0df909 100644
--- a/canvas/source/vcl/spritehelper.cxx
+++ b/canvas/source/vcl/spritehelper.cxx
@@ -315,7 +315,7 @@ namespace vclcanvas
// paint sprite prio
vcl::Font aVCLFont;
- aVCLFont.SetHeight( std::min(long(20),aOutputSize.Height()) );
+ aVCLFont.SetFontHeight( std::min(long(20),aOutputSize.Height()) );
aVCLFont.SetColor( COL_RED );
rTargetSurface.SetTextAlign(ALIGN_TOP);
sgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
#. xTvak
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:369
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
#. Uc7wm
-#: cui/inc/strings.hrc:370
+#: cui/inc/strings.hrc:371
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Totz os fichers"
#. 8bnrf
-#: cui/inc/strings.hrc:372
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
#. xySty
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr ""
#. XtUDA
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:377
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2020 LibreOffice contributors."
msgstr ""
#. GesDU
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:378
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
#. WCnhx
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:379
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
#. Lz9nx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:380
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
#. 9aeNR
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:381
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr ""
#. q5Myk
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:382
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr ""
#. 3vXzF
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:384
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr ""
#. 8ZaCL
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr ""
#. GceL6
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr ""
#. dRqYc
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr ""
#. 3FZFt
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:390
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
-msgstr ""
+msgstr "L'URL u texto ye masiau extenso pa o libel actual de corrección d'errors. Alcuerce o texto u reduzca o libel de corrección."
#. AD8QJ
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr ""
#. 4LWGV
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:392
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr ""
@@ -4070,72 +4076,78 @@ msgctxt "aboutdialog|AboutDialog"
msgid "About %PRODUCTNAME"
msgstr "Arre~dol de %PRODUCTNAME"
-#. C3pew
-#: cui/uiconfig/ui/aboutdialog.ui:29
-msgctxt "aboutdialog|copy"
-msgid "Copy _Version Info"
-msgstr ""
-
#. rdEwV
-#: cui/uiconfig/ui/aboutdialog.ui:117
+#: cui/uiconfig/ui/aboutdialog.ui:103
msgctxt "aboutdialog|lbVersion"
msgid "Version:"
msgstr ""
#. W6gkc
-#: cui/uiconfig/ui/aboutdialog.ui:131
+#: cui/uiconfig/ui/aboutdialog.ui:117
msgctxt "aboutdialog|lbBuild"
msgid "Build:"
msgstr ""
#. J78bj
-#: cui/uiconfig/ui/aboutdialog.ui:144
+#: cui/uiconfig/ui/aboutdialog.ui:130
msgctxt "aboutdialog|lbEnvironment"
msgid "Environment:"
msgstr ""
#. c2sEB
-#: cui/uiconfig/ui/aboutdialog.ui:197
+#: cui/uiconfig/ui/aboutdialog.ui:183
msgctxt "aboutdialog|lbExtra"
msgid "Misc:"
msgstr ""
#. FwVyQ
-#: cui/uiconfig/ui/aboutdialog.ui:226
+#: cui/uiconfig/ui/aboutdialog.ui:212
msgctxt "aboutdialog|lbLocale"
msgid "Locale:"
msgstr ""
#. SFbP2
-#: cui/uiconfig/ui/aboutdialog.ui:251
+#: cui/uiconfig/ui/aboutdialog.ui:237
msgctxt "aboutdialog|lbUI"
msgid "User Interface:"
msgstr ""
#. KFo3i
-#: cui/uiconfig/ui/aboutdialog.ui:286
+#: cui/uiconfig/ui/aboutdialog.ui:272
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
#. cFC6E
-#: cui/uiconfig/ui/aboutdialog.ui:326
+#: cui/uiconfig/ui/aboutdialog.ui:312
msgctxt "aboutdialog|credits"
msgid "Credits"
msgstr ""
#. VkRAv
-#: cui/uiconfig/ui/aboutdialog.ui:342
+#: cui/uiconfig/ui/aboutdialog.ui:328
msgctxt "aboutdialog|website"
msgid "Website"
msgstr ""
#. zSmJb
-#: cui/uiconfig/ui/aboutdialog.ui:358
+#: cui/uiconfig/ui/aboutdialog.ui:344
msgctxt "aboutdialog|description"
msgid "Release Notes"
msgstr ""
+#. 5TUrF
+#: cui/uiconfig/ui/aboutdialog.ui:371
+msgctxt "aboutdialog|lbVersionInfo"
+msgid "Version Information"
+msgstr ""
+
+#. jZvGC
+#: cui/uiconfig/ui/aboutdialog.ui:389
+msgctxt "aboutdialog|btnCopyVersionTooltip"
+msgid "Copy all version information in English"
+msgstr ""
+
#. MP3WF
#: cui/uiconfig/ui/accelconfigpage.ui:132
msgctxt "accelconfigpage|label21"
@@ -5799,7 +5811,7 @@ msgstr ""
#: cui/uiconfig/ui/colorconfigwin.ui:33
msgctxt "colorconfigwin|doccolor"
msgid "Document background"
-msgstr ""
+msgstr "Fundo d'o documento"
#. hDvCW
#: cui/uiconfig/ui/colorconfigwin.ui:79
@@ -8351,7 +8363,7 @@ msgstr ""
#: cui/uiconfig/ui/hatchpage.ui:307
msgctxt "hatchpage|backgroundcolor"
msgid "Background Color"
-msgstr ""
+msgstr "Color d'o fundo"
#. uvmDA
#: cui/uiconfig/ui/hatchpage.ui:354
@@ -10017,7 +10029,7 @@ msgstr ""
#: cui/uiconfig/ui/numberingformatpage.ui:342
msgctxt "numberingformatpage|thousands"
msgid "_Thousands separator"
-msgstr ""
+msgstr "Separador de _milars"
#. rsmBU
#: cui/uiconfig/ui/numberingformatpage.ui:370
@@ -12508,10 +12520,10 @@ msgctxt "optviewpage|label4"
msgid "Mouse"
msgstr ""
-#. uocGg
+#. crQSQ
#: cui/uiconfig/ui/optviewpage.ui:154
msgctxt "optviewpage|label13"
-msgid "Menubar icons:"
+msgid "Menu icons:"
msgstr ""
#. XKRM7
@@ -13364,57 +13376,57 @@ msgctxt "password|PasswordDialog"
msgid "Set Password"
msgstr ""
-#. ujTNz
-#: cui/uiconfig/ui/password.ui:92
-msgctxt "password|label5"
-msgid "Confirm password"
-msgstr ""
-
-#. wqXmU
-#: cui/uiconfig/ui/password.ui:106
-msgctxt "password|label4"
-msgid "_Enter password to open"
-msgstr ""
-
#. vMhFF
-#: cui/uiconfig/ui/password.ui:149
+#: cui/uiconfig/ui/password.ui:121
msgctxt "password|label1"
msgid "Note: After a password has been set, the document will only open with the password. Should you lose the password, there will be no way to recover the document. Please also note that this password is case-sensitive."
msgstr ""
#. scLkF
-#: cui/uiconfig/ui/password.ui:183
+#: cui/uiconfig/ui/password.ui:155
msgctxt "password|readonly"
msgid "Open file read-only"
msgstr ""
#. f5Ydx
-#: cui/uiconfig/ui/password.ui:200
+#: cui/uiconfig/ui/password.ui:204
msgctxt "password|label7"
msgid "Enter password to allow editing"
msgstr ""
#. AgwpD
-#: cui/uiconfig/ui/password.ui:228
+#: cui/uiconfig/ui/password.ui:248
msgctxt "password|label8"
msgid "Confirm password"
msgstr ""
#. SEgNR
-#: cui/uiconfig/ui/password.ui:260
+#: cui/uiconfig/ui/password.ui:292
msgctxt "password|label6"
msgid "File Sharing Password"
msgstr ""
#. Sjh3k
-#: cui/uiconfig/ui/password.ui:272
+#: cui/uiconfig/ui/password.ui:304
#, fuzzy
msgctxt "password|label3"
msgid "_Options"
msgstr "Opcions"
+#. wqXmU
+#: cui/uiconfig/ui/password.ui:322
+msgctxt "password|label4"
+msgid "_Enter password to open"
+msgstr ""
+
+#. ujTNz
+#: cui/uiconfig/ui/password.ui:366
+msgctxt "password|label5"
+msgid "Confirm password"
+msgstr ""
+
#. FfyCu
-#: cui/uiconfig/ui/password.ui:290
+#: cui/uiconfig/ui/password.ui:410
msgctxt "password|label2"
msgid "File Encryption Password"
msgstr ""
diff --git a/source/an/dbaccess/messages.po b/source/an/dbaccess/messages.po
index a79111b798b..5eb01ab0142 100644
--- a/source/an/dbaccess/messages.po
+++ b/source/an/dbaccess/messages.po
@@ -4,16 +4,16 @@ 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: 2020-05-25 19:59+0200\n"
-"PO-Revision-Date: 2018-04-24 10:38+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2020-06-21 08:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/an/>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 3.10.3\n"
"X-POOTLE-MTIME: 1524566312.000000\n"
#. BiN6g
@@ -1467,7 +1467,7 @@ msgstr ""
#: dbaccess/inc/strings.hrc:271
msgctxt "STR_ENTER_CONNECTION_PASSWORD"
msgid "A password is needed to connect to the data source \"$name$\"."
-msgstr ""
+msgstr "S'amenista una clau de paso ta connectar a la base de datos «$name$»."
#. tYDxc
#: dbaccess/inc/strings.hrc:272
@@ -2987,7 +2987,7 @@ msgstr "Estau"
#: dbaccess/uiconfig/ui/directsqldialog.ui:289
msgctxt "directsqldialog|label3"
msgid "Output"
-msgstr ""
+msgstr "Salida"
#. YiZrG
#: dbaccess/uiconfig/ui/fielddescpage.ui:59
@@ -4600,43 +4600,43 @@ msgstr ""
#: dbaccess/uiconfig/ui/textpage.ui:219
msgctxt "textpage|thousandslabel"
msgid "Thousands separator:"
-msgstr ""
+msgstr "Separador de milars:"
#. DSrai
#: dbaccess/uiconfig/ui/textpage.ui:272
msgctxt "textpage|decimalseparator"
msgid "."
-msgstr ""
+msgstr "."
#. yWQdQ
#: dbaccess/uiconfig/ui/textpage.ui:273
msgctxt "textpage|decimalseparator"
msgid ","
-msgstr ""
+msgstr ","
#. rD7yP
#: dbaccess/uiconfig/ui/textpage.ui:274
msgctxt "textpage|decimalseparator"
msgid ";"
-msgstr ""
+msgstr ";"
#. FBFxB
#: dbaccess/uiconfig/ui/textpage.ui:275
msgctxt "textpage|decimalseparator"
msgid ":"
-msgstr ""
+msgstr ":"
#. cuU6W
#: dbaccess/uiconfig/ui/textpage.ui:296
msgctxt "textpage|thousandsseparator"
msgid "."
-msgstr ""
+msgstr "."
#. 7y57B
#: dbaccess/uiconfig/ui/textpage.ui:297
msgctxt "textpage|thousandsseparator"
msgid ","
-msgstr ""
+msgstr ","
#. R3dp6
#: dbaccess/uiconfig/ui/textpage.ui:319
diff --git a/source/an/desktop/messages.po b/source/an/desktop/messages.po
index 8218188b0e7..6aca7a7bb09 100644
--- a/source/an/desktop/messages.po
+++ b/source/an/desktop/messages.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: 2020-05-19 12:41+0200\n"
-"PO-Revision-Date: 2020-02-18 14:15+0000\n"
+"PO-Revision-Date: 2020-06-21 08:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/desktopmessages/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 3.10.3\n"
"X-POOTLE-MTIME: 1535974853.000000\n"
#. v2iwK
@@ -50,7 +50,7 @@ msgstr ""
#: desktop/inc/strings.hrc:30
msgctxt "RID_STR_SYNCHRONIZING_REPOSITORY"
msgid "Synchronizing repository for %NAME extensions"
-msgstr ""
+msgstr "Se ye sincronizando o reposte d'as extensions «%NAME»"
#. dp8bf
#: desktop/inc/strings.hrc:32
diff --git a/source/an/dictionaries/be_BY.po b/source/an/dictionaries/be_BY.po
index cc7407946af..358ff3c6ded 100644
--- a/source/an/dictionaries/be_BY.po
+++ b/source/an/dictionaries/be_BY.po
@@ -3,21 +3,24 @@ 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: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2020-06-22 17:23+0200\n"
+"PO-Revision-Date: 2013-05-23 22:17+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369347430.000000\n"
+#. JAotG
#: description.xml
msgctxt ""
"description.xml\n"
"dispname\n"
"description.text"
-msgid "Belarusian spelling dictionary"
+msgid "Belarusian spelling dictionary and hyphenation"
msgstr ""
diff --git a/source/an/editeng/messages.po b/source/an/editeng/messages.po
index 91d3c2b5c45..3f3edff1110 100644
--- a/source/an/editeng/messages.po
+++ b/source/an/editeng/messages.po
@@ -4,16 +4,16 @@ 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: 2019-12-17 14:17+0100\n"
-"PO-Revision-Date: 2018-01-15 15:08+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2020-06-21 08:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/editengmessages/an/>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 3.10.3\n"
"X-POOTLE-MTIME: 1516028889.000000\n"
#. BHYB4
@@ -1636,7 +1636,7 @@ msgstr ""
#: include/editeng/editrids.hrc:298
msgctxt "RID_SVXSTR_A11Y_PARAGRAPH_DESCRIPTION"
msgid "Paragraph: $(ARG) "
-msgstr ""
+msgstr "Paragrafo: $(ARG) "
#. ZQDDe
#: include/editeng/editrids.hrc:300
diff --git a/source/an/extensions/messages.po b/source/an/extensions/messages.po
index d98fa4f04ea..c1375ef855d 100644
--- a/source/an/extensions/messages.po
+++ b/source/an/extensions/messages.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: 2020-05-19 12:41+0200\n"
-"PO-Revision-Date: 2020-01-24 17:03+0000\n"
+"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/extensionsmessages/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 3.10.3\n"
"X-POOTLE-MTIME: 1542022400.000000\n"
#. cBx8W
@@ -838,7 +838,7 @@ msgstr ""
#: extensions/inc/strings.hrc:35
msgctxt "RID_STR_SHOWTHOUSANDSEP"
msgid "Thousands separator"
-msgstr ""
+msgstr "Separador de milars"
#. Q9amQ
#: extensions/inc/strings.hrc:36
@@ -959,7 +959,7 @@ msgstr "Tipo de letra"
#: extensions/inc/strings.hrc:55
msgctxt "RID_STR_BACKGROUNDCOLOR"
msgid "Background color"
-msgstr ""
+msgstr "Color d'o fundo"
#. oCdK3
#: extensions/inc/strings.hrc:56
@@ -2132,7 +2132,7 @@ msgstr ""
#: extensions/inc/strings.hrc:251
msgctxt "RID_STR_HEADERBACKGROUNDCOLOR"
msgid "Header background color"
-msgstr ""
+msgstr "Color d'o fundo d'o capitero"
#. fkCyv
#: extensions/inc/strings.hrc:252
diff --git a/source/an/extras/source/gallery/share.po b/source/an/extras/source/gallery/share.po
index 96c1660b639..146865213b4 100644
--- a/source/an/extras/source/gallery/share.po
+++ b/source/an/extras/source/gallery/share.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: 2020-04-08 14:22+0200\n"
+"POT-Creation-Date: 2020-06-22 17:23+0200\n"
"PO-Revision-Date: 2020-03-14 17:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/extrassourcegalleryshare/an/>\n"
@@ -34,14 +34,14 @@ msgctxt ""
msgid "Backgrounds"
msgstr ""
-#. TJEqa
+#. kuNKS
#: gallery_names.ulf
msgctxt ""
"gallery_names.ulf\n"
-"computers\n"
+"bpmn\n"
"LngText.text"
-msgid "Computers"
-msgstr "Ordinadors"
+msgid "BPMN"
+msgstr "BPMN"
#. arWXh
#: gallery_names.ulf
@@ -52,41 +52,41 @@ msgctxt ""
msgid "Diagrams"
msgstr ""
-#. BKVWE
+#. yKmgV
#: gallery_names.ulf
msgctxt ""
"gallery_names.ulf\n"
-"education\n"
+"flowchart\n"
"LngText.text"
-msgid "School & University"
+msgid "Flow chart"
msgstr ""
-#. fLsJB
+#. YSm8F
#: gallery_names.ulf
msgctxt ""
"gallery_names.ulf\n"
-"environment\n"
+"icons\n"
"LngText.text"
-msgid "Environment"
+msgid "Icons"
msgstr ""
-#. YYvHm
+#. PCCbZ
#: gallery_names.ulf
msgctxt ""
"gallery_names.ulf\n"
-"finance\n"
+"network\n"
"LngText.text"
-msgid "Finance"
+msgid "Network"
msgstr ""
-#. DA7b8
+#. YAZe6
#: gallery_names.ulf
msgctxt ""
"gallery_names.ulf\n"
-"people\n"
+"shapes\n"
"LngText.text"
-msgid "People"
-msgstr "Chent"
+msgid "Shapes"
+msgstr ""
#. FVHrw
#: gallery_names.ulf
@@ -96,30 +96,3 @@ msgctxt ""
"LngText.text"
msgid "Sounds"
msgstr ""
-
-#. SAQv3
-#: gallery_names.ulf
-msgctxt ""
-"gallery_names.ulf\n"
-"symbols\n"
-"LngText.text"
-msgid "Symbols"
-msgstr "Simbolos"
-
-#. JTtG3
-#: gallery_names.ulf
-msgctxt ""
-"gallery_names.ulf\n"
-"txtshapes\n"
-"LngText.text"
-msgid "Text Shapes"
-msgstr ""
-
-#. Jh6xe
-#: gallery_names.ulf
-msgctxt ""
-"gallery_names.ulf\n"
-"transportation\n"
-"LngText.text"
-msgid "Transportation"
-msgstr ""
diff --git a/source/an/librelogo/source/pythonpath.po b/source/an/librelogo/source/pythonpath.po
index ff54c013a52..46df9f828c5 100644
--- a/source/an/librelogo/source/pythonpath.po
+++ b/source/an/librelogo/source/pythonpath.po
@@ -3,19 +3,20 @@ msgid ""
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: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2016-05-01 18:44+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: none\n"
+"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"PO-Revision-Date: 2020-06-21 08:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/librelogosourcepythonpath/an/>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462128244.000000\n"
+"X-Generator: Weblate 3.10.3\n"
+"X-POOTLE-MTIME: 1513250763.000000\n"
+#. tFoAo
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -24,6 +25,7 @@ msgctxt ""
msgid "forward|fd"
msgstr ""
+#. CAynz
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -32,6 +34,7 @@ msgctxt ""
msgid "back|bk"
msgstr ""
+#. C2vPo
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -40,6 +43,7 @@ msgctxt ""
msgid "left|turnleft|lt"
msgstr ""
+#. 77BZH
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -48,6 +52,7 @@ msgctxt ""
msgid "right|turnright|rt"
msgstr ""
+#. CUWGq
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -56,6 +61,7 @@ msgctxt ""
msgid "penup|pu"
msgstr ""
+#. FKDzL
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -64,6 +70,7 @@ msgctxt ""
msgid "pendown|pd"
msgstr ""
+#. BEiyw
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -72,6 +79,7 @@ msgctxt ""
msgid "home"
msgstr ""
+#. KpJ4z
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -81,6 +89,7 @@ msgctxt ""
msgid "point"
msgstr "Puntos"
+#. qKQFP
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -89,6 +98,7 @@ msgctxt ""
msgid "circle"
msgstr ""
+#. svw6Z
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -97,6 +107,7 @@ msgctxt ""
msgid "ellipse"
msgstr ""
+#. MCmRf
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -105,6 +116,7 @@ msgctxt ""
msgid "square"
msgstr ""
+#. C8wfs
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -113,6 +125,7 @@ msgctxt ""
msgid "rectangle"
msgstr ""
+#. amFfu
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -121,6 +134,7 @@ msgctxt ""
msgid "label"
msgstr ""
+#. 2fBcU
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -129,6 +143,7 @@ msgctxt ""
msgid "pencolor|pencolour|linecolor|pc"
msgstr ""
+#. uZsBx
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -137,6 +152,7 @@ msgctxt ""
msgid "any"
msgstr ""
+#. WxpfM
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -145,6 +161,7 @@ msgctxt ""
msgid "pensize|penwidth|linewidth|ps"
msgstr ""
+#. 2Zgzv
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -153,6 +170,7 @@ msgctxt ""
msgid "penstyle|linestyle"
msgstr ""
+#. L9YnA
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -161,6 +179,7 @@ msgctxt ""
msgid "penjoint|linejoint"
msgstr ""
+#. bhT9C
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -169,6 +188,7 @@ msgctxt ""
msgid "pencap|linecap"
msgstr ""
+#. cEECN
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -178,6 +198,7 @@ msgctxt ""
msgid "none"
msgstr "~Garra"
+#. f5mQa
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -186,6 +207,7 @@ msgctxt ""
msgid "bevel"
msgstr ""
+#. R4Z7i
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -194,6 +216,7 @@ msgctxt ""
msgid "miter"
msgstr ""
+#. DX7nN
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -202,6 +225,7 @@ msgctxt ""
msgid "round"
msgstr ""
+#. VSaRQ
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -210,6 +234,7 @@ msgctxt ""
msgid "solid"
msgstr ""
+#. P6PxY
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -218,6 +243,7 @@ msgctxt ""
msgid "dashed"
msgstr ""
+#. NgY8n
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -226,6 +252,7 @@ msgctxt ""
msgid "dotted"
msgstr ""
+#. ti8oV
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -235,6 +262,7 @@ msgctxt ""
msgid "close"
msgstr "Zarrar"
+#. btW32
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -243,6 +271,7 @@ msgctxt ""
msgid "fill"
msgstr ""
+#. nGc2D
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -251,6 +280,7 @@ msgctxt ""
msgid "fillcolor|fillcolour|fc"
msgstr ""
+#. PGzDC
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -259,6 +289,7 @@ msgctxt ""
msgid "filltransparency"
msgstr ""
+#. rREgg
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -267,6 +298,7 @@ msgctxt ""
msgid "pentransparency|linetransparency"
msgstr ""
+#. aYZ9n
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -275,6 +307,7 @@ msgctxt ""
msgid "fillstyle"
msgstr ""
+#. Z2nMa
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -283,6 +316,7 @@ msgctxt ""
msgid "fontcolor|textcolor|textcolour"
msgstr ""
+#. EPJeZ
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -291,6 +325,7 @@ msgctxt ""
msgid "fontsize|textsize|textheight"
msgstr ""
+#. amtRF
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -299,6 +334,7 @@ msgctxt ""
msgid "fontweight"
msgstr ""
+#. Di9ys
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -307,6 +343,7 @@ msgctxt ""
msgid "fontstyle"
msgstr ""
+#. YKYPa
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -315,6 +352,7 @@ msgctxt ""
msgid "bold"
msgstr ""
+#. Q2DmA
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -323,6 +361,7 @@ msgctxt ""
msgid "italic"
msgstr ""
+#. hC7sA
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -331,6 +370,7 @@ msgctxt ""
msgid "upright|normal"
msgstr ""
+#. nG5Yw
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -340,6 +380,7 @@ msgctxt ""
msgid "normal"
msgstr "Normal"
+#. fQ9uy
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -348,6 +389,7 @@ msgctxt ""
msgid "fontfamily"
msgstr ""
+#. Fu2PZ
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -356,6 +398,7 @@ msgctxt ""
msgid "clearscreen|cs"
msgstr ""
+#. 4eTcL
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -364,6 +407,7 @@ msgctxt ""
msgid "text"
msgstr "texto"
+#. oJ8GF
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -372,6 +416,7 @@ msgctxt ""
msgid "hideturtle|ht|hideme"
msgstr ""
+#. pbRce
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -380,6 +425,7 @@ msgctxt ""
msgid "showturtle|st|showme"
msgstr ""
+#. iEgLZ
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -388,6 +434,7 @@ msgctxt ""
msgid "position|pos|setpos"
msgstr ""
+#. ydeVD
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -396,6 +443,7 @@ msgctxt ""
msgid "heading|setheading|seth"
msgstr ""
+#. HpQLM
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -404,6 +452,7 @@ msgctxt ""
msgid "pagesize"
msgstr ""
+#. 9iYXj
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -412,6 +461,7 @@ msgctxt ""
msgid "picture|pic"
msgstr ""
+#. HyJKJ
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -420,6 +470,7 @@ msgctxt ""
msgid "to"
msgstr ""
+#. qMmGB
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -428,6 +479,7 @@ msgctxt ""
msgid "end"
msgstr ""
+#. tcxEM
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -437,6 +489,7 @@ msgctxt ""
msgid "stop"
msgstr "Aturar"
+#. AqQAe
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -445,6 +498,7 @@ msgctxt ""
msgid "repeat|forever"
msgstr ""
+#. pA442
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -453,6 +507,7 @@ msgctxt ""
msgid "repcount"
msgstr ""
+#. NEdAp
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -461,6 +516,7 @@ msgctxt ""
msgid "break"
msgstr ""
+#. ccxHX
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -469,6 +525,7 @@ msgctxt ""
msgid "continue"
msgstr ""
+#. 5ZmQX
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -477,6 +534,7 @@ msgctxt ""
msgid "while"
msgstr ""
+#. v4dsv
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -485,6 +543,7 @@ msgctxt ""
msgid "for"
msgstr ""
+#. hUxfV
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -493,6 +552,7 @@ msgctxt ""
msgid "in"
msgstr ""
+#. r8rdq
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -501,30 +561,34 @@ msgctxt ""
msgid "if"
msgstr ""
+#. fFrZA
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
"OUTPUT\n"
"property.text"
msgid "output"
-msgstr ""
+msgstr "salida"
+#. WHewy
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
"LEFTSTRING\n"
"property.text"
msgid "“|‘"
-msgstr ""
+msgstr "“|‘|«"
+#. dmm7x
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
"RIGHTSTRING\n"
"property.text"
msgid "”|’"
-msgstr ""
+msgstr "”|’|»"
+#. rNpFP
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -533,6 +597,7 @@ msgctxt ""
msgid "true"
msgstr ""
+#. bhF65
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -541,6 +606,7 @@ msgctxt ""
msgid "false"
msgstr ""
+#. 8QhvZ
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -549,6 +615,7 @@ msgctxt ""
msgid "not"
msgstr ""
+#. iW2Yh
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -557,6 +624,7 @@ msgctxt ""
msgid "and"
msgstr ""
+#. B3QGc
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -565,14 +633,16 @@ msgctxt ""
msgid "or"
msgstr ""
+#. E9emy
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
"INPUT\n"
"property.text"
msgid "input"
-msgstr ""
+msgstr "dentrada"
+#. n3DWZ
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -582,6 +652,7 @@ msgctxt ""
msgid "print"
msgstr "Imprentar"
+#. LVNRT
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -590,6 +661,7 @@ msgctxt ""
msgid "sleep"
msgstr ""
+#. 9h7xn
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -598,6 +670,7 @@ msgctxt ""
msgid "global"
msgstr ""
+#. BEhG8
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -606,6 +679,7 @@ msgctxt ""
msgid "random"
msgstr ""
+#. 7ety4
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -614,6 +688,7 @@ msgctxt ""
msgid "int"
msgstr ""
+#. aXDnB
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -622,6 +697,7 @@ msgctxt ""
msgid "float"
msgstr ""
+#. X7Xrx
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -630,6 +706,7 @@ msgctxt ""
msgid "str"
msgstr ""
+#. xTjuZ
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -638,6 +715,7 @@ msgctxt ""
msgid "sqrt"
msgstr ""
+#. rCfuG
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -646,6 +724,7 @@ msgctxt ""
msgid "log10"
msgstr ""
+#. hvSEG
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -654,6 +733,7 @@ msgctxt ""
msgid "sin"
msgstr ""
+#. V37dC
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -662,6 +742,7 @@ msgctxt ""
msgid "cos"
msgstr ""
+#. irCAi
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -670,6 +751,7 @@ msgctxt ""
msgid "round"
msgstr ""
+#. mK7BU
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -678,6 +760,7 @@ msgctxt ""
msgid "abs"
msgstr ""
+#. mMFnH
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -687,6 +770,7 @@ msgctxt ""
msgid "count"
msgstr "Cuenta"
+#. REzwU
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -695,6 +779,7 @@ msgctxt ""
msgid "set"
msgstr ""
+#. 2HJLi
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -704,6 +789,7 @@ msgctxt ""
msgid "range"
msgstr "Narancha"
+#. 5v85t
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -713,6 +799,7 @@ msgctxt ""
msgid "list"
msgstr "Lista"
+#. WG9L8
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -721,6 +808,7 @@ msgctxt ""
msgid "tuple"
msgstr ""
+#. AwCpS
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -729,6 +817,7 @@ msgctxt ""
msgid "sorted"
msgstr ""
+#. E3ZWb
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -737,6 +826,7 @@ msgctxt ""
msgid "sub"
msgstr ""
+#. EQKA9
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -745,6 +835,7 @@ msgctxt ""
msgid "search"
msgstr ""
+#. 6qhHD
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -753,6 +844,7 @@ msgctxt ""
msgid "findall"
msgstr ""
+#. K3QbE
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -761,6 +853,7 @@ msgctxt ""
msgid "min"
msgstr ""
+#. jk5VB
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -769,6 +862,7 @@ msgctxt ""
msgid "max"
msgstr ""
+#. UMhvT
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -777,6 +871,7 @@ msgctxt ""
msgid "pi|π"
msgstr ""
+#. 6iBXP
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -785,6 +880,7 @@ msgctxt ""
msgid "."
msgstr ""
+#. jVbjB
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -793,6 +889,7 @@ msgctxt ""
msgid "°"
msgstr ""
+#. qKdwN
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -801,6 +898,7 @@ msgctxt ""
msgid "h"
msgstr ""
+#. h63E5
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -809,6 +907,7 @@ msgctxt ""
msgid "mm"
msgstr ""
+#. RRfTD
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -817,6 +916,7 @@ msgctxt ""
msgid "cm"
msgstr ""
+#. hGRGr
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -825,6 +925,7 @@ msgctxt ""
msgid "pt"
msgstr ""
+#. NVaj5
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -833,6 +934,7 @@ msgctxt ""
msgid "in|\""
msgstr ""
+#. uCFwP
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -841,6 +943,7 @@ msgctxt ""
msgid "invisible"
msgstr ""
+#. DovQK
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -849,6 +952,7 @@ msgctxt ""
msgid "black"
msgstr ""
+#. MGAxA
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -857,6 +961,7 @@ msgctxt ""
msgid "silver"
msgstr ""
+#. 9LBUQ
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -865,6 +970,7 @@ msgctxt ""
msgid "gray|grey"
msgstr ""
+#. oAy3e
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -873,6 +979,7 @@ msgctxt ""
msgid "white"
msgstr ""
+#. GfsGA
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -881,6 +988,7 @@ msgctxt ""
msgid "maroon"
msgstr ""
+#. YhZ6h
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -889,6 +997,7 @@ msgctxt ""
msgid "red"
msgstr ""
+#. DthAM
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -897,6 +1006,7 @@ msgctxt ""
msgid "purple"
msgstr ""
+#. Q44aX
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -905,6 +1015,7 @@ msgctxt ""
msgid "fuchsia|magenta"
msgstr ""
+#. gwpzS
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -914,6 +1025,7 @@ msgctxt ""
msgid "green"
msgstr "Verde"
+#. tLqpS
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -923,6 +1035,7 @@ msgctxt ""
msgid "lime"
msgstr "Hora"
+#. AQueV
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -931,6 +1044,7 @@ msgctxt ""
msgid "olive"
msgstr ""
+#. Xgbet
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -939,6 +1053,7 @@ msgctxt ""
msgid "yellow"
msgstr ""
+#. J5atG
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -947,6 +1062,7 @@ msgctxt ""
msgid "navy"
msgstr ""
+#. TX4g3
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -956,6 +1072,7 @@ msgctxt ""
msgid "blue"
msgstr "Azul"
+#. pDbAn
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -964,6 +1081,7 @@ msgctxt ""
msgid "teal"
msgstr ""
+#. GBgD2
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -972,6 +1090,7 @@ msgctxt ""
msgid "aqua|cyan"
msgstr ""
+#. 5BkSB
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -980,6 +1099,7 @@ msgctxt ""
msgid "pink"
msgstr ""
+#. TZq8Z
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -988,6 +1108,7 @@ msgctxt ""
msgid "tomato"
msgstr ""
+#. FKcUk
#: LibreLogo_en_US.properties
#, fuzzy
msgctxt ""
@@ -997,6 +1118,7 @@ msgctxt ""
msgid "orange"
msgstr "Narancha"
+#. 3EnvX
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1005,6 +1127,7 @@ msgctxt ""
msgid "gold"
msgstr ""
+#. xRupD
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1013,6 +1136,7 @@ msgctxt ""
msgid "violet"
msgstr ""
+#. TUvm5
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1021,6 +1145,7 @@ msgctxt ""
msgid "skyblue"
msgstr ""
+#. HsKEB
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1029,6 +1154,7 @@ msgctxt ""
msgid "chocolate"
msgstr ""
+#. FSQCT
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1037,6 +1163,7 @@ msgctxt ""
msgid "brown"
msgstr ""
+#. PTgyD
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1045,6 +1172,7 @@ msgctxt ""
msgid "LibreLogo"
msgstr ""
+#. 8BZVa
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1053,6 +1181,7 @@ msgctxt ""
msgid "Error (in line %s)"
msgstr ""
+#. 4dBoE
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1061,6 +1190,7 @@ msgctxt ""
msgid "Division by zero."
msgstr ""
+#. gjBf3
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1069,6 +1199,7 @@ msgctxt ""
msgid "Unknown name: “%s”."
msgstr ""
+#. oVW6Y
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1077,6 +1208,7 @@ msgctxt ""
msgid "%s takes %s arguments (%s given)."
msgstr ""
+#. 9GTjj
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1085,6 +1217,7 @@ msgctxt ""
msgid "Error (extra or missing spaces at brackets?)"
msgstr ""
+#. xHSSL
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1093,6 +1226,7 @@ msgctxt ""
msgid "Unknown element: %s"
msgstr ""
+#. acBGX
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1101,6 +1235,7 @@ msgctxt ""
msgid "Index out of range."
msgstr ""
+#. wtR3a
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1109,6 +1244,7 @@ msgctxt ""
msgid "Program terminated:"
msgstr ""
+#. YBhxX
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1117,6 +1253,7 @@ msgctxt ""
msgid "maximum recursion depth (%d) exceeded."
msgstr ""
+#. 8X5oD
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
@@ -1125,6 +1262,7 @@ msgctxt ""
msgid "not enough memory."
msgstr ""
+#. GqoAR
#: LibreLogo_en_US.properties
msgctxt ""
"LibreLogo_en_US.properties\n"
diff --git a/source/an/nlpsolver/src/locale.po b/source/an/nlpsolver/src/locale.po
index 47b887cc85f..146e04da238 100644
--- a/source/an/nlpsolver/src/locale.po
+++ b/source/an/nlpsolver/src/locale.po
@@ -4,16 +4,16 @@ 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: 2019-08-21 21:37+0200\n"
-"PO-Revision-Date: 2013-06-22 20:56+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2020-06-21 08:36+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/nlpsolversrclocale/an/>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 3.10.3\n"
"X-POOTLE-MTIME: 1371934604.000000\n"
#. sv3GB
@@ -382,13 +382,12 @@ msgstr "Horas"
#. HURQy
#: NLPSolverStatusDialog_en_US.properties
-#, fuzzy
msgctxt ""
"NLPSolverStatusDialog_en_US.properties\n"
"NLPSolverStatusDialog.Time.Day\n"
"property.text"
msgid "Day"
-msgstr "Días"
+msgstr "Día"
#. WBzAK
#: NLPSolverStatusDialog_en_US.properties
diff --git a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
index 83eeb6df801..5c9024a0a72 100644
--- a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/an/officecfg/registry/data/org/openoffice/Office/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: 2020-05-19 12:41+0200\n"
-"PO-Revision-Date: 2020-02-29 16:15+0000\n"
+"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 3.10.3\n"
"X-POOTLE-MTIME: 1542022403.000000\n"
#. W5ukN
@@ -4156,7 +4156,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Thousands Separator"
-msgstr ""
+msgstr "Separador de milars"
#. PGYvW
#: CalcCommands.xcu
@@ -21971,14 +21971,13 @@ msgstr "Desagrupar..."
#. emKjD
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:BackgroundColor\n"
"Label\n"
"value.text"
msgid "Background Color"
-msgstr "Color de fondo"
+msgstr "Color d'o fundo"
#. SGFCH
#: GenericCommands.xcu
@@ -29766,14 +29765,13 @@ msgstr "Campos de control"
#. VhGHC
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:AlignmentMenu\n"
"Label\n"
"value.text"
msgid "Alignment"
-msgstr "Alineación"
+msgstr "Aliniación"
#. rUSaA
#: ReportCommands.xcu
@@ -30323,14 +30321,13 @@ msgstr ""
#. MA4Rp
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ScAlignmentPropertyPanel\n"
"Title\n"
"value.text"
msgid "Alignment"
-msgstr "Alineación"
+msgstr "Aliniación"
#. HGfbS
#: Sidebar.xcu
@@ -30361,7 +30358,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Paragraph"
-msgstr ""
+msgstr "Paragrafo"
#. MokHT
#: Sidebar.xcu
diff --git a/source/an/reportdesign/messages.po b/source/an/reportdesign/messages.po
index 198fffc2ee7..af266459c2d 100644
--- a/source/an/reportdesign/messages.po
+++ b/source/an/reportdesign/messages.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: 2020-04-18 14:18+0200\n"
-"PO-Revision-Date: 2020-01-24 17:03+0000\n"
+"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/reportdesignmessages/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 3.10.3\n"
"X-POOTLE-MTIME: 1516028895.000000\n"
#. FBVr9
@@ -371,7 +371,7 @@ msgstr "Tipo de letra"
#: reportdesign/inc/strings.hrc:56
msgctxt "RID_STR_BACKCOLOR"
msgid "Background color"
-msgstr ""
+msgstr "Color d'o fundo"
#. WGAAf
#: reportdesign/inc/strings.hrc:57
@@ -1231,7 +1231,7 @@ msgstr ""
#: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:258
msgctxt "conditionwin|ToolBoxItem4"
msgid "Background Color"
-msgstr ""
+msgstr "Color d'o fundo"
#. bF2Nt
#: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:271
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index 00e1c2e7cd1..633a368231f 100644
--- a/source/an/sc/messages.po
+++ b/source/an/sc/messages.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: 2020-06-16 13:24+0200\n"
-"PO-Revision-Date: 2020-03-01 01:33+0000\n"
+"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 3.10.3\n"
"X-POOTLE-MTIME: 1542022406.000000\n"
#. kBovX
@@ -3174,14 +3174,12 @@ msgstr ""
#. TAUZn
#: sc/inc/globstr.hrc:490
-#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "A dentrada no ye valida."
#. sB4EW
#: sc/inc/globstr.hrc:491
-#, fuzzy
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "A condición no ye valida."
@@ -16621,10 +16619,9 @@ msgstr "ye o numero de dichitos a la dreita d'o separador decimal."
#. fdn6N
#: sc/inc/scfuncs.hrc:3751
-#, fuzzy
msgctxt "SC_OPCODE_FIXED"
msgid "No thousands separators"
-msgstr "No_deseparar_milars"
+msgstr "No deseparar milars"
#. ShGvi
#: sc/inc/scfuncs.hrc:3752
@@ -16641,10 +16638,9 @@ msgstr "Devuelve a longaria d'una cadena de texto."
#. F7TeC
#: sc/inc/scfuncs.hrc:3759
-#, fuzzy
msgctxt "SC_OPCODE_LEN"
msgid "Text"
-msgstr "texto"
+msgstr "Texto"
#. BYoYq
#: sc/inc/scfuncs.hrc:3760
@@ -19718,7 +19714,7 @@ msgstr ""
#: sc/inc/strings.hrc:306
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
-msgstr ""
+msgstr "L'adreza de salida no ye valida."
#. rtSox
#. RegressionDialog
@@ -20484,7 +20480,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/autoformattable.ui:330
msgctxt "autoformattable|alignmentcb"
msgid "Alignment"
-msgstr ""
+msgstr "Aliniación"
#. oSEWM
#: sc/uiconfig/scalc/ui/autoformattable.ui:345
@@ -26679,7 +26675,7 @@ msgstr "Fuella"
#: sc/uiconfig/scalc/ui/paradialog.ui:8
msgctxt "paradialog|ParagraphDialog"
msgid "Paragraph"
-msgstr ""
+msgstr "Paragrafo"
#. 6xRiy
#: sc/uiconfig/scalc/ui/paradialog.ui:135
@@ -28810,10 +28806,9 @@ msgstr ""
#. BJ9Gy
#: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:275
-#, fuzzy
msgctxt "sidebarnumberformat|thousandseparator"
msgid "_Thousands separator"
-msgstr "No_deseparar_milars"
+msgstr "Separador de _milars"
#. ykEWn
#: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:279
diff --git a/source/an/scp2/source/extensions.po b/source/an/scp2/source/extensions.po
index e0d374ad884..4db42b7e132 100644
--- a/source/an/scp2/source/extensions.po
+++ b/source/an/scp2/source/extensions.po
@@ -3,27 +3,29 @@ 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: 2018-09-03 13:23+0200\n"
-"PO-Revision-Date: 2013-11-26 12:52+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"PO-Revision-Date: 2020-06-21 08:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/scp2sourceextensions/an/>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 3.10.3\n"
"X-POOTLE-MTIME: 1385470379.000000\n"
+#. AAPJH
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
"STR_NAME_MODULE_OPTIONAL_EXTENSIONS\n"
"LngText.text"
msgid "Extensions"
-msgstr ""
+msgstr "Extensions"
+#. myBG8
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -32,6 +34,7 @@ msgctxt ""
msgid "Useful %PRODUCTNAME extensions."
msgstr ""
+#. 6wjge
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -40,6 +43,7 @@ msgctxt ""
msgid "MediaWiki Publisher"
msgstr ""
+#. QKfYR
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -48,6 +52,7 @@ msgctxt ""
msgid "MediaWiki Publisher"
msgstr ""
+#. VvqDP
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -56,6 +61,7 @@ msgctxt ""
msgid "Numbertext"
msgstr ""
+#. iR2KG
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -64,6 +70,7 @@ msgctxt ""
msgid "Provides the NUMBERTEXT/MONEYTEXT spreadsheet functions which convert numbers to localized text, e.g. '100' to 'hundred'."
msgstr ""
+#. JwC2B
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -72,6 +79,7 @@ msgctxt ""
msgid "Convert Text to Number"
msgstr ""
+#. uHRYR
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -80,6 +88,7 @@ msgctxt ""
msgid "Convert Text to Number"
msgstr ""
+#. 5WGAK
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -88,6 +97,7 @@ msgctxt ""
msgid "Solver for Nonlinear Programming"
msgstr ""
+#. EaiY8
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -96,6 +106,7 @@ msgctxt ""
msgid "Solver for Nonlinear Programming"
msgstr ""
+#. omdTH
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -104,6 +115,7 @@ msgctxt ""
msgid "LanguageTool Open Source language checker"
msgstr ""
+#. TBHYt
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -112,6 +124,7 @@ msgctxt ""
msgid "LanguageTool Open Source language checker"
msgstr ""
+#. LZweA
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -120,6 +133,7 @@ msgctxt ""
msgid "Script provider for BeanShell"
msgstr ""
+#. CePGk
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -128,6 +142,7 @@ msgctxt ""
msgid "Script provider for BeanShell"
msgstr ""
+#. vQJCy
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
@@ -136,6 +151,7 @@ msgctxt ""
msgid "Script provider for JavaScript"
msgstr ""
+#. YAXrN
#: module_extensions.ulf
msgctxt ""
"module_extensions.ulf\n"
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index 58ae0edb92b..352ccfa270f 100644
--- a/source/an/sd/messages.po
+++ b/source/an/sd/messages.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: 2020-06-14 14:33+0200\n"
-"PO-Revision-Date: 2020-03-11 17:16+0000\n"
+"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 3.10.3\n"
"X-POOTLE-MTIME: 1542022406.000000\n"
#. WDjkB
@@ -3303,7 +3303,7 @@ msgstr "Transparencia"
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:8
msgctxt "drawparadialog|DrawParagraphPropertiesDialog"
msgid "Paragraph"
-msgstr ""
+msgstr "Paragrafo"
#. EPEQn
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:135
diff --git a/source/an/shell/source/win32/shlxthandler/res.po b/source/an/shell/source/win32/shlxthandler/res.po
index 72141fb3f04..b11c84601c9 100644
--- a/source/an/shell/source/win32/shlxthandler/res.po
+++ b/source/an/shell/source/win32/shlxthandler/res.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-01-17 18:10+0000\n"
+"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/shellsourcewin32shlxthandlerres/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.9.1\n"
+"X-Generator: Weblate 3.10.3\n"
"X-POOTLE-MTIME: 1385470497.000000\n"
#. nMHZG
@@ -163,7 +163,7 @@ msgctxt ""
"%PARAGRAPHS%\n"
"LngText.text"
msgid "Paragraphs"
-msgstr ""
+msgstr "Paragrafos"
#. S4c4V
#: shlxthdl.ulf
diff --git a/source/an/svtools/messages.po b/source/an/svtools/messages.po
index a469a656f9f..c9cb159f1c3 100644
--- a/source/an/svtools/messages.po
+++ b/source/an/svtools/messages.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: 2020-06-14 14:33+0200\n"
-"PO-Revision-Date: 2020-02-19 23:15+0000\n"
+"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 3.10.3\n"
"X-POOTLE-MTIME: 1542195186.000000\n"
#. fLdeV
@@ -5324,7 +5324,7 @@ msgstr ""
#: svtools/uiconfig/ui/placeedit.ui:221
msgctxt "placeedit|repositoryLabel"
msgid "Repository:"
-msgstr ""
+msgstr "Reposte:"
#. 6xp54
#: svtools/uiconfig/ui/placeedit.ui:233
diff --git a/source/an/svx/messages.po b/source/an/svx/messages.po
index 0846f5348ba..fcf07a5afd3 100644
--- a/source/an/svx/messages.po
+++ b/source/an/svx/messages.po