/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ /* * This file is part of LibreOffice published API. */ #ifndef INCLUDED_RTL_STRING_H #define INCLUDED_RTL_STRING_H #include "sal/config.h" #include "osl/interlck.h" #include "rtl/textcvt.h" #include "sal/saldllapi.h" #include "sal/types.h" #ifdef __cplusplus extern "C" { #endif /* ======================================================================= */ /** Return the length of a string. The length is equal to the number of 8-bit characters in the string, without the terminating NUL character. @param str a null-terminated string. @return the length of the sequence of characters represented by this string, excluding the terminating NUL character. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_getLength( const char * str ) SAL_THROW_EXTERN_C(); /** Compare two strings. The comparison is based on the numeric value of each character in the strings and returns a value indicating their relationship. This function cannot be used for language-specific sorting. Both strings must be null-terminated. @param first the first null-terminated string to be compared. @param second the second null-terminated string which is compared with the first one. @return 0 if both strings are equal, a value less than 0 if the first string is less than the second string, and a value greater than 0 if the first string is greater than the second string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_compare( const char * first, const char * second ) SAL_THROW_EXTERN_C(); /** Compare two strings. The comparison is based on the numeric value of each character in the strings and returns a value indicating their relationship. This function cannot be used for language-specific sorting. @param first the first string to be compared. Need not be null-terminated, but must be at least as long as the specified firstLen. @param firstLen the length of the first string. @param second the second string which is compared with the first one. Need not be null-terminated, but must be at least as long as the specified secondLen. @param secondLen the length of the second string. @return 0 if both strings are equal, a value less than 0 if the first string is less than the second string, and a value greater than 0 if the first string is greater than the second string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_compare_WithLength( const char * first, sal_Int32 firstLen, const char * second, sal_Int32 secondLen ) SAL_THROW_EXTERN_C(); /** Compare two strings with a maximum count of characters. The comparison is based on the numeric value of each character in the strings and returns a value indicating their relationship. This function cannot be used for language-specific sorting. @param first the first string to be compared. Need not be null-terminated, but must be at least as long as the specified firstLen. @param firstLen the length of the first string. @param second the second string which is compared with the first one. Need not be null-terminated, but must be at least as long as the specified secondLen. @param secondLen the length of the second string. @param shortenedLen the maximum number of characters to compare. This length can be greater or smaller than the lengths of the two strings. @return 0 if both substrings are equal, a value less than 0 if the first substring is less than the second substring, and a value greater than 0 if the first substring is greater than the second substring. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_shortenedCompare_WithLength( const char * first, sal_Int32 firstLen, const char * second, sal_Int32 secondLen, sal_Int32 shortenedLen ) SAL_THROW_EXTERN_C(); /** Compare two strings from back to front. The comparison is based on the numeric value of each character in the strings and returns a value indicating their relationship. This function cannot be used for language-specific sorting. @param first the first string to be compared. Need not be null-terminated, but must be at least as long as the specified firstLen. @param firstLen the length of the first string. @param second the second string which is compared with the first one. Need not be null-terminated, but must be at least as long as the specified secondLen. @param secondLen the length of the second string. @return 0 if both strings are equal, a value less than 0 if the first string compares less than the second string, and a value greater than 0 if the first string compares greater than the second string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_reverseCompare_WithLength( const char * first, sal_Int32 firstLen, const char * second, sal_Int32 secondLen ) SAL_THROW_EXTERN_C(); /** Compare two strings, ignoring the case of ASCII characters. The comparison is based on the numeric value of each character in the strings and returns a value indicating their relationship. Character values between 65 and 90 (ASCII A--Z) are interpreted as values between 97 and 122 (ASCII a--z). This function cannot be used for language-specific sorting. Both strings must be null-terminated. @param first the first null-terminated string to be compared. @param second the second null-terminated string which is compared with the first one. @return 0 if both strings are equal, a value less than 0 if the first string is less than the second string, and a value greater than 0 if the first string is greater than the second string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_compareIgnoreAsciiCase( const char * first, const char * second ) SAL_THROW_EXTERN_C(); /** Compare two strings, ignoring the case of ASCII characters. The comparison is based on the numeric value of each character in the strings and returns a value indicating their relationship. Character values between 65 and 90 (ASCII A--Z) are interpreted as values between 97 and 122 (ASCII a--z). This function cannot be used for language-specific sorting. @param first the first string to be compared. Need not be null-terminated, but must be at least as long as the specified firstLen. @param firstLen the length of the first string. @param second the second string which is compared with the first one. Need not be null-terminated, but must be at least as long as the specified secondLen. @param secondLen the length of the second string. @return 0 if both strings are equal, a value less than 0 if the first string is less than the second string, and a value greater than 0 if the first string is greater than the second string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_compareIgnoreAsciiCase_WithLength( const char * first, sal_Int32 firstLen, const char * second, sal_Int32 secondLen ) SAL_THROW_EXTERN_C(); /** Compare two strings with a maximum count of characters, ignoring the case of ASCII characters. The comparison is based on the numeric value of each character in the strings and returns a value indicating their relationship. Character values between 65 and 90 (ASCII A--Z) are interpreted as values between 97 and 122 (ASCII a--z). This function cannot be used for language-specific sorting. @param first the first string to be compared. Need not be null-terminated, but must be at least as long as the specified firstLen. @param firstLen the length of the first string. @param second the second string which is compared with the first one. Need not be null-terminated, but must be at least as long as the specified secondLen. @param secondLen the length of the second string. @param shortenedLen the maximum number of characters to compare. This length can be greater or smaller than the lengths of the two strings. @return 0 if both substrings are equal, a value less than 0 if the first substring is less than the second substring, and a value greater than 0 if the first substring is greater than the second substring. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_shortenedCompareIgnoreAsciiCase_WithLength( const char * first, sal_Int32 firstLen, const char * second, sal_Int32 secondLen, sal_Int32 shortenedLen ) SAL_THROW_EXTERN_C(); /** Return a hash code for a string. It is not allowed to store the hash code persistently, because later versions could return other hash codes. The string must be null-terminated. @param str a null-terminated string. @return a hash code for the given string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_hashCode( const char * str ) SAL_THROW_EXTERN_C(); /** Return a hash code for a string. It is not allowed to store the hash code persistently, because later versions could return other hash codes. @param str a string. Need not be null-terminated, but must be at least as long as the specified len. @param len the length of the string. @return a hash code for the given string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_hashCode_WithLength( const char * str, sal_Int32 len ) SAL_THROW_EXTERN_C(); /** Search for the first occurrence of a character within a string. The string must be null-terminated. @param str a null-terminated string. @param ch the character to be searched for. @return the index (starting at 0) of the first occurrence of the character in the string, or -1 if the character does not occur. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_indexOfChar( const char * str, char ch ) SAL_THROW_EXTERN_C(); /** Search for the first occurrence of a character within a string. @param str a string. Need not be null-terminated, but must be at least as long as the specified len. @param len the length of the string. @param ch the character to be searched for. @return the index (starting at 0) of the first occurrence of the character in the string, or -1 if the character does not occur. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_indexOfChar_WithLength( const char * str, sal_Int32 len, char ch ) SAL_THROW_EXTERN_C(); /** Search for the last occurrence of a character within a string. The string must be null-terminated. @param str a null-terminated string. @param ch the character to be searched for. @return the index (starting at 0) of the last occurrence of the character in the string, or -1 if the character does not occur. The returned value is always smaller than the string length. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_lastIndexOfChar( const char * str, char ch ) SAL_THROW_EXTERN_C(); /** Search for the last occurrence of a character within a string. @param str a string. Need not be null-terminated, but must be at least as long as the specified len. @param len the length of the string. @param ch the character to be searched for. @return the index (starting at 0) of the last occurrence of the character in the string, or -1 if the character does not occur. The returned value is always smaller than the string length. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_lastIndexOfChar_WithLength( const char * str, sal_Int32 len, char ch ) SAL_THROW_EXTERN_C(); /** Search for the first occurrence of a substring within a string. If subStr is empty, or both str and subStr are empty, -1 is returned. Both strings must be null-terminated. @param str a null-terminated string. @param subStr the null-terminated substring to be searched for. @return the index (starting at 0) of the first character of the first occurrence of the substring within the string, or -1 if the substring does not occur. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_indexOfStr( const char * str, const char * subStr ) SAL_THROW_EXTERN_C(); /** Search for the first occurrence of a substring within a string. If subStr is empty, or both str and subStr are empty, -1 is returned. @param str a string. Need not be null-terminated, but must be at least as long as the specified len. @param len the length of the string. @param subStr the substring to be searched for. Need not be null-terminated, but must be at least as long as the specified subLen. @param subLen the length of the substring. @return the index (starting at 0) of the first character of the first occurrence of the substring within the string, or -1 if the substring does not occur. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_indexOfStr_WithLength( const char * str, sal_Int32 len, const char * subStr, sal_Int32 subLen ) SAL_THROW_EXTERN_C(); /** Search for the last occurrence of a substring within a string. If subStr is empty, or both str and subStr are empty, -1 is returned. Both strings must be null-terminated. @param str a null-terminated string. @param subStr the null-terminated substring to be searched for. @return the index (starting at 0) of the first character of the last occurrence of the substring within the string, or -1 if the substring does not occur. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_lastIndexOfStr( const char * str, const char * subStr ) SAL_THROW_EXTERN_C(); /** Search for the last occurrence of a substring within a string. If subStr is empty, or both str and subStr are empty, -1 is returned. @param str a string. Need not be null-terminated, but must be at least as long as the specified len. @param len the length of the string. @param subStr the substring to be searched for. Need not be null-terminated, but must be at least as long as the specified subLen. @param subLen the length of the substring. @return the index (starting at 0) of the first character of the first occurrence of the substring within the string, or -1 if the substring does not occur. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_lastIndexOfStr_WithLength( const char * str, sal_Int32 len, const char * subStr, sal_Int32 subLen ) SAL_THROW_EXTERN_C(); /** Replace all occurrences of a single character within a string. If oldChar does not occur within str, then the string is not modified. The string must be null-terminated. @param str a null-terminated string. @param oldChar the old character. @param newChar the new character. */ SAL_DLLPUBLIC void SAL_CALL rtl_str_replaceChar( char * str, char oldChar, char newChar ) SAL_THROW_EXTERN_C(); /** Replace all occurrences of a single character within a string. If oldChar does not occur within str, then the string is not modified. @param str a string. Need not be null-terminated, but must be at least as long as the specified len. @param len the length of the string. @param oldChar the old character. @param newChar the new character. */ SAL_DLLPUBLIC void SAL_CALL rtl_str_replaceChar_WithLength( char * str, sal_Int32 len, char oldChar, char newChar ) SAL_THROW_EXTERN_C(); /** Convert all ASCII uppercase letters to lowercase within a string. The characters with values between 65 and 90 (ASCII A--Z) are replaced with values between 97 and 122 (ASCII a--z). The string must be null-terminated. @param str a null-terminated string. */ SAL_DLLPUBLIC void SAL_CALL rtl_str_toAsciiLowerCase( char * str ) SAL_THROW_EXTERN_C(); /** Convert all ASCII uppercase letters to lowercase within a string. The characters with values between 65 and 90 (ASCII A--Z) are replaced with values between 97 and 122 (ASCII a--z). @param str a string. Need not be null-terminated, but must be at least as long as the specified len. @param len the length of the string. */ SAL_DLLPUBLIC void SAL_CALL rtl_str_toAsciiLowerCase_WithLength( char * str, sal_Int32 len ) SAL_THROW_EXTERN_C(); /** Convert all ASCII lowercase letters to uppercase within a string. The characters with values between 97 and 122 (ASCII a--z) are replaced with values between 65 and 90 (ASCII A--Z). The string must be null-terminated. @param str a null-terminated string. */ SAL_DLLPUBLIC void SAL_CALL rtl_str_toAsciiUpperCase( char * str ) SAL_THROW_EXTERN_C(); /** Convert all ASCII lowercase letters to uppercase within a string. The characters with values between 97 and 122 (ASCII a--z) are replaced with values between 65 and 90 (ASCII A--Z). @param str a string. Need not be null-terminated, but must be at least as long as the specified len. @param len the length of the string. */ SAL_DLLPUBLIC void SAL_CALL rtl_str_toAsciiUpperCase_WithLength( char * str, sal_Int32 len ) SAL_THROW_EXTERN_C(); /** Remove white space from both ends of a string. All characters with values less than or equal to 32 (the space character) are considered to be white space. This function cannot be used for language-specific operations. The string must be null-terminated. @param str a null-terminated string. @return the new length of the string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_trim( char * str ) SAL_THROW_EXTERN_C(); /** Remove white space from both ends of the string. All characters with values less than or equal to 32 (the space character) are considered to be white space. This function cannot be used for language-specific operations. The string must be null-terminated. @param str a string. Need not be null-terminated, but must be at least as long as the specified len. @param len the original length of the string. @return the new length of the string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_trim_WithLength( char * str, sal_Int32 len ) SAL_THROW_EXTERN_C(); /** Create the string representation of a boolean. If b is true, the buffer is filled with the string "true" and 5 is returned. If b is false, the buffer is filled with the string "false" and 6 is returned. This function cannot be used for language-specific operations. @param str a buffer that is big enough to hold the result and the terminating NUL character. You should use the RTL_STR_MAX_VALUEOFBOOLEAN define to create a buffer that is big enough. @param b a boolean value. @return the length of the string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_valueOfBoolean( char * str, sal_Bool b ) SAL_THROW_EXTERN_C(); #define RTL_STR_MAX_VALUEOFBOOLEAN 6 /** Create the string representation of a character. @param str a buffer that is big enough to hold the result and the terminating NUL character. You should use the RTL_STR_MAX_VALUEOFCHAR define to create a buffer that is big enough. @param ch a character value. @return the length of the string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_valueOfChar( char * str, char ch ) SAL_THROW_EXTERN_C(); #define RTL_STR_MAX_VALUEOFCHAR 2 /** Create the string representation of an integer. This function cannot be used for language-specific operations. @param str a buffer that is big enough to hold the result and the terminating NUL character. You should use the RTL_STR_MAX_VALUEOFINT32 define to create a buffer that is big enough. @param i an integer value. @param radix the radix. Must be between RTL_STR_MIN_RADIX (2) and RTL_STR_MAX_RADIX (36), inclusive. @return the length of the string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_valueOfInt32( char * str, sal_Int32 i, sal_Int16 radix ) SAL_THROW_EXTERN_C(); #define RTL_STR_MIN_RADIX 2 #define RTL_STR_MAX_RADIX 36 #define RTL_STR_MAX_VALUEOFINT32 33 /** Create the string representation of a long integer. This function cannot be used for language-specific operations. @param str a buffer that is big enough to hold the result and the terminating NUL character. You should use the RTL_STR_MAX_VALUEOFINT64 define to create a buffer that is big enough. @param l a long integer value. @param radix the radix. Must be between RTL_STR_MIN_RADIX (2) and RTL_STR_MAX_RADIX (36), inclusive. @return the length of the string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_valueOfInt64( char * str, sal_Int64 l, sal_Int16 radix ) SAL_THROW_EXTERN_C(); #define RTL_STR_MAX_VALUEOFINT64 65 /** Create the string representation of an unsigned long integer. This function cannot be used for language-specific operations. @param str a buffer that is big enough to hold the result and the terminating NUL character. You should use the RTL_STR_MAX_VALUEOFUINT64 define to create a buffer that is big enough. @param l a long integer value. @param radix the radix. Must be between RTL_STR_MIN_RADIX (2) and RTL_STR_MAX_RADIX (36), inclusive. @return the length of the string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_valueOfUInt64( char * str, sal_uInt64 l, sal_Int16 radix ) SAL_THROW_EXTERN_C(); #define RTL_STR_MAX_VALUEOFUINT64 65 /** Create the string representation of a float. This function cannot be used for language-specific conversion. @param str a buffer that is big enough to hold the result and the terminating NUL character. You should use the RTL_STR_MAX_VALUEOFFLOAT define to create a buffer that is big enough. @param f a float value. @return the length of the string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_valueOfFloat( char * str, float f ) SAL_THROW_EXTERN_C(); #define RTL_STR_MAX_VALUEOFFLOAT 15 /** Create the string representation of a double. This function cannot be used for language-specific conversion. @param str a buffer that is big enough to hold the result and the terminating NUL character. You should use the RTL_STR_MAX_VALUEOFDOUBLE define to create a buffer that is big enough. @param d a double value. @return the length of the string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_valueOfDouble( char * str, double d ) SAL_THROW_EXTERN_C(); #define RTL_STR_MAX_VALUEOFDOUBLE 25 /** Interpret a string as a boolean. This function cannot be used for language-specific conversion. The string must be null-terminated. @param str a null-terminated string. @return true if the string is "1" or "true" in any ASCII case, false otherwise. */ SAL_DLLPUBLIC sal_Bool SAL_CALL rtl_str_toBoolean( const char * str ) SAL_THROW_EXTERN_C(); /** Interpret a string as an integer. This function cannot be used for language-specific conversion. The string must be null-terminated. @param str a null-terminated string. @param radix the radix. Must be between RTL_STR_MIN_RADIX (2) and RTL_STR_MAX_RADIX (36), inclusive. @return the integer value represented by the string, or 0 if the string does not represent an integer. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_str_toInt32( const char * str, sal_Int16 radix ) SAL_THROW_EXTERN_C(); /** Interpret a string as an unsigned integer. This function cannot be used for language-specific conversion. The string must be null-terminated. @param str a null-terminated string. @param radix the radix. Must be between RTL_USTR_MIN_RADIX (2) and RTL_USTR_MAX_RADIX (36), inclusive. @return the unsigned integer value represented by the string, or 0 if the string does not represent an unsigned integer. @since LibreOffice 4.2 */ SAL_DLLPUBLIC sal_uInt32 SAL_CALL rtl_str_toUInt32( const char * str, sal_Int16 radix ) SAL_THROW_EXTERN_C(); /** Interpret a string as a long integer. This function cannot be used for language-specific conversion. The string must be null-terminated. @param str a null-terminated string. @param radix the radix. Must be between RTL_STR_MIN_RADIX (2) and RTL_STR_MAX_RADIX (36), inclusive. @return the long integer value represented by the string, or 0 if the string does not represent a long integer. */ SAL_DLLPUBLIC sal_Int64 SAL_CALL rtl_str_toInt64( const char * str, sal_Int16 radix ) SAL_THROW_EXTERN_C(); /** Interpret a string as a long integer. This function cannot be used for language-specific conversion. @param str a string. @param radix the radix. Must be between RTL_STR_MIN_RADIX (2) and RTL_STR_MAX_RADIX (36), inclusive. @param nStrLength number of chars to process @return the long integer value represented by the string, or 0 if the string does not represent a long integer. @internal @since LibreOffice 6.4 */ SAL_DLLPUBLIC sal_Int64 SAL_CALL rtl_str_toInt64_WithLength( const char * str, sal_Int16 radix, sal_Int32 nStrLength ) SAL_THROW_EXTERN_C(); /** Interpret a string as an unsigned long integer. This function cannot be used for language-specific conversion. The string must be null-terminated. @param str a null-terminated string. @param radix the radix. Must be between RTL_USTR_MIN_RADIX (2) and RTL_USTR_MAX_RADIX (36), inclusive. @return the unsigned long integer value represented by the string, or 0 if the string does not represent an unsigned long integer. @since LibreOffice 4.1 */ SAL_DLLPUBLIC sal_uInt64 SAL_CALL rtl_str_toUInt64( const char * str, sal_Int16 radix ) SAL_THROW_EXTERN_C(); /** Interpret a string as a float. This function cannot be used for language-specific conversion. The string must be null-terminated. @param str a null-terminated string. @return the float value represented by the string, or 0.0 if the string does not represent a float. */ SAL_DLLPUBLIC float SAL_CALL rtl_str_toFloat( const char * str ) SAL_THROW_EXTERN_C(); /** Interpret a string as a double. This function cannot be used for language-specific conversion. The string must be null-terminated. @param str a null-terminated string. @return the float value represented by the string, or 0.0 if the string does not represent a double. */ SAL_DLLPUBLIC double SAL_CALL rtl_str_toDouble( const char * str ) SAL_THROW_EXTERN_C(); /* ======================================================================= */ #ifdef _WIN32 # pragma pack(push, 8) #endif /** @cond INTERNAL */ /** The implementation of a byte string. */ typedef struct _rtl_String { oslInterlockedCount refCount; /* opaque */ sal_Int32 length; char buffer[1]; } rtl_String; /** @endcond */ #if defined(_WIN32) #pragma pack(pop) #endif /* ----------------------------------------------------------------------- */ /** Increment the reference count of a string. @param str a string. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_acquire( rtl_String * str ) SAL_THROW_EXTERN_C(); /** Decrement the reference count of a string. If the count goes to zero than the string data is deleted. @param str a string. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_release( rtl_String * str ) SAL_THROW_EXTERN_C(); /** Allocate a new string containing no characters. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_new( rtl_String ** newStr ) SAL_THROW_EXTERN_C(); /** Allocate a new string containing space for a given number of characters. The reference count of the new string will be 1. The length of the string will be nLen. This function does not handle out-of-memory conditions. For failed allocation this method returns NULL. The characters of the capacity are not cleared, and the length is set to nLen, unlike the similar method of rtl_String_new_WithLength which zeros out the buffer, and sets the length to 0. So should be somewhat more efficient for allocating a new string. call rtl_String_release to release the string alternatively pass ownership to an OUString with rtl::OUString(newStr, SAL_NO_ACQUIRE); @param[out] nLen the number of characters. Must be >= 0. @return pointer to the new string. @since LibreOffice 4.1 */ SAL_DLLPUBLIC rtl_String * SAL_CALL rtl_string_alloc(sal_Int32 nLen) SAL_THROW_EXTERN_C(); /** Allocate a new string containing space for a given number of characters. If len is greater than zero, the reference count of the new string will be 1. The values of all characters are set to 0 and the length of the string is 0. This function does not handle out-of-memory conditions. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. @param len the number of characters. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_new_WithLength( rtl_String ** newStr, sal_Int32 len ) SAL_THROW_EXTERN_C(); /** Allocate a new string that contains a copy of another string. If the length of value is greater than zero, the reference count of the new string will be 1. This function does not handle out-of-memory conditions. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. @param value a valid string. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newFromString( rtl_String ** newStr, const rtl_String * value ) SAL_THROW_EXTERN_C(); /** Allocate a new string that contains a copy of a character array. If the length of value is greater than zero, the reference count of the new string will be 1. This function does not handle out-of-memory conditions. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. @param value a null-terminated character array. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newFromStr( rtl_String ** newStr, const char * value ) SAL_THROW_EXTERN_C(); /** Allocate a new string that contains a copy of a character array. If the length of value is greater than zero, the reference count of the new string will be 1. This function does not handle out-of-memory conditions. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. @param value a character array. Need not be null-terminated, but must be at least as long as the specified len. @param len the length of the character array. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newFromStr_WithLength( rtl_String ** newStr, const char * value, sal_Int32 len ) SAL_THROW_EXTERN_C(); /** Allocate a new string that is a substring of this string. The substring begins at the specified beginIndex and contains count characters. Meaningless combinations such as negative beginIndex, or beginIndex + count greater than the length of the string have undefined behaviour. @param[out] newStr the specified substring. @param[in] from the String to take the substring from. @param[in] beginIndex the beginning index, inclusive. @param[in] count the number of characters. @since LibreOffice 4.0 */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newFromSubString( rtl_String ** newStr, const rtl_String * from, sal_Int32 beginIndex, sal_Int32 count ) SAL_THROW_EXTERN_C(); /** @internal @since LibreOffice 3.6 */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newFromLiteral( rtl_String ** newStr, const char * value, sal_Int32 len, sal_Int32 allocExtra ) SAL_THROW_EXTERN_C(); /** Assign a new value to a string. First releases any value str might currently hold, then acquires rightValue. @param str pointer to the string. The pointed-to data must be null or a valid string. @param rightValue a valid string. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_assign( rtl_String ** str, rtl_String * rightValue ) SAL_THROW_EXTERN_C(); /** Return the length of a string. The length is equal to the number of characters in the string. @param str a valid string. @return the length of the string. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_string_getLength( const rtl_String * str ) SAL_THROW_EXTERN_C(); /** Return a pointer to the underlying character array of a string. @param str a valid string. @return a pointer to the null-terminated character array. */ SAL_DLLPUBLIC char * SAL_CALL rtl_string_getStr( rtl_String * str ) SAL_THROW_EXTERN_C(); /** Create a new string that is the concatenation of two other strings. The new string does not necessarily have a reference count of 1 (in cases where one of the two other strings is empty), so it must not be modified without checking the reference count. This function does not handle out-of-memory conditions. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. @param left a valid string. @param right a valid string. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newConcat( rtl_String ** newStr, rtl_String * left, rtl_String * right ) SAL_THROW_EXTERN_C(); /** Create a new string by replacing a substring of another string. The new string results from replacing a number of characters (count), starting at the specified position (index) in the original string (str), with some new substring (subStr). If subStr is null, then only a number of characters is deleted. The new string does not necessarily have a reference count of 1, so it must not be modified without checking the reference count. This function does not handle out-of-memory conditions. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. @param str a valid string. @param idx the index into str at which to start replacement. Must be between 0 and the length of str, inclusive. @param count the number of characters to remove. Must not be negative, and the sum of index and count must not exceed the length of str. @param subStr either null or a valid string to be inserted. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newReplaceStrAt( rtl_String ** newStr, rtl_String * str, sal_Int32 idx, sal_Int32 count, rtl_String * subStr ) SAL_THROW_EXTERN_C(); #ifdef LIBO_INTERNAL_ONLY SAL_DLLPUBLIC void SAL_CALL rtl_string_newReplaceStrAt_WithLength ( rtl_String ** newStr, rtl_String * str, sal_Int32 idx, sal_Int32 count, char const * subStr, sal_Int32 substrLen ) SAL_THROW_EXTERN_C(); #endif /** Create a new string by replacing all occurrences of a single character within another string. The new string results from replacing all occurrences of oldChar in str with newChar. The new string does not necessarily have a reference count of 1 (in cases where oldChar does not occur in str), so it must not be modified without checking the reference count. This function does not handle out-of-memory conditions. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. @param str a valid string. @param oldChar the old character. @param newChar the new character. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newReplace( rtl_String ** newStr, rtl_String * str, char oldChar, char newChar ) SAL_THROW_EXTERN_C(); /** Create a new string by replacing the first occurrence of a given substring with another substring. @param[in, out] newStr pointer to the new string; must not be null; must point to null or a valid rtl_String @param str pointer to the original string; must not be null @param from pointer to the substring to be replaced; must not be null and must point to memory of at least \p fromLength bytes @param fromLength the length of the \p from substring; must be non-negative @param to pointer to the replacing substring; must not be null and must point to memory of at least \p toLength bytes @param toLength the length of the \p to substring; must be non-negative @param[in,out] index pointer to a start index, must not be null; upon entry to the function its value is the index into the original string at which to start searching for the \p from substring, the value must be non-negative and not greater than the original string's length; upon exit from the function its value is the index into the original string at which the replacement took place or -1 if no replacement took place @since LibreOffice 3.6 */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newReplaceFirst( rtl_String ** newStr, rtl_String * str, char const * from, sal_Int32 fromLength, char const * to, sal_Int32 toLength, sal_Int32 * index) SAL_THROW_EXTERN_C(); /** Create a new string by replacing all occurrences of a given substring with another substring. Replacing subsequent occurrences picks up only after a given replacement. That is, replacing from "xa" to "xx" in "xaa" results in "xxa", not "xxx". @param[in, out] newStr pointer to the new string; must not be null; must point to null or a valid rtl_String @param str pointer to the original string; must not be null @param from pointer to the substring to be replaced; must not be null and must point to memory of at least \p fromLength bytes @param fromLength the length of the \p from substring; must be non-negative @param to pointer to the replacing substring; must not be null and must point to memory of at least \p toLength bytes @param toLength the length of the \p to substring; must be non-negative @since LibreOffice 3.6 */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newReplaceAll( rtl_String ** newStr, rtl_String * str, char const * from, sal_Int32 fromLength, char const * to, sal_Int32 toLength) SAL_THROW_EXTERN_C(); /** Create a new string by converting all ASCII uppercase letters to lowercase within another string. The new string results from replacing all characters with values between 65 and 90 (ASCII A--Z) by values between 97 and 122 (ASCII a--z). This function cannot be used for language-specific conversion. The new string does not necessarily have a reference count of 1 (in cases where no characters need to be converted), so it must not be modified without checking the reference count. This function does not handle out-of-memory conditions. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. @param str a valid string. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newToAsciiLowerCase( rtl_String ** newStr, rtl_String * str ) SAL_THROW_EXTERN_C(); /** Create a new string by converting all ASCII lowercase letters to uppercase within another string. The new string results from replacing all characters with values between 97 and 122 (ASCII a--z) by values between 65 and 90 (ASCII A--Z). This function cannot be used for language-specific conversion. The new string does not necessarily have a reference count of 1 (in cases where no characters need to be converted), so it must not be modified without checking the reference count. This function does not handle out-of-memory conditions. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. @param str a valid string. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newToAsciiUpperCase( rtl_String ** newStr, rtl_String * str ) SAL_THROW_EXTERN_C(); /** Create a new string by removing white space from both ends of another string. The new string results from removing all characters with values less than or equal to 32 (the space character) form both ends of str. This function cannot be used for language-specific conversion. The new string does not necessarily have a reference count of 1 (in cases where no characters need to be removed), so it must not be modified without checking the reference count. This function does not handle out-of-memory conditions. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. @param str a valid string. */ SAL_DLLPUBLIC void SAL_CALL rtl_string_newTrim( rtl_String ** newStr, rtl_String * str ) SAL_THROW_EXTERN_C(); /** Create a new string by extracting a single token from another string. Starting at index, the next token is searched for. If there is no such token, the result is an empty string. Otherwise, all characters from the start of that token and up to, but not including the next occurrence of cTok make up the resulting token. The return value is the position of the next token, or -1 if no more tokens follow. Example code could look like rtl_String * pToken = NULL; sal_Int32 nIndex = 0; do { ... nIndex = rtl_string_getToken(&pToken, pStr, 0, ';', nIndex); ... } while (nIndex >= 0); The new string does not necessarily have a reference count of 1, so it must not be modified without checking the reference count. This function does not handle out-of-memory conditions. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. If either token or index is negative, an empty token is stored in newStr (and -1 is returned). @param str a valid string. @param token the number of the token to return, starting at index. @param cTok the character that separates the tokens. @param idx the position at which searching for the token starts. Must not be greater than the length of str. @return the index of the next token, or -1 if no more tokens follow. */ SAL_DLLPUBLIC sal_Int32 SAL_CALL rtl_string_getToken( rtl_String ** newStr , rtl_String * str, sal_Int32 token, char cTok, sal_Int32 idx ) SAL_THROW_EXTERN_C(); /* ======================================================================= */ /** Supply an ASCII string literal together with its length. This macro can be used to compute (some of) the arguments in function calls like rtl::OString(RTL_CONSTASCII_STRINGPARAM("foo")) or rtl::OUString::equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("foo")). @param constAsciiStr must be an expression of type "(possibly cv-qualified reference to) array of (possibly cv-qualified) char." Each element of the referenced array must represent an ASCII value in the range 0x00--0x7F. The last element of the referenced array is not considered part of the represented ASCII string, and its value should be 0x00. Depending on where this macro is used, the nature of the supplied expression might be further restricted. */ // The &foo[0] trick is intentional, it makes sure the type is char* or const char* // (plain cast to const char* would not work with non-const char foo[]="a", which seems to be allowed). // This is to avoid mistaken use with functions that accept string literals // (i.e. const char (&)[N]) where usage of this macro otherwise could match // the argument and a following int argument with a default value (e.g. OString::match()). #define RTL_CONSTASCII_STRINGPARAM( constAsciiStr ) (&(constAsciiStr)[0]), \ ((sal_Int32)SAL_N_ELEMENTS(constAsciiStr)-1) /** Supply the length of an ASCII string literal. This macro can be used to compute arguments in function calls like rtl::OUString::match(other, RTL_CONSTASCII_LENGTH("prefix")). @param constAsciiStr must be an expression of type "(possibly cv-qualified reference to) array of (possibly cv-qualified) char." Each element of the referenced array must represent an ASCII value in the range 0x00--0x7F. The last element of the referenced array is not considered part of the represented ASCII string, and its value should be 0x00. Depending on where this macro is used, the nature of the supplied expression might be further restricted. */ #define RTL_CONSTASCII_LENGTH( constAsciiStr ) ((sal_Int32)(SAL_N_ELEMENTS(constAsciiStr)-1)) /* ======================================================================= */ /* predefined constants for String-Conversion */ #define OUSTRING_TO_OSTRING_CVTFLAGS (RTL_UNICODETOTEXT_FLAGS_UNDEFINED_DEFAULT |\ RTL_UNICODETOTEXT_FLAGS_INVALID_DEFAULT |\ RTL_UNICODETOTEXT_FLAGS_UNDEFINED_REPLACE |\ RTL_UNICODETOTEXT_FLAGS_PRIVATE_MAPTO0) /* ----------------------------------------------------------------------- */ /** Create a new byte string by converting a Unicode string, using a specific text encoding. The lengths of the byte string and the Unicode string may differ (e.g., for double-byte encodings, UTF-7, UTF-8). If the length of the Unicode string is greater than zero, the reference count of the new string will be 1. If an out-of-memory condition occurs, newStr will point to a null pointer upon return. @param newStr pointer to the new string. The pointed-to data must be null or a valid string. @param str a Unicode character array. Need not be null-terminated, but must be at least as long as the specified len. @param len the length of the Unicode character array. @param encoding the text encoding to use for conversion. @param convertFlags flags which control the conversion. Either use OUSTRING_TO_OSTRING_CVTFLAGS, or see for more details. */ SAL_DLLPUBLIC void SAL_CALL rtl_uString2String( rtl_String ** newStr, const sal_Unicode * str, sal_Int32 len, rtl_TextEncoding encoding, sal_uInt32 convertFlags ) SAL_THROW_EXTERN_C(); /** Converts a Unicode string to a byte string, signalling failure. @param pTarget An out parameter receiving the converted string. Must not be null itself, and must contain either null or a pointer to a valid rtl_String; the contents are not modified if conversion fails (rtl_convertUStringToString returns false). @param pSource The Unicode string. May only be null if nLength is zero. @param nLength The length of the Unicode string. Must be non-negative. @param nEncoding The text encoding to convert into. Must be an octet encoding (i.e., rtl_isOctetTextEncoding(nEncoding) must return true). @param nFlags A combination of RTL_UNICODETOTEXT_FLAGS that detail how to do the conversion (see rtl_convertUnicodeToText). RTL_UNICODETOTEXT_FLAGS_FLUSH need not be included, it is implicitly assumed. Typical uses are either RTL_UNICODETOTEXT_FLAGS_UNDEFINED_ERROR | RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR (fail if a Unicode character cannot be converted to the target nEncoding) or OUSTRING_TO_OSTRING_CVTFLAGS (make a best efforts conversion). @return True if the conversion succeeded, false otherwise. */ SAL_DLLPUBLIC sal_Bool SAL_CALL rtl_convertUStringToString( rtl_String ** pTarget, sal_Unicode const * pSource, sal_Int32 nLength, rtl_TextEncoding nEncoding, sal_uInt32 nFlags) SAL_THROW_EXTERN_C(); /** Ensure a string has enough space for a given number of characters. If the given string is large enough and has refcount of 1, it is not altered in any way. Otherwise it is replaced by a copy that has enough space for the given number of characters, data from the source string is copied to the beginning of it, the content of the remaining capacity undefined, the string has refcount of 1, and refcount of the original string is decreased. @param str pointer to the string. The pointed-to data must be a valid string. @param size the number of characters @since LibreOffice 4.1 @internal */ SAL_DLLPUBLIC void SAL_CALL rtl_string_ensureCapacity( rtl_String ** str, sal_Int32 size ) SAL_THROW_EXTERN_C(); #ifdef __cplusplus } #endif #endif // INCLUDED_RTL_STRING_H /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ abel.ui:329
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr "Above"
#. dnhiD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:298
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:330
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr "Top left"
#. TGuEk
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:299
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:331
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr "Left"
#. eUxTR
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:300
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:332
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr "Bottom left"
#. CGQj7
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:301
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:333
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr "Below"
#. UJ7uQ
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:302
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:334
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr "Bottom right"
#. nEFuG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:303
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:335
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr "Right"
#. NQCGE
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:304
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:336
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr "Top right"
#. UagUt
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:305
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:337
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr "Inside"
#. y25DL
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:306
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:338
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr "Outside"
#. 3HjyB
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:307
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:339
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr "Near origin"
+#. TMEug
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:343
+msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_PLACEMENT"
+msgid "Selects the placement of data labels relative to the objects."
+msgstr "Selects the placement of data labels relative to the objects."
+
#. 69qZL
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:326
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:363
msgctxt "dlg_DataLabel|STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE"
msgid "Number Format for Percentage Value"
msgstr "Number Format for Percentage Value"
#. mFeMA
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:344
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:381
msgctxt "dlg_DataLabel|label1"
msgid "Text Attributes"
msgstr "Text Attributes"
+#. gE7CA
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:425
+msgctxt "dlg_DataLabel|extended_tip|CT_DIAL"
+msgid "Click in the dial to set the text orientation for the data labels."
+msgstr "Click in the dial to set the text orientation for the data labels."
+
+#. MjCoG
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:445
+msgctxt "dlg_DataLabel|extended_tip|NF_LABEL_DEGREES"
+msgid "Enter the counterclockwise rotation angle for the data labels."
+msgstr "Enter the counterclockwise rotation angle for the data labels."
+
#. Jhjwb
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:412
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:459
msgctxt "dlg_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr "_Degrees"
#. vtVy2
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:437
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:484
msgctxt "dlg_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr "Te_xt direction"
+#. tjcHp
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:501
+msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_TEXTDIR"
+msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+msgstr "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+
#. xpAEz
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:474
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:526
msgctxt "dlg_DataLabel|label2"
msgid "Rotate Text"
msgstr "Rotate Text"
+#. 6bBph
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:542
+msgctxt "dlg_DataLabel|extended_tip|tp_DataLabel"
+msgid "Opens the Data Labels dialog, which enables you to set the data labels."
+msgstr "Opens the Data Labels dialogue box, which enables you to set the data labels."
+
+#. bt7D7
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:564
+msgctxt "dlg_DataLabel|extended_tip|dlg_DataLabels"
+msgid "Opens the Data Labels dialog, which enables you to set the data labels."
+msgstr "Opens the Data Labels dialogue box, which enables you to set the data labels."
+
#. 3GUtp
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:28
msgctxt "dlg_InsertErrorBars|dlg_InsertErrorBars"
@@ -1371,133 +1509,229 @@ msgid "Legend"
msgstr "Legend"
#. 9Wf9T
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:131
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:128
msgctxt "dlg_InsertErrorBars|RB_NONE"
msgid "_None"
msgstr "_None"
+#. pvfsb
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:137
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_NONE"
+msgid "Does not show any error bars."
+msgstr "Does not show any error bars."
+
#. sMZoy
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:147
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:149
msgctxt "dlg_InsertErrorBars|RB_CONST"
msgid "_Constant Value"
msgstr "_Constant Value"
+#. oDzF5
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:159
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_CONST"
+msgid "Displays constant values that you specify in the Parameters area."
+msgstr "Displays constant values that you specify in the Parameters area."
+
#. UzxQQ
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:164
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:171
msgctxt "dlg_InsertErrorBars|RB_PERCENT"
msgid "_Percentage"
msgstr "_Percentage"
+#. bGDm2
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:181
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_PERCENT"
+msgid "Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area."
+msgstr "Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area."
+
+#. tSBH9
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:207
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_FUNCTION"
+msgid "Select a function to calculate the error bars."
+msgstr "Select a function to calculate the error bars."
+
#. fkUNn
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:205
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:222
msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
msgid "Standard Error"
msgstr "Standard Error"
#. zpc6d
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:206
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:223
msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
msgid "Standard Deviation"
msgstr "Standard Deviation"
#. wA6LE
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:207
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:224
msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
msgid "Variance"
msgstr "Variance"
#. UASm3
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:208
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:225
msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
msgid "Error Margin"
msgstr "Error Margin"
+#. vqTAT
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:229
+msgctxt "dlg_InsertErrorBars|extended_tip|LB_FUNCTION"
+msgid "Select a function to calculate the error bars."
+msgstr "Select a function to calculate the error bars."
+
#. Z5yGF
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:226
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:248
msgctxt "dlg_InsertErrorBars|RB_RANGE"
msgid "Cell _Range"
msgstr "Cell _Range"
+#. Vm5iS
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:258
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_RANGE"
+msgid "Click Cell Range and then specify a cell range from which to take the positive and negative error bar values."
+msgstr "Click Cell Range and then specify a cell range from which to take the positive and negative error bar values."
+
#. vdvVR
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:249
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:276
msgctxt "dlg_InsertErrorBars|label1"
msgid "Error Category"
msgstr "Error Category"
#. oZaa3
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:282
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:309
msgctxt "dlg_InsertErrorBars|RB_BOTH"
msgid "Positive _and Negative"
msgstr "Positive _and Negative"
+#. aAhky
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:318
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_BOTH"
+msgid "Shows positive and negative error bars."
+msgstr "Shows positive and negative error bars."
+
#. jJw8Y
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:297
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:329
msgctxt "dlg_InsertErrorBars|RB_POSITIVE"
msgid "Pos_itive"
msgstr "Pos_itive"
+#. yXXuP
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:339
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_POSITIVE"
+msgid "Shows only positive error bars."
+msgstr "Shows only positive error bars."
+
#. 6YgbM
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:313
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:350
msgctxt "dlg_InsertErrorBars|RB_NEGATIVE"
msgid "Ne_gative"
msgstr "Ne_gative"
+#. KsYHq
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:360
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_NEGATIVE"
+msgid "Shows only negative error bars."
+msgstr "Shows only negative error bars."
+
#. fkKQH
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:368
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:410
msgctxt "dlg_InsertErrorBars|label2"
msgid "Error Indicator"
msgstr "Error Indicator"
#. WWuZ8
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:416
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:458
msgctxt "dlg_InsertErrorBars|FT_POSITIVE"
msgid "P_ositive (+)"
msgstr "P_ositive (+)"
+#. EHq4d
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:476
+msgctxt "dlg_InsertErrorBars|extended_tip|MF_POSITIVE"
+msgid "Enter the value to add to the displayed value as the positive error value."
+msgstr "Enter the value to add to the displayed value as the positive error value."
+
+#. SUBEs
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:494
+msgctxt "dlg_InsertErrorBars|extended_tip|ED_RANGE_POSITIVE"
+msgid "Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet."
+msgstr "Enter the address range from where to obtain the positive error values. Use the Shrink button to select the range from a sheet."
+
#. 5FfdH
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:457
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:509
msgctxt "dlg_InsertErrorBars|IB_RANGE_POSITIVE|tooltip_text"
msgid "Select data range"
msgstr "Select data range"
+#. JYk3c
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:513
+msgctxt "dlg_InsertErrorBars|extended_tip|IB_RANGE_POSITIVE"
+msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
+msgstr "Click a button to shrink the dialogue box, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialogue box to full size."
+
#. K9wAk
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:482
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:539
msgctxt "dlg_InsertErrorBars|FT_NEGATIVE"
msgid "_Negative (-)"
msgstr "_Negative (-)"
+#. Hzr6X
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:557
+msgctxt "dlg_InsertErrorBars|extended_tip|MF_NEGATIVE"
+msgid "Enter the value to subtract from the displayed value as the negative error value."
+msgstr "Enter the value to subtract from the displayed value as the negative error value."
+
+#. DTR5D
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:575
+msgctxt "dlg_InsertErrorBars|extended_tip|ED_RANGE_NEGATIVE"
+msgid "Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet."
+msgstr "Enter the address range from where to obtain the negative error values. Use the Shrink button to select the range from a sheet."
+
#. jsckc
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:523
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:590
msgctxt "dlg_InsertErrorBars|IB_RANGE_NEGATIVE|tooltip_text"
msgid "Select data range"
msgstr "Select data range"
+#. mEwUr
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:594
+msgctxt "dlg_InsertErrorBars|extended_tip|IB_RANGE_NEGATIVE"
+msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
+msgstr "Click a button to shrink the dialogue box, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialogue box to full size."
+
#. GZS6d
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:541
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:613
msgctxt "dlg_InsertErrorBars|CB_SYN_POS_NEG"
msgid "Same value for both"
msgstr "Same value for both"
+#. wTppD
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:622
+msgctxt "dlg_InsertErrorBars|extended_tip|CB_SYN_POS_NEG"
+msgid "Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically."
+msgstr "Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically."
+
#. ogVMg
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:563
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:640
msgctxt "dlg_InsertErrorBars|label3"
msgid "Parameters"
msgstr "Parameters"
#. MXxxE
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:580
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:657
msgctxt "dlg_InsertErrorBars|STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS"
msgid "Select Range for Positive Error Bars"
msgstr "Select Range for Positive Error Bars"
#. ixAQm
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:591
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:668
msgctxt "dlg_InsertErrorBars|STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS"
msgid "Select Range for Negative Error Bars"
msgstr "Select Range for Negative Error Bars"
#. 68LFy
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:602
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:679
msgctxt "dlg_InsertErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
msgid "From Data Table"
msgstr "From Data Table"
@@ -1551,53 +1785,89 @@ msgid "Axes"
msgstr "Axes"
#. 4Drc8
-#: chart2/uiconfig/ui/insertaxisdlg.ui:110
+#: chart2/uiconfig/ui/insertaxisdlg.ui:107
msgctxt "insertaxisdlg|primaryX"
msgid "_X axis"
msgstr "_x-Axis"
+#. QyAAw
+#: chart2/uiconfig/ui/insertaxisdlg.ui:116
+msgctxt "insertaxisdlg|extended_tip|primaryX"
+msgid "Displays the X axis as a line with subdivisions."
+msgstr "Displays the x-axis as a line with subdivisions."
+
#. XeWVu
-#: chart2/uiconfig/ui/insertaxisdlg.ui:126
+#: chart2/uiconfig/ui/insertaxisdlg.ui:128
msgctxt "insertaxisdlg|primaryY"
msgid "_Y axis"
msgstr "_y-Axis"
+#. 8ZzUp
+#: chart2/uiconfig/ui/insertaxisdlg.ui:137
+msgctxt "insertaxisdlg|extended_tip|primaryY"
+msgid "Displays the Y axis as a line with subdivisions."
+msgstr "Displays the y-axis as a line with subdivisions."
+
#. FoAXW
-#: chart2/uiconfig/ui/insertaxisdlg.ui:142
+#: chart2/uiconfig/ui/insertaxisdlg.ui:149
msgctxt "insertaxisdlg|primaryZ"
msgid "_Z axis"
msgstr "_z-Axis"
+#. DgjxB
+#: chart2/uiconfig/ui/insertaxisdlg.ui:158
+msgctxt "insertaxisdlg|extended_tip|primaryZ"
+msgid "Displays the Z axis as a line with subdivisions."
+msgstr "Displays the z-axis as a line with subdivisions."
+
#. YZ7GG
-#: chart2/uiconfig/ui/insertaxisdlg.ui:165
+#: chart2/uiconfig/ui/insertaxisdlg.ui:177
msgctxt "insertaxisdlg|label1"
msgid "Axes"
msgstr "Axes"
#. WEUFf
-#: chart2/uiconfig/ui/insertaxisdlg.ui:200
+#: chart2/uiconfig/ui/insertaxisdlg.ui:212
msgctxt "insertaxisdlg|secondaryX"
msgid "X _axis"
msgstr "x-_Axis"
+#. JGQhE
+#: chart2/uiconfig/ui/insertaxisdlg.ui:221
+msgctxt "insertaxisdlg|extended_tip|secondaryX"
+msgid "Displays a secondary X axis in the chart."
+msgstr "Displays a secondary x-axis in the chart."
+
#. 598Gk
-#: chart2/uiconfig/ui/insertaxisdlg.ui:216
+#: chart2/uiconfig/ui/insertaxisdlg.ui:233
msgctxt "insertaxisdlg|secondaryY"
msgid "Y ax_is"
msgstr "y-Ax_is"
+#. trDFK
+#: chart2/uiconfig/ui/insertaxisdlg.ui:242
+msgctxt "insertaxisdlg|extended_tip|secondaryY"
+msgid "The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. "
+msgstr "The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 cm. and the other to 1.5 cm. "
+
#. CAFjD
-#: chart2/uiconfig/ui/insertaxisdlg.ui:232
+#: chart2/uiconfig/ui/insertaxisdlg.ui:254
msgctxt "insertaxisdlg|secondaryZ"
msgid "Z axi_s"
msgstr "z-Axi_s"
#. 2LQwV
-#: chart2/uiconfig/ui/insertaxisdlg.ui:255
+#: chart2/uiconfig/ui/insertaxisdlg.ui:277
msgctxt "insertaxisdlg|label2"
msgid "Secondary Axes"
msgstr "Secondary Axes"
+#. 7yEDE
+#: chart2/uiconfig/ui/insertaxisdlg.ui:309
+msgctxt "insertaxisdlg|extended_tip|InsertAxisDialog"
+msgid "Specifies the axes to be displayed in the chart."
+msgstr "Specifies the axes to be displayed in the chart."
+
#. 2eGKS
#: chart2/uiconfig/ui/insertgriddlg.ui:8
msgctxt "insertgriddlg|InsertGridDialog"
@@ -1605,53 +1875,95 @@ msgid "Grids"
msgstr "Grids"
#. adEgJ
-#: chart2/uiconfig/ui/insertgriddlg.ui:110
+#: chart2/uiconfig/ui/insertgriddlg.ui:107
msgctxt "insertgriddlg|primaryX"
msgid "_X axis"
msgstr "_x-Axis"
+#. TeVcH
+#: chart2/uiconfig/ui/insertgriddlg.ui:116
+msgctxt "insertgriddlg|extended_tip|primaryX"
+msgid "Adds gridlines to the X axis of the chart."
+msgstr "Adds grid lines to the x-axis of the chart."
+
#. FEBZW
-#: chart2/uiconfig/ui/insertgriddlg.ui:126
+#: chart2/uiconfig/ui/insertgriddlg.ui:128
msgctxt "insertgriddlg|primaryY"
msgid "_Y axis"
msgstr "_y-Axis"
+#. 6SmKJ
+#: chart2/uiconfig/ui/insertgriddlg.ui:137
+msgctxt "insertgriddlg|extended_tip|primaryY"
+msgid "Adds gridlines to the Y axis of the chart."
+msgstr "Adds grid lines to the y-axis of the chart."
+
#. XEXTu
-#: chart2/uiconfig/ui/insertgriddlg.ui:142
+#: chart2/uiconfig/ui/insertgriddlg.ui:149
msgctxt "insertgriddlg|primaryZ"
msgid "_Z axis"
msgstr "_z-Axis"
+#. bF4Eb
+#: chart2/uiconfig/ui/insertgriddlg.ui:158
+msgctxt "insertgriddlg|extended_tip|primaryZ"
+msgid "Adds gridlines to the Z axis of the chart."
+msgstr "Adds grid lines to the z-axis of the chart."
+
#. 9QbAA
-#: chart2/uiconfig/ui/insertgriddlg.ui:165
+#: chart2/uiconfig/ui/insertgriddlg.ui:177
msgctxt "insertgriddlg|label1"
msgid "Major Grids"
msgstr "Major Grids"
#. wqXds
-#: chart2/uiconfig/ui/insertgriddlg.ui:200
+#: chart2/uiconfig/ui/insertgriddlg.ui:212
msgctxt "insertgriddlg|secondaryX"
msgid "X _axis"
msgstr "x-_Axis"
+#. cfAUn
+#: chart2/uiconfig/ui/insertgriddlg.ui:221
+msgctxt "insertgriddlg|extended_tip|secondaryX"
+msgid "Adds gridlines that subdivide the X axis into smaller sections."
+msgstr "Adds grid lines that subdivide the x-axis into smaller sections."
+
#. PkzaY
-#: chart2/uiconfig/ui/insertgriddlg.ui:216
+#: chart2/uiconfig/ui/insertgriddlg.ui:233
msgctxt "insertgriddlg|secondaryY"
msgid "Y ax_is"
msgstr "y-Ax_is"
+#. a3asH
+#: chart2/uiconfig/ui/insertgriddlg.ui:242
+msgctxt "insertgriddlg|extended_tip|secondaryY"
+msgid "Adds gridlines that subdivide the Y axis into smaller sections."
+msgstr "Adds grid lines that subdivide the y-axis into smaller sections."
+
#. CcCG8
-#: chart2/uiconfig/ui/insertgriddlg.ui:232
+#: chart2/uiconfig/ui/insertgriddlg.ui:254
msgctxt "insertgriddlg|secondaryZ"
msgid "Z axi_s"
msgstr "z-Axi_s"
+#. hcj99
+#: chart2/uiconfig/ui/insertgriddlg.ui:263
+msgctxt "insertgriddlg|extended_tip|secondaryZ"
+msgid "Adds gridlines that subdivide the Z axis into smaller sections."
+msgstr "Adds grid lines that subdivide the z-axis into smaller sections."
+
#. QBQD4
-#: chart2/uiconfig/ui/insertgriddlg.ui:255
+#: chart2/uiconfig/ui/insertgriddlg.ui:282
msgctxt "insertgriddlg|label2"
msgid "Minor Grids"
msgstr "Minor Grids"
+#. URB9E
+#: chart2/uiconfig/ui/insertgriddlg.ui:314
+msgctxt "insertgriddlg|extended_tip|InsertGridDialog"
+msgid "You can divide the axes into sections by assigning gridlines to them. This allows you to get a better overview of the chart, especially if you are working with large charts."
+msgstr "You can divide the axes into sections by assigning grid lines to them. This allows you to get a better overview of the chart, especially if you are working with large charts."
+
#. rqADt
#: chart2/uiconfig/ui/inserttitledlg.ui:8
msgctxt "inserttitledlg|InsertTitleDialog"
@@ -1659,59 +1971,107 @@ msgid "Titles"
msgstr "Titles"
#. pAKf8
-#: chart2/uiconfig/ui/inserttitledlg.ui:94
+#: chart2/uiconfig/ui/inserttitledlg.ui:91
msgctxt "inserttitledlg|labelMainTitle"
msgid "_Title"
msgstr "_Title"
#. ZBgRn
-#: chart2/uiconfig/ui/inserttitledlg.ui:108
+#: chart2/uiconfig/ui/inserttitledlg.ui:105
msgctxt "inserttitledlg|labelSubTitle"
msgid "_Subtitle"
msgstr "_Subtitle"
+#. aCRZ7
+#: chart2/uiconfig/ui/inserttitledlg.ui:123
+msgctxt "inserttitledlg|extended_tip|maintitle"
+msgid "Enter the desired title for the chart."
+msgstr "Enter the desired title for the chart."
+
+#. 5eiq7
+#: chart2/uiconfig/ui/inserttitledlg.ui:140
+msgctxt "inserttitledlg|extended_tip|subtitle"
+msgid "Enter the desired subtitle for the chart."
+msgstr "Enter the desired subtitle for the chart."
+
#. y8KiH
-#: chart2/uiconfig/ui/inserttitledlg.ui:171
+#: chart2/uiconfig/ui/inserttitledlg.ui:178
msgctxt "inserttitledlg|labelPrimaryXaxis"
msgid "_X axis"
msgstr "_x-Axis"
#. RhsUT
-#: chart2/uiconfig/ui/inserttitledlg.ui:185
+#: chart2/uiconfig/ui/inserttitledlg.ui:192
msgctxt "inserttitledlg|labelPrimaryYaxis"
msgid "_Y axis"
msgstr "_y-Axis"
#. ypJFt
-#: chart2/uiconfig/ui/inserttitledlg.ui:199
+#: chart2/uiconfig/ui/inserttitledlg.ui:206
msgctxt "inserttitledlg|labelPrimaryZaxis"
msgid "_Z axis"
msgstr "_z-Axis"
+#. qz8WP
+#: chart2/uiconfig/ui/inserttitledlg.ui:224
+msgctxt "inserttitledlg|extended_tip|primaryXaxis"
+msgid "Enter the desired title for the X axis of the chart."
+msgstr "Enter the desired title for the x-axis of the chart."
+
+#. 3m5Dk
+#: chart2/uiconfig/ui/inserttitledlg.ui:241
+msgctxt "inserttitledlg|extended_tip|primaryYaxis"
+msgid "Enter the desired title for the Y axis of the chart."
+msgstr "Enter the desired title for the y-axis of the chart."
+
+#. PY2EU
+#: chart2/uiconfig/ui/inserttitledlg.ui:258
+msgctxt "inserttitledlg|extended_tip|primaryZaxis"
+msgid "Enter the desired title for the Z axis of the chart."
+msgstr "Enter the desired title for the z-axis of the chart."
+
#. aHvzY
-#: chart2/uiconfig/ui/inserttitledlg.ui:253
+#: chart2/uiconfig/ui/inserttitledlg.ui:275
msgctxt "inserttitledlg|Axe"
msgid "Axes"
msgstr "Axes"
#. 8XRFP
-#: chart2/uiconfig/ui/inserttitledlg.ui:288
+#: chart2/uiconfig/ui/inserttitledlg.ui:310
msgctxt "inserttitledlg|labelSecondaryXAxis"
msgid "X _axis"
msgstr "x-_Axis"
#. Tq7G9
-#: chart2/uiconfig/ui/inserttitledlg.ui:302
+#: chart2/uiconfig/ui/inserttitledlg.ui:324
msgctxt "inserttitledlg|labelSecondaryYAxis"
msgid "Y ax_is"
msgstr "y-Ax_is"
+#. EsHDi
+#: chart2/uiconfig/ui/inserttitledlg.ui:342
+msgctxt "inserttitledlg|extended_tip|secondaryXaxis"
+msgid "Enter the desired secondary title for the X axis of the chart."
+msgstr "Enter the desired secondary title for the x-axis of the chart."
+
+#. bnwti
+#: chart2/uiconfig/ui/inserttitledlg.ui:359
+msgctxt "inserttitledlg|extended_tip|secondaryYaxis"
+msgid "Enter the desired secondary title for the Y axis of the chart."
+msgstr "Enter the desired secondary title for the y-axis of the chart."
+
#. XvJwD
-#: chart2/uiconfig/ui/inserttitledlg.ui:344
+#: chart2/uiconfig/ui/inserttitledlg.ui:376
msgctxt "inserttitledlg|label2"
msgid "Secondary Axes"
msgstr "Secondary Axes"
+#. Y96AE
+#: chart2/uiconfig/ui/inserttitledlg.ui:408
+msgctxt "inserttitledlg|extended_tip|InsertTitleDialog"
+msgid "Opens a dialog to enter or modify the titles in a chart."
+msgstr "Opens a dialogue box to enter or modify the titles in a chart."
+
#. 23FsQ
#: chart2/uiconfig/ui/paradialog.ui:8
msgctxt "paradialog|ParagraphDialog"
@@ -2259,91 +2619,163 @@ msgid "Smooth Lines"
msgstr "Smooth Lines"
#. vmRbz
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:108
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:105
msgctxt "smoothlinesdlg|TypeLabel"
msgid "Line _Type:"
msgstr "Line _Type:"
#. Nkqhi
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:124
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:121
msgctxt "smoothlinesdlg|SplineTypeComboBox"
msgid "Cubic spline"
msgstr "Cubic spline"
#. LTCVw
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:125
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:122
msgctxt "smoothlinesdlg|SplineTypeComboBox"
msgid "B-spline"
msgstr "B-spline"
+#. EJdNq
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:126
+msgctxt "smoothlinesdlg|extended_tip|SplineTypeComboBox"
+msgid "Apply a line curve model."
+msgstr "Apply a line curve model."
+
#. eecxc
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:158
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:160
msgctxt "smoothlinesdlg|ResolutionLabel"
msgid "_Resolution:"
msgstr "_Resolution:"
#. AdG5v
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:172
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:174
msgctxt "smoothlinesdlg|PolynomialsLabel"
msgid "_Degree of polynomials:"
msgstr "_Degree of polynomials:"
+#. X35yY
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:192
+msgctxt "smoothlinesdlg|extended_tip|ResolutionSpinbutton"
+msgid "Set the resolution."
+msgstr "Set the resolution."
+
+#. a4btg
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:210
+msgctxt "smoothlinesdlg|extended_tip|PolynomialsSpinButton"
+msgid "Set the degree of the polynomials."
+msgstr "Set the degree of the polynomials."
+
+#. YECJR
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:247
+msgctxt "smoothlinesdlg|extended_tip|SmoothLinesDialog"
+msgid "Apply a line curve model."
+msgstr "Apply a line curve model."
+
#. RyJg5
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:131
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:128
msgctxt "steppedlinesdlg|step_start_rb"
msgid "_Start with horizontal line"
msgstr "_Start with horizontal line"
+#. Zcr4L
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:138
+msgctxt "steppedlinesdlg|extended_tip|step_start_rb"
+msgid "Start with horizontal line and step up vertically at the end."
+msgstr "Start with horizontal line and step up vertically at the end."
+
#. iJCAt
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:147
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:149
msgctxt "steppedlinesdlg|step_center_x_rb"
msgid "Step at the _horizontal mean"
msgstr "Step at the _horizontal mean"
+#. D5DGL
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:160
+msgctxt "steppedlinesdlg|extended_tip|step_center_x_rb"
+msgid "Start to step up vertically and end with horizontal line."
+msgstr "Start to step up vertically and end with horizontal line."
+
#. vtGik
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:164
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:171
msgctxt "steppedlinesdlg|step_end_rb"
msgid "_End with horizontal line"
msgstr "_End with horizontal line"
+#. nGAhe
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:182
+msgctxt "steppedlinesdlg|extended_tip|step_end_rb"
+msgid "Start with horizontal line, step up vertically in the middle of the X values and end with horizontal line."
+msgstr "Start with horizontal line, step up vertically in the middle of the X values and end with horizontal line."
+
#. X3536
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:181
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:193
msgctxt "steppedlinesdlg|step_center_y_rb"
msgid "Step to the _vertical mean"
msgstr "Step to the _vertical mean"
+#. S528C
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:204
+msgctxt "steppedlinesdlg|extended_tip|step_center_y_rb"
+msgid "Start to step up vertically to the middle of the Y values, draw a horizontal line and finish by stepping vertically to the end."
+msgstr "Start to step up vertically to the middle of the y-values, draw a horizontal line and finish by stepping vertically to the end."
+
#. oDDMr
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:215
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:232
msgctxt "steppedlinesdlg|label2"
msgid "Type of Stepping"
msgstr "Type of Stepping"
+#. K2DaE
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:44
+msgctxt "titlerotationtabpage|extended_tip|OrientDegree"
+msgid "Allows you to manually enter the orientation angle."
+msgstr "Allows you to manually enter the orientation angle."
+
#. ViJ9k
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:53
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:58
msgctxt "titlerotationtabpage|degreeL"
msgid "_Degrees"
msgstr "_Degrees"
#. tv9xJ
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:87
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:92
msgctxt "titlerotationtabpage|stackedCB"
msgid "Ve_rtically stacked"
msgstr "Ve_rtically stacked"
+#. VGDph
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:102
+msgctxt "titlerotationtabpage|extended_tip|stackedCB"
+msgid "Assigns vertical text orientation for cell contents."
+msgstr "Assigns vertical text orientation for cell content."
+
#. 3BaMa
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:104
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:114
msgctxt "titlerotationtabpage|labelABCD"
msgid "ABCD"
msgstr "ABCD"
#. dAHWb
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:121
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:131
msgctxt "titlerotationtabpage|textdirL"
msgid "Te_xt direction:"
msgstr "Te_xt direction:"
+#. i5UYm
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:145
+msgctxt "titlerotationtabpage|extended_tip|textdirLB"
+msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+msgstr "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+
+#. 9cDiw
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:164
+msgctxt "titlerotationtabpage|extended_tip|dialCtrl"
+msgid "Clicking anywhere on the wheel defines the variable text orientation."
+msgstr "Clicking anywhere on the wheel defines the variable text orientation."
+
#. syx89
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:161
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:181
msgctxt "titlerotationtabpage|labelTextOrient"
msgid "Text Orientation"
msgstr "Text Orientation"
@@ -2372,138 +2804,276 @@ msgctxt "tp_3D_SceneAppearance|liststoreSCHEME"
msgid "Custom"
msgstr "Custom"
+#. raML6
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:42
+msgctxt "tp_3D_SceneAppearance|extended_tip|LB_SCHEME"
+msgid "Select a scheme from the list box, or click any of the check boxes below."
+msgstr "Select a scheme from the list box, or mark any of the check boxes below."
+
#. EyGsf
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:73
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:78
msgctxt "tp_3D_SceneAppearance|CB_SHADING"
msgid "_Shading"
msgstr "_Shading"
+#. W68hV
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:87
+msgctxt "tp_3D_SceneAppearance|extended_tip|CB_SHADING"
+msgid "Applies Gouraud shading if marked, or flat shading if unmarked."
+msgstr "Applies Gouraud shading if marked, or flat shading if unmarked."
+
#. SMFrD
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:89
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:99
msgctxt "tp_3D_SceneAppearance|CB_OBJECTLINES"
msgid "_Object borders"
msgstr "_Object borders"
+#. CQjGV
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:108
+msgctxt "tp_3D_SceneAppearance|extended_tip|CB_OBJECTLINES"
+msgid "Shows borders around the areas by setting the line style to Solid."
+msgstr "Shows borders around the areas by setting the line style to Solid."
+
#. CpWRj
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:105
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:120
msgctxt "tp_3D_SceneAppearance|CB_ROUNDEDEDGE"
msgid "_Rounded edges"
msgstr "_Rounded edges"
+#. c5pNB
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:129
+msgctxt "tp_3D_SceneAppearance|extended_tip|CB_ROUNDEDEDGE"
+msgid "Edges are rounded by 5%."
+msgstr "Edges are rounded by 5%."
+
#. U5CTF
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:36
msgctxt "tp_3D_SceneGeometry|CBX_RIGHT_ANGLED_AXES"
msgid "_Right-angled axes"
msgstr "_Right-angled axes"
+#. QxmLn
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:45
+msgctxt "tp_3D_SceneGeometry|extended_tip|CBX_RIGHT_ANGLED_AXES"
+msgid "If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes."
+msgstr "If Right-angled axes is enabled, you can rotate the chart contents only in x- and y-direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3-D charts. Pie and Doughnut charts do not support right-angled axes."
+
#. y8Tyg
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:54
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:59
msgctxt "tp_3D_SceneGeometry|FT_X_ROTATION"
msgid "_X rotation"
msgstr "_x-Rotation"
#. TJ2Xp
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:68
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:73
msgctxt "tp_3D_SceneGeometry|FT_Y_ROTATION"
msgid "_Y rotation"
msgstr "_y-Rotation"
#. UTAG5
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:82
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:87
msgctxt "tp_3D_SceneGeometry|FT_Z_ROTATION"
msgid "_Z rotation"
msgstr "_z-Rotation"
#. ZC8ZQ
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:94
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:99
msgctxt "tp_3D_SceneGeometry|CBX_PERSPECTIVE"
msgid "_Perspective"
msgstr "_Perspective"
+#. xyePC
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:111
+msgctxt "tp_3D_SceneGeometry|extended_tip|CBX_PERSPECTIVE"
+msgid "Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects."
+msgstr "Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects."
+
#. mdPAi
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:121
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:131
msgctxt "tp_3D_SceneGeometry|MTR_FLD_PERSPECTIVE-atkobject"
msgid "Perspective"
msgstr "Perspective"
+#. JECHC
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:132
+msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_PERSPECTIVE"
+msgid "Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects."
+msgstr "Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects."
+
+#. PP8jT
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:150
+msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Z_ROTATION"
+msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings."
+msgstr "Sets the rotation of the chart on the z-axis. The preview responds to the new settings."
+
+#. AyMWn
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:167
+msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Y_ROTATION"
+msgid "Sets the rotation of the chart on the y axis. The preview responds to the new settings."
+msgstr "Sets the rotation of the chart on the y-axis. The preview responds to the new settings."
+
+#. EGS4B
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:184
+msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_X_ROTATION"
+msgid "Sets the rotation of the chart on the x axis. The preview responds to the new settings."
+msgstr "Sets the rotation of the chart on the x-axis. The preview responds to the new settings."
+
#. RGQDC
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:95
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_1|tooltip_text"
msgid "Light source 1"
msgstr "Light source 1"
+#. EQb5g
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:100
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_1"
+msgid "Click to enable or disable the specular light source with highlights."
+msgstr "Click to enable or disable the specular light source with highlights."
+
#. bwfDH
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:109
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:114
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_2|tooltip_text"
msgid "Light source 2"
msgstr "Light source 2"
+#. jkJM8
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:119
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_2"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Click to enable or disable the uniform light source."
+
#. uMVDV
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:123
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:133
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_3|tooltip_text"
msgid "Light source 3"
msgstr "Light source 3"
+#. ZEUk7
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:138
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_3"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Click to enable or disable the uniform light source."
+
#. 6CBDG
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:137
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:152
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_4|tooltip_text"
msgid "Light source 4"
msgstr "Light source 4"
+#. X5ZD3
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:157
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_4"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Click to enable or disable the uniform light source."
+
#. Hf5Du
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:151
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:171
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_5|tooltip_text"
msgid "Light source 5"
msgstr "Light source 5"
+#. mUPX4
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:176
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_5"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Click to enable or disable the uniform light source."
+
#. T7qDZ
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:165
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:190
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_6|tooltip_text"
msgid "Light source 6"
msgstr "Light source 6"
+#. AAkx2
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:195
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_6"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Click to enable or disable the uniform light source."
+
#. mSsDD
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:179
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:209
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_7|tooltip_text"
msgid "Light source 7"
msgstr "Light source 7"
+#. Rh9Hz
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:214
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_7"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Click to enable or disable the uniform light source."
+
#. wY5CR
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:193
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:228
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_8|tooltip_text"
msgid "Light source 8"
msgstr "Light source 8"
+#. EbsUA
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:233
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_8"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Click to enable or disable the uniform light source."
+
+#. DwEDc
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:266
+msgctxt "tp_3D_SceneIllumination|extended_tip|LB_LIGHTSOURCE"
+msgid "Select a color for the selected light source."
+msgstr "Select a colour for the selected light source."
+
#. gfdAB
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:237
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:281
msgctxt "tp_3D_SceneIllumination|BTN_LIGHTSOURCE_COLOR|tooltip_text"
msgid "Select a color using the color dialog"
msgstr "Select a colour using the colour dialogue box"
+#. JnBhP
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:285
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHTSOURCE_COLOR"
+msgid "Select a color using the color dialog."
+msgstr "Select a colour using the colour dialogue box."
+
#. XLXEQ
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:261
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:310
msgctxt "tp_3D_SceneIllumination|FT_LIGHTSOURCE"
msgid "_Light source"
msgstr "_Light source"
+#. WssJA
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:355
+msgctxt "tp_3D_SceneIllumination|extended_tip|LB_AMBIENTLIGHT"
+msgid "Select a color for the ambient light."
+msgstr "Select a colour for the ambient light."
+
#. NpAu7
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:317
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:370
msgctxt "tp_3D_SceneIllumination|BTN_AMBIENT_COLOR|tooltip_text"
msgid "Select a color using the color dialog"
msgstr "Select a colour using the colour dialogue box"
+#. 943Za
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:374
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_AMBIENT_COLOR"
+msgid "Select a color using the color dialog."
+msgstr "Select a colour using the colour dialogue box."
+
#. QCb7M
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:334
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:392
msgctxt "tp_3D_SceneIllumination|FT_AMBIENTLIGHT"
msgid "_Ambient light"
msgstr "_Ambient light"
#. snUGf
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:377
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:435
msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text"
msgid "Light Preview"
msgstr "Light Preview"
+#. tQBhd
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:493
+msgctxt "tp_3D_SceneIllumination|extended_tip|tp_3D_SceneIllumination"
+msgid "Set the light sources for the 3D view."
+msgstr "Set the light sources for the 3-D view."
+
#. XRVrG
#: chart2/uiconfig/ui/tp_AxisPositions.ui:48
msgctxt "tp_AxisPositions|FT_CROSSES_OTHER_AXIS_AT"
@@ -2534,170 +3104,236 @@ msgctxt "tp_AxisPositions|LB_CROSSES_OTHER_AXIS_AT"
msgid "Category"
msgstr "Category"
+#. eKYhk
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:71
+msgctxt "tp_AxisPositions|extended_tip|LB_CROSSES_OTHER_AXIS_AT"
+msgid "Select where to cross the other axis: at start, at end, at a specified value, or at a category."
+msgstr "Select where to cross the other axis: at start, at end, at a specified value, or at a category."
+
+#. FwCEp
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:89
+msgctxt "tp_AxisPositions|extended_tip|EDT_CROSSES_OTHER_AXIS_AT"
+msgid "Enter the value where the axis line should cross the other axis."
+msgstr "Enter the value where the axis line should cross the other axis."
+
+#. AnLbY
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:112
+msgctxt "tp_AxisPositions|extended_tip|EDT_CROSSES_OTHER_AXIS_AT_CATEGORY"
+msgid "Select the category where the axis line should cross the other axis."
+msgstr "Select the category where the axis line should cross the other axis."
+
#. VYVhe
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:116
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:131
msgctxt "tp_AxisPositions|CB_AXIS_BETWEEN_CATEGORIES"
msgid "Axis _between categories"
msgstr "Axis _between categories"
#. bW7T9
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:137
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:152
msgctxt "tp_AxisPositions|TXT_AXIS_LINE"
msgid "Axis Line"
msgstr "Axis Line"
#. 5ezBt
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:170
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:185
msgctxt "tp_AxisPositions|RB_ON"
msgid "_On tick marks"
msgstr "_On tick marks"
+#. FaKJZ
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:194
+msgctxt "tp_AxisPositions|extended_tip|RB_ON"
+msgid "Specifies that the axis is positioned on the first/last tickmarks. This makes the data points visual representation begin/end at the value axis."
+msgstr "Specifies that the axis is positioned on the first/last tick marks. This makes the data points visual representation begin/end at the value axis."
+
#. gSFeZ
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:185
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:205
msgctxt "tp_AxisPositions|RB_BETWEEN"
msgid "_Between tick marks"
msgstr "_Between tick marks"
+#. BSx2x
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:215
+msgctxt "tp_AxisPositions|extended_tip|RB_BETWEEN"
+msgid "Specifies that the axis is positioned between the tickmarks. This makes the data points visual representation begin/end at a distance from the value axis."
+msgstr "Specifies that the axis is positioned between the tick marks. This makes the data points visual representation begin/end at a distance from the value axis."
+
#. ExBDm
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:207
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:232
msgctxt "tp_AxisPositions|TXT_POSITION"
msgid "Position Axis"
msgstr "Position Axis"
#. 5AGbD
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:248
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:273
msgctxt "tp_AxisPositions|FT_PLACE_LABELS"
msgid "_Place labels"
msgstr "_Place labels"
#. GDk2L
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:264
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:289
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Near axis"
msgstr "Near axis"
#. ZWQzB
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:265
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:290
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Near axis (other side)"
msgstr "Near axis (other side)"
#. j3GGm
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:266
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:291
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Outside start"
msgstr "Outside start"
#. mGDNr
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:267
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:292
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Outside end"
msgstr "Outside end"
+#. ChAqv
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:296
+msgctxt "tp_AxisPositions|extended_tip|LB_PLACE_LABELS"
+msgid "Select where to place the labels: near axis, near axis (other side), outside start, or outside end."
+msgstr "Select where to place the labels: near axis, near axis (other side), outside start, or outside end."
+
#. DUNn4
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:291
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:321
msgctxt "tp_AxisPositions|FT_AXIS_LABEL_DISTANCE"
msgid "_Distance"
msgstr "_Distance"
#. Hkjze
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:329
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:359
msgctxt "tp_AxisPositions|TXT_FL_LABELS"
msgid "Labels"
msgstr "Labels"
#. YBk4g
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:371
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:401
msgctxt "tp_AxisPositions|FT_MAJOR"
msgid "Major:"
msgstr "Major:"
#. G8MEU
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:387
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:417
msgctxt "tp_AxisPositions|FT_MINOR"
msgid "Minor:"
msgstr "Minor:"
#. UN6Pr
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:401
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:431
msgctxt "tp_AxisPositions|CB_TICKS_INNER"
msgid "_Inner"
msgstr "_Inner"
+#. DpVNk
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:443
+msgctxt "tp_AxisPositions|extended_tip|CB_TICKS_INNER"
+msgid "Specifies that marks are placed on the inner side of the axis."
+msgstr "Specifies that marks are placed on the inner side of the axis."
+
#. EhLxm
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:419
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:454
msgctxt "tp_AxisPositions|CB_TICKS_OUTER"
msgid "_Outer"
msgstr "_Outer"
+#. DGWEb
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:466
+msgctxt "tp_AxisPositions|extended_tip|CB_TICKS_OUTER"
+msgid "Specifies that marks are placed on the outer side of the axis."
+msgstr "Specifies that marks are placed on the outer side of the axis."
+
#. RJXic
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:437
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:477
msgctxt "tp_AxisPositions|CB_MINOR_INNER"
msgid "I_nner"
msgstr "I_nner"
+#. jbRx3
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:489
+msgctxt "tp_AxisPositions|extended_tip|CB_MINOR_INNER"
+msgid "Specifies that minor interval marks are placed on the inner side of the axis."
+msgstr "Specifies that minor interval marks are placed on the inner side of the axis."
+
#. nBCFJ
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:455
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:500
msgctxt "tp_AxisPositions|CB_MINOR_OUTER"
msgid "O_uter"
msgstr "O_uter"
+#. JAi2f
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:512
+msgctxt "tp_AxisPositions|extended_tip|CB_MINOR_OUTER"
+msgid "Specifies that minor interval marks are placed on the outer side of the axis."
+msgstr "Specifies that minor interval marks are placed on the outer side of the axis."
+
#. XWuxR
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:487
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:537
msgctxt "tp_AxisPositions|FT_PLACE_TICKS"
msgid "Place _marks"
msgstr "Place _marks"
#. mvGBB
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:503
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:553
msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
msgid "At labels"
msgstr "At labels"
#. dGAYz
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:504
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:554
msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
msgid "At axis"
msgstr "At axis"
#. TJAJB
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:505
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:555
msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
msgid "At axis and labels"
msgstr "At axis and labels"
+#. tED2r
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:559
+msgctxt "tp_AxisPositions|extended_tip|LB_PLACE_TICKS"
+msgid "Select where to place the marks: at labels, at axis, or at axis and labels."
+msgstr "Select where to place the marks: at labels, at axis, or at axis and labels."
+
#. jK9rf
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:529
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:584
msgctxt "tp_AxisPositions|TXT_FL_TICKS"
msgid "Interval Marks"
msgstr "Interval Marks"
#. 4Jp7G
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:562
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:617
msgctxt "tp_AxisPositions|CB_MAJOR_GRID"
msgid "Show major _grid"
msgstr "Show major _grid"
#. 7c2Hs
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:578
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:633
msgctxt "tp_AxisPositions|CB_MINOR_GRID"
msgid "_Show minor grid"
msgstr "_Show minor grid"
#. Dp5Ar
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:593
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:648
msgctxt "tp_AxisPositions|PB_MAJOR_GRID"
msgid "Mo_re..."
msgstr "Mo_re..."
#. k5VQQ
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:606
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:661
msgctxt "tp_AxisPositions|PB_MINOR_GRID"
msgid "Mor_e..."
msgstr "Mor_e..."
#. 7eDLK
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:626
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:681
msgctxt "tp_AxisPositions|label2"
msgid "Grids"
msgstr "Grids"
@@ -2708,302 +3344,452 @@ msgctxt "tp_ChartType|FT_CAPTION_FOR_WIZARD"
msgid "Choose a Chart Type"
msgstr "Choose a Chart Type"
+#. wBFXQ
+#: chart2/uiconfig/ui/tp_ChartType.ui:93
+msgctxt "tp_ChartType|extended_tip|subtype"
+msgid "Select a sub type of the basic chart type."
+msgstr "Select a sub-type of the basic chart type."
+
#. FSf6b
-#: chart2/uiconfig/ui/tp_ChartType.ui:113
+#: chart2/uiconfig/ui/tp_ChartType.ui:118
msgctxt "tp_ChartType|3dlook"
msgid "_3D Look"
msgstr "_3-D Look"
+#. EB95g
+#: chart2/uiconfig/ui/tp_ChartType.ui:129
+msgctxt "tp_ChartType|extended_tip|3dlook"
+msgid "Enables a 3D look for the data values."
+msgstr "Enables a 3-D look for the data values."
+
#. FprGw
-#: chart2/uiconfig/ui/tp_ChartType.ui:132
+#: chart2/uiconfig/ui/tp_ChartType.ui:142
msgctxt "tp_ChartType|3dscheme"
msgid "Simple"
msgstr "Simple"
#. pKhfX
-#: chart2/uiconfig/ui/tp_ChartType.ui:133
+#: chart2/uiconfig/ui/tp_ChartType.ui:143
msgctxt "tp_ChartType|3dscheme"
msgid "Realistic"
msgstr "Realistic"
+#. zZxWG
+#: chart2/uiconfig/ui/tp_ChartType.ui:150
+msgctxt "tp_ChartType|extended_tip|3dscheme"
+msgid "Select the type of 3D look."
+msgstr "Select the type of 3-D look."
+
#. FxHfq
-#: chart2/uiconfig/ui/tp_ChartType.ui:154
+#: chart2/uiconfig/ui/tp_ChartType.ui:169
msgctxt "tp_ChartType|shapeft"
msgid "Sh_ape"
msgstr "Sh_ape"
+#. CCA3V
+#: chart2/uiconfig/ui/tp_ChartType.ui:211
+msgctxt "tp_ChartType|extended_tip|shape"
+msgid "Select a shape from the list."
+msgstr "Select a shape from the list."
+
#. G2u4D
-#: chart2/uiconfig/ui/tp_ChartType.ui:215
+#: chart2/uiconfig/ui/tp_ChartType.ui:235
msgctxt "tp_ChartType|stack"
msgid "_Stack series"
msgstr "_Stack series"
+#. h8wCq
+#: chart2/uiconfig/ui/tp_ChartType.ui:243
+msgctxt "tp_ChartType|extended_tip|stack"
+msgid "Displays stacked series for Line charts."
+msgstr "Displays stacked series for Line charts."
+
#. KfD2L
-#: chart2/uiconfig/ui/tp_ChartType.ui:239
+#: chart2/uiconfig/ui/tp_ChartType.ui:264
msgctxt "tp_ChartType|ontop"
msgid "On top"
msgstr "On top"
+#. DY854
+#: chart2/uiconfig/ui/tp_ChartType.ui:273
+msgctxt "tp_ChartType|extended_tip|ontop"
+msgid "Stack series display values on top of each other."
+msgstr "Stack series display values on top of each other."
+
#. C7JxK
-#: chart2/uiconfig/ui/tp_ChartType.ui:254
+#: chart2/uiconfig/ui/tp_ChartType.ui:284
msgctxt "tp_ChartType|percent"
msgid "Percent"
msgstr "Percent"
+#. EVNAR
+#: chart2/uiconfig/ui/tp_ChartType.ui:293
+msgctxt "tp_ChartType|extended_tip|percent"
+msgid "Stack series display values as percent."
+msgstr "Stack series display values as percent."
+
#. ijuPy
-#: chart2/uiconfig/ui/tp_ChartType.ui:269
+#: chart2/uiconfig/ui/tp_ChartType.ui:304
msgctxt "tp_ChartType|deep"
msgid "Deep"
msgstr "Deep"
#. etF2p
-#: chart2/uiconfig/ui/tp_ChartType.ui:298
+#: chart2/uiconfig/ui/tp_ChartType.ui:333
msgctxt "tp_ChartType|linetypeft"
msgid "_Line type"
msgstr "_Line type"
#. RbyB4
-#: chart2/uiconfig/ui/tp_ChartType.ui:312
+#: chart2/uiconfig/ui/tp_ChartType.ui:347
msgctxt "tp_ChartType|linetype"
msgid "Straight"
msgstr "Straight"
#. dG5tv
-#: chart2/uiconfig/ui/tp_ChartType.ui:313
+#: chart2/uiconfig/ui/tp_ChartType.ui:348
msgctxt "tp_ChartType|linetype"
msgid "Smooth"
msgstr "Smooth"
#. uHHpu
-#: chart2/uiconfig/ui/tp_ChartType.ui:314
+#: chart2/uiconfig/ui/tp_ChartType.ui:349
msgctxt "tp_ChartType|linetype"
msgid "Stepped"
msgstr "Stepped"
+#. G3eDR
+#: chart2/uiconfig/ui/tp_ChartType.ui:353
+msgctxt "tp_ChartType|extended_tip|linetype"
+msgid "Choose the type of line to draw."
+msgstr "Choose the type of line to draw."
+
#. JqNUv
-#: chart2/uiconfig/ui/tp_ChartType.ui:324
+#: chart2/uiconfig/ui/tp_ChartType.ui:364
msgctxt "tp_ChartType|properties"
msgid "Properties..."
msgstr "Properties..."
+#. EnymX
+#: chart2/uiconfig/ui/tp_ChartType.ui:370
+msgctxt "tp_ChartType|extended_tip|properties"
+msgid "Opens a dialog to set the line or curve properties."
+msgstr "Opens a dialogue box to set the line or curve properties."
+
#. KzGZQ
-#: chart2/uiconfig/ui/tp_ChartType.ui:342
+#: chart2/uiconfig/ui/tp_ChartType.ui:387
msgctxt "tp_ChartType|sort"
msgid "_Sort by X values"
msgstr "_Sort by x-values"
+#. tbgi3
+#: chart2/uiconfig/ui/tp_ChartType.ui:395
+msgctxt "tp_ChartType|extended_tip|sort"
+msgid "Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram."
+msgstr "Connects points by ascending x-values, even if the order of values is different, in an X-Y scatter diagram."
+
#. CmGat
-#: chart2/uiconfig/ui/tp_ChartType.ui:363
+#: chart2/uiconfig/ui/tp_ChartType.ui:413
msgctxt "tp_ChartType|nolinesft"
msgid "_Number of lines"
msgstr "_Number of lines"
+#. bBgDJ
+#: chart2/uiconfig/ui/tp_ChartType.ui:432
+msgctxt "tp_ChartType|extended_tip|nolines"
+msgid "Set the number of lines for the Column and Line chart type."
+msgstr "Set the number of lines for the Column and Line chart type."
+
+#. M2sxB
+#: chart2/uiconfig/ui/tp_ChartType.ui:501
+msgctxt "tp_ChartType|extended_tip|charttype"
+msgid "Select a basic chart type."
+msgstr "Select a basic chart type."
+
#. qRkoY
#: chart2/uiconfig/ui/tp_DataLabel.ui:37
msgctxt "tp_DataLabel|CB_VALUE_AS_NUMBER"
msgid "Show value as _number"
msgstr "Show value as _number"
+#. uGdoi
+#: chart2/uiconfig/ui/tp_DataLabel.ui:46
+msgctxt "tp_DataLabel|extended_tip|CB_VALUE_AS_NUMBER"
+msgid "Displays the absolute values of the data points."
+msgstr "Displays the absolute values of the data points."
+
#. wRisc
-#: chart2/uiconfig/ui/tp_DataLabel.ui:52
+#: chart2/uiconfig/ui/tp_DataLabel.ui:57
msgctxt "tp_DataLabel|CB_VALUE_AS_PERCENTAGE"
msgid "Show value as _percentage"
msgstr "Show value as _percentage"
+#. FcaPo
+#: chart2/uiconfig/ui/tp_DataLabel.ui:66
+msgctxt "tp_DataLabel|extended_tip|CB_VALUE_AS_PERCENTAGE"
+msgid "Displays the percentage of the data points in each column."
+msgstr "Displays the percentage of the data points in each column."
+
#. gyqnC
-#: chart2/uiconfig/ui/tp_DataLabel.ui:67
+#: chart2/uiconfig/ui/tp_DataLabel.ui:77
msgctxt "tp_DataLabel|CB_CATEGORY"
msgid "Show _category"
msgstr "Show _category"
+#. EZXZX
+#: chart2/uiconfig/ui/tp_DataLabel.ui:86
+msgctxt "tp_DataLabel|extended_tip|CB_CATEGORY"
+msgid "Shows the data point text labels."
+msgstr "Shows the data point text labels."
+
#. kce65
-#: chart2/uiconfig/ui/tp_DataLabel.ui:82
+#: chart2/uiconfig/ui/tp_DataLabel.ui:97
msgctxt "tp_DataLabel|CB_SYMBOL"
msgid "Show _legend key"
msgstr "Show _legend key"
+#. Bm8gp
+#: chart2/uiconfig/ui/tp_DataLabel.ui:106
+msgctxt "tp_DataLabel|extended_tip|CB_SYMBOL"
+msgid "Displays the legend icons next to each data point label."
+msgstr "Displays the legend icons next to each data point label."
+
#. K3uFN
-#: chart2/uiconfig/ui/tp_DataLabel.ui:97
+#: chart2/uiconfig/ui/tp_DataLabel.ui:117
msgctxt "tp_DataLabel|CB_WRAP_TEXT"
msgid "Auto text _wrap"
msgstr "Auto text _wrap"
#. tgNDD
-#: chart2/uiconfig/ui/tp_DataLabel.ui:112
+#: chart2/uiconfig/ui/tp_DataLabel.ui:132
msgctxt "tp_DataLabel|PB_NUMBERFORMAT"
msgid "Number _format..."
msgstr "Number _format..."
+#. nzq24
+#: chart2/uiconfig/ui/tp_DataLabel.ui:140
+msgctxt "tp_DataLabel|extended_tip|PB_NUMBERFORMAT"
+msgid "Opens a dialog to select the number format."
+msgstr "Opens a dialogue box to select the number format."
+
#. PYC2b
-#: chart2/uiconfig/ui/tp_DataLabel.ui:126
+#: chart2/uiconfig/ui/tp_DataLabel.ui:151
msgctxt "tp_DataLabel|PB_PERCENT_NUMBERFORMAT"
msgid "Percentage f_ormat..."
msgstr "Percentage f_ormat..."
+#. 3wD3x
+#: chart2/uiconfig/ui/tp_DataLabel.ui:159
+msgctxt "tp_DataLabel|extended_tip|PB_PERCENT_NUMBERFORMAT"
+msgid "Opens a dialog to select the percentage format."
+msgstr "Opens a dialogue box to select the percentage format."
+
#. gFELD
-#: chart2/uiconfig/ui/tp_DataLabel.ui:142
+#: chart2/uiconfig/ui/tp_DataLabel.ui:172
msgctxt "tp_DataLabel|CT_LABEL_DIAL"
msgid "ABCD"
msgstr "ABCD"
#. GqA8C
-#: chart2/uiconfig/ui/tp_DataLabel.ui:161
+#: chart2/uiconfig/ui/tp_DataLabel.ui:191
msgctxt "tp_DataLabel|FT_TEXT_SEPARATOR"
msgid "_Separator"
msgstr "_Separator"
#. oPhGH
-#: chart2/uiconfig/ui/tp_DataLabel.ui:178
+#: chart2/uiconfig/ui/tp_DataLabel.ui:208
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Space"
msgstr "Space"
#. fR4fG
-#: chart2/uiconfig/ui/tp_DataLabel.ui:179
+#: chart2/uiconfig/ui/tp_DataLabel.ui:209
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Comma"
msgstr "Comma"
#. 5baF4
-#: chart2/uiconfig/ui/tp_DataLabel.ui:180
+#: chart2/uiconfig/ui/tp_DataLabel.ui:210
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Semicolon"
msgstr "Semicolon"
#. 8MGkQ
-#: chart2/uiconfig/ui/tp_DataLabel.ui:181
+#: chart2/uiconfig/ui/tp_DataLabel.ui:211
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "New line"
msgstr "New line"
#. bpmiF
-#: chart2/uiconfig/ui/tp_DataLabel.ui:182
+#: chart2/uiconfig/ui/tp_DataLabel.ui:212
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Period"
msgstr "Period"
+#. jjR8u
+#: chart2/uiconfig/ui/tp_DataLabel.ui:216
+msgctxt "tp_DataLabel|extended_tip|LB_TEXT_SEPARATOR"
+msgid "Selects the separator between multiple text strings for the same object."
+msgstr "Selects the separator between multiple text strings for the same object."
+
#. 2MNGz
-#: chart2/uiconfig/ui/tp_DataLabel.ui:207
+#: chart2/uiconfig/ui/tp_DataLabel.ui:242
msgctxt "tp_DataLabel|FT_LABEL_PLACEMENT"
msgid "Place_ment"
msgstr "Place_ment"
#. L2MYb
-#: chart2/uiconfig/ui/tp_DataLabel.ui:224
+#: chart2/uiconfig/ui/tp_DataLabel.ui:259
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Best fit"
msgstr "Best fit"
#. ba7eW
-#: chart2/uiconfig/ui/tp_DataLabel.ui:225
+#: chart2/uiconfig/ui/tp_DataLabel.ui:260
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Center"
msgstr "Centre"
#. nW5vs
-#: chart2/uiconfig/ui/tp_DataLabel.ui:226
+#: chart2/uiconfig/ui/tp_DataLabel.ui:261
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr "Above"
#. gW9Aa
-#: chart2/uiconfig/ui/tp_DataLabel.ui:227
+#: chart2/uiconfig/ui/tp_DataLabel.ui:262
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr "Top left"
#. UQBcJ
-#: chart2/uiconfig/ui/tp_DataLabel.ui:228
+#: chart2/uiconfig/ui/tp_DataLabel.ui:263
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr "Left"
#. CVw6x
-#: chart2/uiconfig/ui/tp_DataLabel.ui:229
+#: chart2/uiconfig/ui/tp_DataLabel.ui:264
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr "Bottom left"
#. EF7Qb
-#: chart2/uiconfig/ui/tp_DataLabel.ui:230
+#: chart2/uiconfig/ui/tp_DataLabel.ui:265
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr "Below"
#. bdAYf
-#: chart2/uiconfig/ui/tp_DataLabel.ui:231
+#: chart2/uiconfig/ui/tp_DataLabel.ui:266
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr "Bottom right"
#. kHGEs
-#: chart2/uiconfig/ui/tp_DataLabel.ui:232
+#: chart2/uiconfig/ui/tp_DataLabel.ui:267
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr "Right"
#. GFkmP
-#: chart2/uiconfig/ui/tp_DataLabel.ui:233
+#: chart2/uiconfig/ui/tp_DataLabel.ui:268
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr "Top right"
#. KFZhx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:234
+#: chart2/uiconfig/ui/tp_DataLabel.ui:269
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr "Inside"
#. BJm6w
-#: chart2/uiconfig/ui/tp_DataLabel.ui:235
+#: chart2/uiconfig/ui/tp_DataLabel.ui:270
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr "Outside"
#. XGkMi
-#: chart2/uiconfig/ui/tp_DataLabel.ui:236
+#: chart2/uiconfig/ui/tp_DataLabel.ui:271
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr "Near origin"
+#. vq2Bf
+#: chart2/uiconfig/ui/tp_DataLabel.ui:275
+msgctxt "tp_DataLabel|extended_tip|LB_LABEL_PLACEMENT"
+msgid "Selects the placement of data labels relative to the objects."
+msgstr "Selects the placement of data labels relative to the objects."
+
#. PNGYD
-#: chart2/uiconfig/ui/tp_DataLabel.ui:255
+#: chart2/uiconfig/ui/tp_DataLabel.ui:295
msgctxt "tp_DataLabel|STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE"
msgid "Number Format for Percentage Value"
msgstr "Number Format for Percentage Value"
#. 3BZrx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:273
+#: chart2/uiconfig/ui/tp_DataLabel.ui:313
msgctxt "tp_DataLabel|label1"
msgid "Text Attributes"
msgstr "Text Attributes"
+#. avLCL
+#: chart2/uiconfig/ui/tp_DataLabel.ui:357
+msgctxt "tp_DataLabel|extended_tip|CT_DIAL"
+msgid "Click in the dial to set the text orientation for the data labels."
+msgstr "Click in the dial to set the text orientation for the data labels."
+
+#. eKwUH
+#: chart2/uiconfig/ui/tp_DataLabel.ui:377
+msgctxt "tp_DataLabel|extended_tip|NF_LABEL_DEGREES"
+msgid "Enter the counterclockwise rotation angle for the data labels."
+msgstr "Enter the counterclockwise rotation angle for the data labels."
+
#. VArif
-#: chart2/uiconfig/ui/tp_DataLabel.ui:341
+#: chart2/uiconfig/ui/tp_DataLabel.ui:391
msgctxt "tp_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr "_Degrees"
#. zdP7E
-#: chart2/uiconfig/ui/tp_DataLabel.ui:366
+#: chart2/uiconfig/ui/tp_DataLabel.ui:416
msgctxt "tp_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr "Te_xt direction"
+#. MYXZo
+#: chart2/uiconfig/ui/tp_DataLabel.ui:433
+msgctxt "tp_DataLabel|extended_tip|LB_LABEL_TEXTDIR"
+msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+msgstr "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+
#. PKnKk
-#: chart2/uiconfig/ui/tp_DataLabel.ui:403
+#: chart2/uiconfig/ui/tp_DataLabel.ui:458
msgctxt "tp_DataLabel|label2"
msgid "Rotate Text"
msgstr "Rotate Text"
+#. iDheE
+#: chart2/uiconfig/ui/tp_DataLabel.ui:474
+msgctxt "tp_DataLabel|extended_tip|tp_DataLabel"
+msgid "Opens the Data Labels dialog, which enables you to set the data labels."
+msgstr "Opens the Data Labels dialogue box, which enables you to set the data labels."
+
#. rXE7B
#: chart2/uiconfig/ui/tp_DataPointOption.ui:41
msgctxt "tp_DataPointOption|CB_LEGEND_ENTRY_HIDDEN"
msgid "Hide legend entry"
msgstr "Hide legend entry"
+#. k2s9H
+#: chart2/uiconfig/ui/tp_DataPointOption.ui:49
+msgctxt "tp_DataPointOption|extended_tip|CB_LEGEND_ENTRY_HIDDEN"
+msgid "Do not show legend entry for the selected data series or data point."
+msgstr "Do not show legend entry for the selected data series or data point."
+
#. DUQwA
-#: chart2/uiconfig/ui/tp_DataPointOption.ui:62
+#: chart2/uiconfig/ui/tp_DataPointOption.ui:67
msgctxt "tp_DataPointOption|label1"
msgid "Legend Entry"
msgstr "Legend Entry"
@@ -3021,61 +3807,121 @@ msgid "Select data range"
msgstr "Select data range"
#. 2iNp6
-#: chart2/uiconfig/ui/tp_DataSource.ui:60
+#: chart2/uiconfig/ui/tp_DataSource.ui:70
msgctxt "tp_DataSource|FT_SERIES"
msgid "Data _series:"
msgstr "Data _series:"
+#. oFoeg
+#: chart2/uiconfig/ui/tp_DataSource.ui:113
+msgctxt "tp_DataSource|extended_tip|LB_SERIES"
+msgid "Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click Add to insert a new series into the list after the selected entry."
+msgstr "Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click Add to insert a new series into the list after the selected entry."
+
#. rqABh
-#: chart2/uiconfig/ui/tp_DataSource.ui:118
+#: chart2/uiconfig/ui/tp_DataSource.ui:133
msgctxt "tp_DataSource|BTN_ADD"
msgid "_Add"
msgstr "_Add"
+#. AExBB
+#: chart2/uiconfig/ui/tp_DataSource.ui:141
+msgctxt "tp_DataSource|extended_tip|BTN_ADD"
+msgid "Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type."
+msgstr "Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type."
+
#. dCyXA
-#: chart2/uiconfig/ui/tp_DataSource.ui:139
+#: chart2/uiconfig/ui/tp_DataSource.ui:159
msgctxt "tp_DataSource|BTN_UP-atkobject"
msgid "Up"
msgstr "Up"
+#. GTEK3
+#: chart2/uiconfig/ui/tp_DataSource.ui:160
+msgctxt "tp_DataSource|extended_tip|BTN_UP"
+msgid "Moves up the selected entry in the Data Series list."
+msgstr "Moves up the selected entry in the Data Series list."
+
#. 3v9x2
-#: chart2/uiconfig/ui/tp_DataSource.ui:150
+#: chart2/uiconfig/ui/tp_DataSource.ui:171
msgctxt "tp_DataSource|BTN_REMOVE"
msgid "_Remove"
msgstr "_Remove"
+#. BDDwm
+#: chart2/uiconfig/ui/tp_DataSource.ui:179
+msgctxt "tp_DataSource|extended_tip|BTN_REMOVE"
+msgid "Removes the selected entry from the Data Series list."
+msgstr "Removes the selected entry from the Data Series list."
+
#. MkZNf
-#: chart2/uiconfig/ui/tp_DataSource.ui:171
+#: chart2/uiconfig/ui/tp_DataSource.ui:197
msgctxt "tp_DataSource|BTN_DOWN-atkobject"
msgid "Down"
msgstr "Down"
+#. 558EK
+#: chart2/uiconfig/ui/tp_DataSource.ui:198
+msgctxt "tp_DataSource|extended_tip|BTN_DOWN"
+msgid "Moves down the selected entry in the Data Series list."
+msgstr "Moves down the selected entry in the Data Series list."
+
#. mC5Ge
-#: chart2/uiconfig/ui/tp_DataSource.ui:211
+#: chart2/uiconfig/ui/tp_DataSource.ui:238
msgctxt "tp_DataSource|FT_ROLE"
msgid "_Data ranges:"
msgstr "_Data ranges:"
+#. ZB6Dv
+#: chart2/uiconfig/ui/tp_DataSource.ui:291
+msgctxt "tp_DataSource|extended_tip|LB_ROLE"
+msgid "Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address."
+msgstr "Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address."
+
#. qRMfs
-#: chart2/uiconfig/ui/tp_DataSource.ui:274
+#: chart2/uiconfig/ui/tp_DataSource.ui:306
msgctxt "tp_DataSource|FT_RANGE"
msgid "Ran_ge for %VALUETYPE"
msgstr "Ran_ge for %VALUETYPE"
+#. M2BSw
+#: chart2/uiconfig/ui/tp_DataSource.ui:330
+msgctxt "tp_DataSource|extended_tip|EDT_RANGE"
+msgid "Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the Select data range button."
+msgstr "Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimise this dialogue box while you select the data range in Calc, click the Select data range button."
+
+#. CwKet
+#: chart2/uiconfig/ui/tp_DataSource.ui:347
+msgctxt "tp_DataSource|extended_tip|IMB_RANGE_MAIN"
+msgid "Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the Select data range button."
+msgstr "Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimise this dialogue box while you select the data range in Calc, click the Select data range button."
+
#. FX2CF
-#: chart2/uiconfig/ui/tp_DataSource.ui:329
+#: chart2/uiconfig/ui/tp_DataSource.ui:371
msgctxt "tp_DataSource|FT_CATEGORIES"
msgid "_Categories"
msgstr "_Categories"
#. EiwXn
-#: chart2/uiconfig/ui/tp_DataSource.ui:343
+#: chart2/uiconfig/ui/tp_DataSource.ui:385
msgctxt "tp_DataSource|FT_DATALABELS"
msgid "Data _labels"
msgstr "Data _labels"
+#. ogTbE
+#: chart2/uiconfig/ui/tp_DataSource.ui:414
+msgctxt "tp_DataSource|extended_tip|EDT_CATEGORIES"
+msgid "Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the Select data range button."
+msgstr "Shows the source range address of the categories (the text strings that you can see on the x-axis of a category chart). For an X-Y chart, the text box contains the source range of the data labels which are displayed for the data points. To minimise this dialogue box while you select the data range in Calc, click the Select data range button."
+
+#. EYFEo
+#: chart2/uiconfig/ui/tp_DataSource.ui:431
+msgctxt "tp_DataSource|extended_tip|IMB_RANGE_CAT"
+msgid "Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the Select data range button."
+msgstr "Shows the source range address of the categories (the text strings that you can see on the x-axis of a category chart). For an X-Y chart, the text box contains the source range of the data labels which are displayed for the data points. To minimise this dialogue box while you select the data range in Calc, click the Select data range button."
+
#. YwALA
-#: chart2/uiconfig/ui/tp_DataSource.ui:416
+#: chart2/uiconfig/ui/tp_DataSource.ui:468
msgctxt "tp_DataSource|FT_CAPTION_FOR_WIZARD"
msgid "Customize Data Ranges for Individual Data Series"
msgstr "Customise Data Ranges for Individual Data Series"
@@ -3086,128 +3932,224 @@ msgctxt "tp_ErrorBars|RB_NONE"
msgid "_None"
msgstr "_None"
+#. YVhm9
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:68
+msgctxt "tp_ErrorBars|extended_tip|RB_NONE"
+msgid "Does not show any error bars."
+msgstr "Does not show any error bars."
+
#. Cq44D
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:75
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:80
msgctxt "tp_ErrorBars|RB_CONST"
msgid "_Constant Value"
msgstr "_Constant Value"
+#. Aetuh
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:91
+msgctxt "tp_ErrorBars|extended_tip|RB_CONST"
+msgid "Displays constant values that you specify in the Parameters area."
+msgstr "Displays constant values that you specify in the Parameters area."
+
#. Njqok
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:93
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:103
msgctxt "tp_ErrorBars|RB_PERCENT"
msgid "_Percentage"
msgstr "_Percentage"
+#. kqgrm
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:114
+msgctxt "tp_ErrorBars|extended_tip|RB_PERCENT"
+msgid "Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area."
+msgstr "Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area."
+
+#. qCQY8
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:141
+msgctxt "tp_ErrorBars|extended_tip|RB_FUNCTION"
+msgid "Select a function to calculate the error bars."
+msgstr "Select a function to calculate the error bars."
+
#. GnXao
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:136
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:156
msgctxt "tp_ErrorBars|liststoreFUNCTION"
msgid "Standard Error"
msgstr "Standard Error"
#. SQ3rE
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:137
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:157
msgctxt "tp_ErrorBars|liststoreFUNCTION"
msgid "Standard Deviation"
msgstr "Standard Deviation"
#. GagXt
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:138
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:158
msgctxt "tp_ErrorBars|liststoreFUNCTION"
msgid "Variance"
msgstr "Variance"
#. Siyxd
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:139
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:159
msgctxt "tp_ErrorBars|liststoreFUNCTION"
msgid "Error Margin"
msgstr "Error Margin"
+#. j6oTg
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:163
+msgctxt "tp_ErrorBars|extended_tip|LB_FUNCTION"
+msgid "Select a function to calculate the error bars."
+msgstr "Select a function to calculate the error bars."
+
#. AbhAQ
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:157
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:182
msgctxt "tp_ErrorBars|RB_RANGE"
msgid "Cell _Range"
msgstr "Cell _Range"
+#. x3uW3
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:193
+msgctxt "tp_ErrorBars|extended_tip|RB_RANGE"
+msgid "Click Cell Range and then specify a cell range from which to take the positive and negative error bar values."
+msgstr "Click Cell Range and then specify a cell range from which to take the positive and negative error bar values."
+
#. 9Y8Vo
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:181
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:211
msgctxt "tp_ErrorBars|label1"
msgid "Error Category"
msgstr "Error Category"
#. q8qXd
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:215
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:245
msgctxt "tp_ErrorBars|RB_BOTH"
msgid "Positive _and Negative"
msgstr "Positive _and Negative"
+#. LDszs
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:256
+msgctxt "tp_ErrorBars|extended_tip|RB_BOTH"
+msgid "Shows positive and negative error bars."
+msgstr "Shows positive and negative error bars."
+
#. 6F78D
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:232
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:267
msgctxt "tp_ErrorBars|RB_POSITIVE"
msgid "Pos_itive"
msgstr "Pos_itive"
+#. oSnnp
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:278
+msgctxt "tp_ErrorBars|extended_tip|RB_POSITIVE"
+msgid "Shows only positive error bars."
+msgstr "Shows only positive error bars."
+
#. jdFbj
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:249
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:289
msgctxt "tp_ErrorBars|RB_NEGATIVE"
msgid "Ne_gative"
msgstr "Ne_gative"
+#. DvqJN
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:300
+msgctxt "tp_ErrorBars|extended_tip|RB_NEGATIVE"
+msgid "Shows only negative error bars."
+msgstr "Shows only negative error bars."
+
#. D4Aou
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:305
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:350
msgctxt "tp_ErrorBars|label2"
msgid "Error Indicator"
msgstr "Error Indicator"
#. haTNd
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:353
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:398
msgctxt "tp_ErrorBars|FT_POSITIVE"
msgid "P_ositive (+)"
msgstr "P_ositive (+)"
+#. 7bDeP
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:416
+msgctxt "tp_ErrorBars|extended_tip|MF_POSITIVE"
+msgid "Enter the value to add to the displayed value as the positive error value."
+msgstr "Enter the value to add to the displayed value as the positive error value."
+
+#. D5XCD
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:434
+msgctxt "tp_ErrorBars|extended_tip|ED_RANGE_POSITIVE"
+msgid "Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet."
+msgstr "Enter the address range from where to obtain the positive error values. Use the Shrink button to select the range from a sheet."
+
#. rGBRC
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:394
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:449
msgctxt "tp_ErrorBars|IB_RANGE_POSITIVE|tooltip_text"
msgid "Select data range"
msgstr "Select data range"
+#. QYRko
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:453
+msgctxt "tp_ErrorBars|extended_tip|IB_RANGE_POSITIVE"
+msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
+msgstr "Click a button to shrink the dialogue box, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialogue box to full size."
+
#. C5ZdQ
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:419
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:479
msgctxt "tp_ErrorBars|FT_NEGATIVE"
msgid "_Negative (-)"
msgstr "_Negative (-)"
+#. TAAD2
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:497
+msgctxt "tp_ErrorBars|extended_tip|MF_NEGATIVE"
+msgid "Enter the value to subtract from the displayed value as the negative error value."
+msgstr "Enter the value to subtract from the displayed value as the negative error value."
+
+#. S8d3Y
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:514
+msgctxt "tp_ErrorBars|extended_tip|ED_RANGE_NEGATIVE"
+msgid "Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet."
+msgstr "Enter the address range from where to obtain the negative error values. Use the Shrink button to select the range from a sheet."
+
#. EVG7h
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:459
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:529
msgctxt "tp_ErrorBars|IB_RANGE_NEGATIVE|tooltip_text"
msgid "Select data range"
msgstr "Select data range"
+#. oEACZ
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:533
+msgctxt "tp_ErrorBars|extended_tip|IB_RANGE_NEGATIVE"
+msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
+msgstr "Click a button to shrink the dialogue box, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialogue box to full size."
+
#. wdsax
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:477
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:552
msgctxt "tp_ErrorBars|CB_SYN_POS_NEG"
msgid "Same value for both"
msgstr "Same value for both"
+#. DvgLw
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:561
+msgctxt "tp_ErrorBars|extended_tip|CB_SYN_POS_NEG"
+msgid "Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically."
+msgstr "Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically."
+
#. BEj3C
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:499
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:579
msgctxt "tp_ErrorBars|label3"
msgid "Parameters"
msgstr "Parameters"
#. XxRKD
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:516
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:596
msgctxt "tp_ErrorBars|STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS"
msgid "Select Range for Positive Error Bars"
msgstr "Select Range for Positive Error Bars"
#. FXjsk
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:527
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:607
msgctxt "tp_ErrorBars|STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS"
msgid "Select Range for Negative Error Bars"
msgstr "Select Range for Negative Error Bars"
#. AAfgS
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:538
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:618
msgctxt "tp_ErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
msgid "From Data Table"
msgstr "From Data Table"
@@ -3218,50 +4160,86 @@ msgctxt "tp_LegendPosition|left"
msgid "_Left"
msgstr "_Left"
+#. 98N4N
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:39
+msgctxt "tp_LegendPosition|extended_tip|left"
+msgid "Positions the legend at the left of the chart."
+msgstr "Positions the legend at the left of the chart."
+
#. WGGa8
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:45
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:50
msgctxt "tp_LegendPosition|right"
msgid "_Right"
msgstr "_Right"
+#. BgNsc
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:60
+msgctxt "tp_LegendPosition|extended_tip|right"
+msgid "Positions the legend at the right of the chart."
+msgstr "Positions the legend at the right of the chart."
+
#. aURZs
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:61
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:71
msgctxt "tp_LegendPosition|top"
msgid "_Top"
msgstr "_Top"
+#. GppCU
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:81
+msgctxt "tp_LegendPosition|extended_tip|top"
+msgid "Positions the legend at the top of the chart."
+msgstr "Positions the legend at the top of the chart."
+
#. 9WgFV
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:77
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:92
msgctxt "tp_LegendPosition|bottom"
msgid "_Bottom"
msgstr "_Bottom"
+#. dvBdX
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:102
+msgctxt "tp_LegendPosition|extended_tip|bottom"
+msgid "Positions the legend at the bottom of the chart."
+msgstr "Positions the legend at the bottom of the chart."
+
#. z84pQ
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:99
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:119
msgctxt "tp_LegendPosition|TXT_POSITION"
msgid "Position"
msgstr "Position"
#. 6teoB
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:134
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:154
msgctxt "tp_LegendPosition|FT_LEGEND_TEXTDIR"
msgid "Te_xt direction"
msgstr "Te_xt direction"
+#. PSPoQ
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:170
+msgctxt "tp_LegendPosition|extended_tip|LB_LEGEND_TEXTDIR"
+msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+msgstr "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+
#. sUDkC
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:163
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:188
msgctxt "tp_LegendPosition|TXT_ORIENTATION"
msgid "Text Orientation"
msgstr "Text Orientation"
#. VsH8A
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:196
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:221
msgctxt "tp_LegendPosition|CB_NO_OVERLAY"
msgid "Show the legend without overlapping the chart"
msgstr "Show the legend without overlapping the chart"
+#. yi8AX
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:230
+msgctxt "tp_LegendPosition|extended_tip|CB_NO_OVERLAY"
+msgid "Specifies whether the legend should overlap the chart."
+msgstr "Specifies whether the legend should overlap the chart."
+
#. 82yue
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:218
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:248
msgctxt "tp_LegendPosition|TXT_OVERLAY"
msgid "Overlay"
msgstr "Overlay"
@@ -3272,32 +4250,50 @@ msgctxt "tp_PolarOptions|CB_CLOCKWISE"
msgid "_Clockwise direction"
msgstr "_Clockwise direction"
+#. GikR7
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:39
+msgctxt "tp_PolarOptions|extended_tip|CB_CLOCKWISE"
+msgid "The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the Clockwise direction checkbox to draw the pieces in opposite direction."
+msgstr "The default direction in which the pieces of a pie chart are ordered is counter-clockwise. Mark the Clockwise direction check box to draw the pieces in the opposite direction."
+
#. ATHCu
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:45
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:50
msgctxt "tp_PolarOptions|label1"
msgid "Orientation"
msgstr "Orientation"
+#. mEJCE
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:90
+msgctxt "tp_PolarOptions|extended_tip|CT_ANGLE_DIAL"
+msgid "Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position."
+msgstr "Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or doughnut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position."
+
+#. EEVTg
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:109
+msgctxt "tp_PolarOptions|extended_tip|NF_STARTING_ANGLE"
+msgid "Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value."
+msgstr "Enter the starting angle in the range 0 to 359 degrees. You can also click the arrows to change the displayed value."
+
#. prqEa
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:108
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:123
msgctxt "tp_PolarOptions|FT_ROTATION_DEGREES"
msgid "_Degrees"
msgstr "_Degrees"
#. iHLKn
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:127
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:142
msgctxt "tp_PolarOptions|label2"
msgid "Starting Angle"
msgstr "Starting Angle"
#. 5zEew
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:155
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:170
msgctxt "tp_PolarOptions|CB_INCLUDE_HIDDEN_CELLS_POLAR"
msgid "Include _values from hidden cells"
msgstr "Include _values from hidden cells"
#. F5FTp
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:170
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:185
msgctxt "tp_PolarOptions|label3"
msgid "Plot Options"
msgstr "Plot Options"
@@ -3320,56 +4316,92 @@ msgctxt "tp_RangeChooser|FT_RANGE"
msgid "_Data range:"
msgstr "_Data range:"
+#. WKLi7
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:65
+msgctxt "tp_RangeChooser|extended_tip|ED_RANGE"
+msgid "Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the Select data range button."
+msgstr "Enter the data range that you want to include in your chart. To minimise this dialogue box while you select the data range in Calc, click the Select data range button."
+
#. FyVoD
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:74
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:79
msgctxt "tp_RangeChooser|IB_RANGE|tooltip_text"
msgid "Select data range"
msgstr "Select data range"
+#. FVivY
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:83
+msgctxt "tp_RangeChooser|extended_tip|IB_RANGE"
+msgid "Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the Select data range button."
+msgstr "Enter the data range that you want to include in your chart. To minimise this dialogue box while you select the data range in Calc, click the Select data range button."
+
#. RGGHE
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:90
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:100
msgctxt "tp_RangeChooser|RB_DATAROWS"
msgid "Data series in _rows"
msgstr "Data series in _rows"
+#. w6DuB
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:110
+msgctxt "tp_RangeChooser|extended_tip|RB_DATAROWS"
+msgid "Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series."
+msgstr "Data series obtain their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series."
+
#. wSDqF
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:106
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:121
msgctxt "tp_RangeChooser|RB_DATACOLS"
msgid "Data series in _columns"
msgstr "Data series in _columns"
+#. RfFZF
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:131
+msgctxt "tp_RangeChooser|extended_tip|RB_DATACOLS"
+msgid "Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series."
+msgstr "Data series obtain their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series."
+
#. CExLY
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:122
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:142
msgctxt "tp_RangeChooser|CB_FIRST_ROW_ASLABELS"
msgid "_First row as label"
msgstr "_First row as label"
+#. HviBv
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:151
+msgctxt "tp_RangeChooser|extended_tip|CB_FIRST_ROW_ASLABELS"
+msgid "For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not selected, all rows are data series."
+msgstr "For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not marked, all rows are data series."
+
#. ER2D7
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:137
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:162
msgctxt "tp_RangeChooser|CB_FIRST_COLUMN_ASLABELS"
msgid "F_irst column as label"
msgstr "F_irst column as label"
+#. tTAhH
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:171
+msgctxt "tp_RangeChooser|extended_tip|CB_FIRST_COLUMN_ASLABELS"
+msgid "For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not selected, all columns are data columns."
+msgstr "For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not marked, all columns are data columns."
+
#. k9TMD
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:162
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:192
msgctxt "tp_RangeChooser|CB_TIME_BASED"
msgid "Time based charting"
msgstr "Time based charting"
#. iuxE5
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:212
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:242
msgctxt "tp_RangeChooser|label1"
msgid "Start Table Index"
msgstr "Start Table Index"
#. dnmDQ
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:226
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:256
msgctxt "tp_RangeChooser|label2"
msgid "End Table Index"
msgstr "End Table Index"
#. FcYeD
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:244
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:274
msgctxt "tp_RangeChooser|STR_PAGE_DATA_RANGE"
msgid "Data Range"
msgstr "Data Range"
@@ -3380,137 +4412,215 @@ msgctxt "tp_Scale|CBX_REVERSE"
msgid "_Reverse direction"
msgstr "_Reverse direction"
+#. DNJFK
+#: chart2/uiconfig/ui/tp_Scale.ui:68
+msgctxt "tp_Scale|extended_tip|CBX_REVERSE"
+msgid "Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction."
+msgstr "Defines where the lower and where the higher values are displayed at the axis. The unmarked state is the mathematical direction."
+
#. qBbBL
-#: chart2/uiconfig/ui/tp_Scale.ui:75
+#: chart2/uiconfig/ui/tp_Scale.ui:80
msgctxt "tp_Scale|CBX_LOGARITHM"
msgid "_Logarithmic scale"
msgstr "_Logarithmic scale"
+#. 3wDMa
+#: chart2/uiconfig/ui/tp_Scale.ui:89
+msgctxt "tp_Scale|extended_tip|CBX_LOGARITHM"
+msgid "Specifies that you want the axis to be subdivided logarithmically."
+msgstr "Specifies that you want the axis to be subdivided logarithmically."
+
#. 2B5CL
-#: chart2/uiconfig/ui/tp_Scale.ui:98
+#: chart2/uiconfig/ui/tp_Scale.ui:108
msgctxt "tp_Scale|TXT_AXIS_TYPE"
msgid "T_ype"
msgstr "T_ype"
#. D6Bre
-#: chart2/uiconfig/ui/tp_Scale.ui:114
+#: chart2/uiconfig/ui/tp_Scale.ui:124
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Automatic"
msgstr "Automatic"
#. TCiZu
-#: chart2/uiconfig/ui/tp_Scale.ui:115
+#: chart2/uiconfig/ui/tp_Scale.ui:125
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Text"
msgstr "Text"
#. vAAUB
-#: chart2/uiconfig/ui/tp_Scale.ui:116
+#: chart2/uiconfig/ui/tp_Scale.ui:126
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Date"
msgstr "Date"
+#. 8YZhv
+#: chart2/uiconfig/ui/tp_Scale.ui:130
+msgctxt "tp_Scale|extended_tip|LB_AXIS_TYPE"
+msgid "For some types of axes, you can select to format an axis as text or date, or to detect the type automatically."
+msgstr "For some types of axes, you can select to format an axis as text or date, or to detect the type automatically."
+
#. Vf7vB
-#: chart2/uiconfig/ui/tp_Scale.ui:149
+#: chart2/uiconfig/ui/tp_Scale.ui:164
msgctxt "tp_Scale|TXT_MIN"
msgid "_Minimum"
msgstr "_Minimum"
#. XUKzj
-#: chart2/uiconfig/ui/tp_Scale.ui:163
+#: chart2/uiconfig/ui/tp_Scale.ui:178
msgctxt "tp_Scale|TXT_MAX"
msgid "Ma_ximum"
msgstr "Ma_ximum"
#. 4jRuB
-#: chart2/uiconfig/ui/tp_Scale.ui:175
+#: chart2/uiconfig/ui/tp_Scale.ui:190
msgctxt "tp_Scale|CBX_AUTO_MIN"
msgid "_Automatic"
msgstr "_Automatic"
#. Bx5Co
-#: chart2/uiconfig/ui/tp_Scale.ui:190
+#: chart2/uiconfig/ui/tp_Scale.ui:205
msgctxt "tp_Scale|CBX_AUTO_MAX"
msgid "A_utomatic"
msgstr "A_utomatic"
-#. TsHtd
+#. 2Kb67
+#: chart2/uiconfig/ui/tp_Scale.ui:227
+msgctxt "tp_Scale|extended_tip|EDT_MIN"
+msgid "Defines the minimum value for the beginning of the axis."
+msgstr "Defines the minimum value for the beginning of the axis."
+
+#. AvhE9
#: chart2/uiconfig/ui/tp_Scale.ui:245
+msgctxt "tp_Scale|extended_tip|EDT_MAX"
+msgid "Defines the maximum value for the end of the axis."
+msgstr "Defines the maximum value for the end of the axis."
+
+#. TsHtd
+#: chart2/uiconfig/ui/tp_Scale.ui:270
msgctxt "tp_Scale|TXT_TIME_RESOLUTION"
msgid "R_esolution"
msgstr "R_esolution"
#. yyPFB
-#: chart2/uiconfig/ui/tp_Scale.ui:261 chart2/uiconfig/ui/tp_Scale.ui:343
-#: chart2/uiconfig/ui/tp_Scale.ui:469
+#: chart2/uiconfig/ui/tp_Scale.ui:286 chart2/uiconfig/ui/tp_Scale.ui:378
+#: chart2/uiconfig/ui/tp_Scale.ui:519
msgctxt "tp_Scale|liststoreDATE"
msgid "Days"
msgstr "Days"
#. 8xKtE
-#: chart2/uiconfig/ui/tp_Scale.ui:262 chart2/uiconfig/ui/tp_Scale.ui:344
-#: chart2/uiconfig/ui/tp_Scale.ui:470
+#: chart2/uiconfig/ui/tp_Scale.ui:287 chart2/uiconfig/ui/tp_Scale.ui:379
+#: chart2/uiconfig/ui/tp_Scale.ui:520
msgctxt "tp_Scale|liststoreDATE"
msgid "Months"
msgstr "Months"
#. WRUy8
-#: chart2/uiconfig/ui/tp_Scale.ui:263 chart2/uiconfig/ui/tp_Scale.ui:345
-#: chart2/uiconfig/ui/tp_Scale.ui:471
+#: chart2/uiconfig/ui/tp_Scale.ui:288 chart2/uiconfig/ui/tp_Scale.ui:380
+#: chart2/uiconfig/ui/tp_Scale.ui:521
msgctxt "tp_Scale|liststoreDATE"
msgid "Years"
msgstr "Years"
+#. WUANc
+#: chart2/uiconfig/ui/tp_Scale.ui:292
+msgctxt "tp_Scale|extended_tip|LB_TIME_RESOLUTION"
+msgid "Resolution can be set to show days, months, or years as interval steps."
+msgstr "Resolution can be set to show days, months, or years as interval steps."
+
#. ezN7c
-#: chart2/uiconfig/ui/tp_Scale.ui:274
+#: chart2/uiconfig/ui/tp_Scale.ui:304
msgctxt "tp_Scale|CBX_AUTO_TIME_RESOLUTION"
msgid "Automat_ic"
msgstr "Automat_ic"
#. DbJt9
-#: chart2/uiconfig/ui/tp_Scale.ui:304
+#: chart2/uiconfig/ui/tp_Scale.ui:334
msgctxt "tp_Scale|TXT_STEP_MAIN"
msgid "Ma_jor interval"
msgstr "Ma_jor interval"
-#. UMEd3
+#. AtZ6D
+#: chart2/uiconfig/ui/tp_Scale.ui:363
+msgctxt "tp_Scale|extended_tip|MT_MAIN_DATE_STEP"
+msgid "Major interval can be set to show a certain number of days, months, or years."
+msgstr "Major interval can be set to show a certain number of days, months, or years."
+
+#. BD5BE
#: chart2/uiconfig/ui/tp_Scale.ui:384
+msgctxt "tp_Scale|extended_tip|LB_MAIN_TIME_UNIT"
+msgid "Major interval can be set to show a certain number of days, months, or years."
+msgstr "Major interval can be set to show a certain number of days, months, or years."
+
+#. a2Gjv
+#: chart2/uiconfig/ui/tp_Scale.ui:410
+msgctxt "tp_Scale|extended_tip|EDT_STEP_MAIN"
+msgid "Defines the interval for the main division of the axes."
+msgstr "Defines the interval for the main division of the axes."
+
+#. UMEd3
+#: chart2/uiconfig/ui/tp_Scale.ui:429
msgctxt "tp_Scale|CBX_AUTO_STEP_MAIN"
msgid "Au_tomatic"
msgstr "Au_tomatic"
#. Pv5GU
-#: chart2/uiconfig/ui/tp_Scale.ui:419
+#: chart2/uiconfig/ui/tp_Scale.ui:464
msgctxt "tp_Scale|TXT_STEP_HELP"
msgid "Minor inter_val"
msgstr "Minor inter_val"
#. WMGqg
-#: chart2/uiconfig/ui/tp_Scale.ui:433
+#: chart2/uiconfig/ui/tp_Scale.ui:478
msgctxt "tp_Scale|TXT_STEP_HELP_COUNT"
msgid "Minor inter_val count"
msgstr "Minor inter_val count"
+#. c9m8j
+#: chart2/uiconfig/ui/tp_Scale.ui:504
+msgctxt "tp_Scale|extended_tip|MT_STEPHELP"
+msgid "Defines the interval for the subdivision of the axes."
+msgstr "Defines the interval for the subdivision of the axes."
+
+#. snFL6
+#: chart2/uiconfig/ui/tp_Scale.ui:525
+msgctxt "tp_Scale|extended_tip|LB_HELP_TIME_UNIT"
+msgid "Minor interval can be set to show a certain number of days, months, or years."
+msgstr "Minor interval can be set to show a certain number of days, months, or years."
+
#. X8FAK
-#: chart2/uiconfig/ui/tp_Scale.ui:482
+#: chart2/uiconfig/ui/tp_Scale.ui:537
msgctxt "tp_Scale|CBX_AUTO_STEP_HELP"
msgid "Aut_omatic"
msgstr "Aut_omatic"
#. GAKPN
-#: chart2/uiconfig/ui/tp_Scale.ui:512
+#: chart2/uiconfig/ui/tp_Scale.ui:567
msgctxt "tp_Scale|TXT_ORIGIN"
msgid "Re_ference value"
msgstr "Re_ference value"
+#. HbRqw
+#: chart2/uiconfig/ui/tp_Scale.ui:586
+msgctxt "tp_Scale|extended_tip|EDT_ORIGIN"
+msgid "Specifies at which position to display the values along the axis."
+msgstr "Specifies at which position to display the values along the axis."
+
#. Dj9GB
-#: chart2/uiconfig/ui/tp_Scale.ui:538
+#: chart2/uiconfig/ui/tp_Scale.ui:598
msgctxt "tp_Scale|CBX_AUTO_ORIGIN"
msgid "Automat_ic"
msgstr "Automat_ic"
+#. Z35M3
+#: chart2/uiconfig/ui/tp_Scale.ui:607
+msgctxt "tp_Scale|extended_tip|CBX_AUTO_ORIGIN"
+msgid "You must first deselect the Automatic option in order to modify the values."
+msgstr "You must first unmark the Automatic option in order to modify the values."
+
#. wqR5C
-#: chart2/uiconfig/ui/tp_Scale.ui:567
+#: chart2/uiconfig/ui/tp_Scale.ui:632
msgctxt "tp_Scale|FL_SCALE"
msgid "Scale"
msgstr "Scale"
@@ -3521,92 +4631,158 @@ msgctxt "tp_SeriesToAxis|RBT_OPT_AXIS_1"
msgid "Primary Y axis"
msgstr "Primary y-Axis"
+#. ApXPx
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:52
+msgctxt "tp_SeriesToAxis|extended_tip|RBT_OPT_AXIS_1"
+msgid "This option is active as default. All data series are aligned to the primary Y axis."
+msgstr "This option is active as default. All data series are aligned to the primary y-axis."
+
#. aZ7G8
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:59
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:64
msgctxt "tp_SeriesToAxis|RBT_OPT_AXIS_2"
msgid "Secondary Y axis"
msgstr "Secondary y-Axis"
+#. nTQUy
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:75
+msgctxt "tp_SeriesToAxis|extended_tip|RBT_OPT_AXIS_2"
+msgid "Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active."
+msgstr "Changes the scaling of the y-axis. This axis is only visible when at least one data series is assigned to it and the axis view is active."
+
#. hV3cT
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:83
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:93
msgctxt "tp_SeriesToAxis|label1"
msgid "Align Data Series to"
msgstr "Align Data Series to"
#. GAF6S
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:125
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:135
msgctxt "tp_SeriesToAxis|FT_GAP"
msgid "_Spacing"
msgstr "_Spacing"
#. 27wWb
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:138
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:148
msgctxt "tp_SeriesToAxis|FT_OVERLAP"
msgid "_Overlap"
msgstr "_Overlap"
+#. NKaBT
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:164
+msgctxt "tp_SeriesToAxis|extended_tip|MT_GAP"
+msgid "Defines the spacing between the columns in percent."
+msgstr "Defines the spacing between the columns in percent."
+
+#. 8E3zD
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:180
+msgctxt "tp_SeriesToAxis|extended_tip|MT_OVERLAP"
+msgid "Defines the necessary settings for overlapping data series."
+msgstr "Defines the necessary settings for overlapping data series."
+
#. uV5Dn
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:178
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:198
msgctxt "tp_SeriesToAxis|CB_BARS_SIDE_BY_SIDE"
msgid "Show _bars side by side"
msgstr "Show _bars side by side"
+#. U5ruY
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:207
+msgctxt "tp_SeriesToAxis|extended_tip|CB_BARS_SIDE_BY_SIDE"
+msgid "The bars from different data series are shown as if they were attached only to one axis."
+msgstr "The bars from different data series are shown as if they were attached only to one axis."
+
#. b7cbo
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:194
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:219
msgctxt "tp_SeriesToAxis|CB_CONNECTOR"
msgid "Connection lines"
msgstr "Connection lines"
+#. 42zFb
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:228
+msgctxt "tp_SeriesToAxis|extended_tip|CB_CONNECTOR"
+msgid "For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines."
+msgstr "For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines."
+
#. VHcU3
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:216
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:246
msgctxt "tp_SeriesToAxis|label2"
msgid "Settings"
msgstr "Settings"
#. zaB5V
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:257
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:287
msgctxt "tp_SeriesToAxis|FT_MISSING_VALUES"
msgid "Plot missing values"
msgstr "Plot missing values"
#. fqYSM
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:267
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:297
msgctxt "tp_SeriesToAxis|RB_DONT_PAINT"
msgid "_Leave gap"
msgstr "_Leave gap"
+#. CFmcS
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:307
+msgctxt "tp_SeriesToAxis|extended_tip|RB_DONT_PAINT"
+msgid "For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net."
+msgstr "For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net."
+
#. ZvtoD
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:283
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:318
msgctxt "tp_SeriesToAxis|RB_ASSUME_ZERO"
msgid "_Assume zero"
msgstr "_Assume zero"
+#. y6EGH
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:329
+msgctxt "tp_SeriesToAxis|extended_tip|RB_ASSUME_ZERO"
+msgid "For a missing value, the y-value will be shown as zero. This is the default for chart type Area."
+msgstr "For a missing value, the y-value will be shown as zero. This is the default for chart type Area."
+
#. 8rLB4
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:300
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:340
msgctxt "tp_SeriesToAxis|RB_CONTINUE_LINE"
msgid "_Continue line"
msgstr "_Continue line"
+#. 2HArG
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:351
+msgctxt "tp_SeriesToAxis|extended_tip|RB_CONTINUE_LINE"
+msgid "For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY."
+msgstr "For a missing value, the interpolation from the neighbouring values will be shown. This is the default for chart type X-Y."
+
#. Nw9LX
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:330
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:375
msgctxt "tp_SeriesToAxis|CB_INCLUDE_HIDDEN_CELLS"
msgid "Include _values from hidden cells"
msgstr "Include _values from hidden cells"
+#. vEDHo
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:384
+msgctxt "tp_SeriesToAxis|extended_tip|CB_INCLUDE_HIDDEN_CELLS"
+msgid "Check to also show values of currently hidden cells within the source cell range."
+msgstr "Mark this check box to also show values of currently hidden cells within the source cell range."
+
#. LvZ8x
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:352
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:402
msgctxt "tp_SeriesToAxis|label3"
msgid "Plot Options"
msgstr "Plot Options"
#. gRgPX
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:385
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:435
msgctxt "tp_SeriesToAxis|CB_LEGEND_ENTRY_HIDDEN"
msgid "Hide legend entry"
msgstr "Hide legend entry"
+#. GFmDA
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:443
+msgctxt "tp_SeriesToAxis|extended_tip|CB_LEGEND_ENTRY_HIDDEN"
+msgid "Do not show legend entry for the selected data series or data point."
+msgstr "Do not show legend entry for the selected data series or data point."
+
#. q8CTC
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:406
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:461
msgctxt "tp_SeriesToAxis|label4"
msgid "Legend Entry"
msgstr "Legend Entry"
@@ -3617,104 +4793,236 @@ msgctxt "tp_Trendline|linear"
msgid "_Linear"
msgstr "_Linear"
+#. jir3B
+#: chart2/uiconfig/ui/tp_Trendline.ui:75
+msgctxt "tp_Trendline|extended_tip|linear"
+msgid "A linear trend line is shown."
+msgstr "A linear trend line is shown."
+
#. u3nKx
-#: chart2/uiconfig/ui/tp_Trendline.ui:81
+#: chart2/uiconfig/ui/tp_Trendline.ui:86
msgctxt "tp_Trendline|logarithmic"
msgid "L_ogarithmic"
msgstr "L_ogarithmic"
+#. AZT5a
+#: chart2/uiconfig/ui/tp_Trendline.ui:97
+msgctxt "tp_Trendline|extended_tip|logarithmic"
+msgid "A logarithmic trend line is shown."
+msgstr "A logarithmic trend line is shown."
+
#. fPNok
-#: chart2/uiconfig/ui/tp_Trendline.ui:98
+#: chart2/uiconfig/ui/tp_Trendline.ui:108
msgctxt "tp_Trendline|exponential"
msgid "_Exponential"
msgstr "_Exponential"
+#. gufBS
+#: chart2/uiconfig/ui/tp_Trendline.ui:119
+msgctxt "tp_Trendline|extended_tip|exponential"
+msgid "An exponential trend line is shown."
+msgstr "An exponential trend line is shown."
+
#. a6FDp
-#: chart2/uiconfig/ui/tp_Trendline.ui:115
+#: chart2/uiconfig/ui/tp_Trendline.ui:130
msgctxt "tp_Trendline|power"
msgid "Po_wer"
msgstr "Po_wer"
+#. sU36A
+#: chart2/uiconfig/ui/tp_Trendline.ui:141
+msgctxt "tp_Trendline|extended_tip|power"
+msgid "A power trend line is shown."
+msgstr "A power trend line is shown."
+
#. QCeGG
-#: chart2/uiconfig/ui/tp_Trendline.ui:132
+#: chart2/uiconfig/ui/tp_Trendline.ui:152
msgctxt "tp_Trendline|polynomial"
msgid "_Polynomial"
msgstr "_Polynomial"
+#. f9EeD
+#: chart2/uiconfig/ui/tp_Trendline.ui:163
+msgctxt "tp_Trendline|extended_tip|polynomial"
+msgid "A polynomial trend line is shown with a given degree."
+msgstr "A polynomial trend line is shown with a given degree."
+
#. BkiE2
-#: chart2/uiconfig/ui/tp_Trendline.ui:149
+#: chart2/uiconfig/ui/tp_Trendline.ui:174
msgctxt "tp_Trendline|movingAverage"
msgid "_Moving Average"
msgstr "_Moving Average"
+#. F5WMz
+#: chart2/uiconfig/ui/tp_Trendline.ui:185
+msgctxt "tp_Trendline|extended_tip|movingAverage"
+msgid "A moving average trend line is shown with a given period."
+msgstr "A moving average trend line is shown with a given period."
+
#. mGkUE
-#: chart2/uiconfig/ui/tp_Trendline.ui:173
+#: chart2/uiconfig/ui/tp_Trendline.ui:203
msgctxt "tp_Trendline|label3"
msgid "Degree"
msgstr "Degree"
+#. HwBsk
+#: chart2/uiconfig/ui/tp_Trendline.ui:208
+msgctxt "tp_Trendline|extended_tip|label3"
+msgid "Degree of polynomial trend line."
+msgstr "Degree of polynomial trend line."
+
+#. EAkKg
+#: chart2/uiconfig/ui/tp_Trendline.ui:225
+msgctxt "tp_Trendline|extended_tip|degree"
+msgid "Degree of polynomial trend line."
+msgstr "Degree of polynomial trend line."
+
#. ZvFov
-#: chart2/uiconfig/ui/tp_Trendline.ui:209
+#: chart2/uiconfig/ui/tp_Trendline.ui:249
msgctxt "tp_Trendline|label4"
msgid "Period"
msgstr "Period"
+#. akCwy
+#: chart2/uiconfig/ui/tp_Trendline.ui:254
+msgctxt "tp_Trendline|extended_tip|label4"
+msgid "Number of points to calculate average of moving average trend line."
+msgstr "Number of points to calculate average of moving average trend line."
+
+#. g3mex
+#: chart2/uiconfig/ui/tp_Trendline.ui:271
+msgctxt "tp_Trendline|extended_tip|period"
+msgid "Number of points to calculate average of moving average trend line."
+msgstr "Number of points to calculate average of moving average trend line."
+
#. ptaCA
-#: chart2/uiconfig/ui/tp_Trendline.ui:316
+#: chart2/uiconfig/ui/tp_Trendline.ui:366
msgctxt "tp_Trendline|label1"
msgid "Regression Type"
msgstr "Regression Type"
#. mNh7m
-#: chart2/uiconfig/ui/tp_Trendline.ui:352
+#: chart2/uiconfig/ui/tp_Trendline.ui:402
msgctxt "tp_Trendline|label7"
msgid "Extrapolate Forward"
msgstr "Extrapolate Forward"
+#. 4HshA
+#: chart2/uiconfig/ui/tp_Trendline.ui:408
+msgctxt "tp_Trendline|extended_tip|label7"
+msgid "Trend line is extrapolated for higher x-values."
+msgstr "Trend line is extrapolated for higher x-values."
+
#. tUrKr
-#: chart2/uiconfig/ui/tp_Trendline.ui:366
+#: chart2/uiconfig/ui/tp_Trendline.ui:421
msgctxt "tp_Trendline|label8"
msgid "Extrapolate Backward"
msgstr "Extrapolate Backward"
+#. tEfNE
+#: chart2/uiconfig/ui/tp_Trendline.ui:427
+msgctxt "tp_Trendline|extended_tip|label8"
+msgid "Trend line is extrapolated for lower x-values."
+msgstr "Trend line is extrapolated for lower x-values."
+
#. BGkFJ
-#: chart2/uiconfig/ui/tp_Trendline.ui:405
+#: chart2/uiconfig/ui/tp_Trendline.ui:465
msgctxt "tp_Trendline|setIntercept"
msgid "Force _Intercept"
msgstr "Force _Intercept"
+#. ZJUti
+#: chart2/uiconfig/ui/tp_Trendline.ui:477
+msgctxt "tp_Trendline|extended_tip|setIntercept"
+msgid "For linear, polynomial and exponential trend lines, intercept value is forced to a given value."
+msgstr "For linear, polynomial and exponential trend lines, intercept value is forced to a given value."
+
#. CSHNm
-#: chart2/uiconfig/ui/tp_Trendline.ui:423
+#: chart2/uiconfig/ui/tp_Trendline.ui:488
msgctxt "tp_Trendline|showEquation"
msgid "Show E_quation"
msgstr "Show E_quation"
+#. nXrm7
+#: chart2/uiconfig/ui/tp_Trendline.ui:497
+msgctxt "tp_Trendline|extended_tip|showEquation"
+msgid "Shows the trend line equation next to the trend line."
+msgstr "Shows the trend line equation next to the trend line."
+
#. cA58s
-#: chart2/uiconfig/ui/tp_Trendline.ui:439
+#: chart2/uiconfig/ui/tp_Trendline.ui:509
msgctxt "tp_Trendline|showCorrelationCoefficient"
msgid "Show _Coefficient of Determination (R²)"
msgstr "Show _Coefficient of Determination (R²)"
+#. CCyCH
+#: chart2/uiconfig/ui/tp_Trendline.ui:518
+msgctxt "tp_Trendline|extended_tip|showCorrelationCoefficient"
+msgid "Shows the coefficient of determination next to the trend line."
+msgstr "Shows the coefficient of determination next to the trend line."
+
#. 2S6og
-#: chart2/uiconfig/ui/tp_Trendline.ui:457
+#: chart2/uiconfig/ui/tp_Trendline.ui:532
msgctxt "tp_Trendline|label5"
msgid "Trendline _Name"
msgstr "Trendline _Name"
+#. GasKo
+#: chart2/uiconfig/ui/tp_Trendline.ui:538
+msgctxt "tp_Trendline|extended_tip|label5"
+msgid "Name of trend line in legend."
+msgstr "Name of trend line in legend."
+
+#. FBT3Y
+#: chart2/uiconfig/ui/tp_Trendline.ui:554
+msgctxt "tp_Trendline|extended_tip|entry_name"
+msgid "Name of trend line in legend."
+msgstr "Name of trend line in legend."
+
+#. C4C6e
+#: chart2/uiconfig/ui/tp_Trendline.ui:578
+msgctxt "tp_Trendline|extended_tip|interceptValue"
+msgid "Value of intercept if it is forced."
+msgstr "Value of intercept if it is forced."
+
#. GEKL2
-#: chart2/uiconfig/ui/tp_Trendline.ui:501
+#: chart2/uiconfig/ui/tp_Trendline.ui:591
msgctxt "tp_Trendline|label6"
msgid "_X Variable Name"
msgstr "_X Variable Name"
+#. 99kQL
+#: chart2/uiconfig/ui/tp_Trendline.ui:597
+msgctxt "tp_Trendline|extended_tip|label6"
+msgid "Name of X variable in trend line equation."
+msgstr "Name of x variable in trend line equation."
+
+#. Fz8b3
+#: chart2/uiconfig/ui/tp_Trendline.ui:613
+msgctxt "tp_Trendline|extended_tip|entry_Xname"
+msgid "Name of X variable in trend line equation."
+msgstr "Name of x variable in trend line equation."
+
#. GDQuF
-#: chart2/uiconfig/ui/tp_Trendline.ui:526
+#: chart2/uiconfig/ui/tp_Trendline.ui:626
msgctxt "tp_Trendline|label9"
msgid "_Y Variable Name"
msgstr "_Y Variable Name"
+#. 2PBW3
+#: chart2/uiconfig/ui/tp_Trendline.ui:632
+msgctxt "tp_Trendline|extended_tip|label9"
+msgid "Name of Y variable in trend line equation."
+msgstr "Name of y variable in trend line equation."
+
+#. WHNXu
+#: chart2/uiconfig/ui/tp_Trendline.ui:648
+msgctxt "tp_Trendline|extended_tip|entry_Yname"
+msgid "Name of Y variable in trend line equation."
+msgstr "Name of y variable in trend line equation."
+
#. 9WeUe
-#: chart2/uiconfig/ui/tp_Trendline.ui:555
+#: chart2/uiconfig/ui/tp_Trendline.ui:665
msgctxt "tp_Trendline|label2"
msgid "Options"
msgstr "Options"
@@ -3725,80 +5033,146 @@ msgctxt "tp_axisLabel|showlabelsCB"
msgid "Sho_w labels"
msgstr "Sho_w labels"
+#. Xr5zw
+#: chart2/uiconfig/ui/tp_axisLabel.ui:29
+msgctxt "tp_axisLabel|extended_tip|showlabelsCB"
+msgid "Specifies whether to show or hide the axis labels."
+msgstr "Specifies whether to show or hide the axis labels."
+
#. HFhGL
-#: chart2/uiconfig/ui/tp_axisLabel.ui:62
+#: chart2/uiconfig/ui/tp_axisLabel.ui:67
msgctxt "tp_axisLabel|tile"
msgid "_Tile"
msgstr "_Tile"
+#. cmjFi
+#: chart2/uiconfig/ui/tp_axisLabel.ui:77
+msgctxt "tp_axisLabel|extended_tip|tile"
+msgid "Arranges numbers on the axis side by side."
+msgstr "Arranges numbers on the axis side by side."
+
#. tHrCD
-#: chart2/uiconfig/ui/tp_axisLabel.ui:79
+#: chart2/uiconfig/ui/tp_axisLabel.ui:89
msgctxt "tp_axisLabel|odd"
msgid "St_agger odd"
msgstr "St_agger odd"
+#. Q8h6B
+#: chart2/uiconfig/ui/tp_axisLabel.ui:99
+msgctxt "tp_axisLabel|extended_tip|odd"
+msgid "Staggers numbers on the axis, even numbers lower than odd numbers."
+msgstr "Staggers numbers on the axis, even numbers lower than odd numbers."
+
#. tByen
-#: chart2/uiconfig/ui/tp_axisLabel.ui:96
+#: chart2/uiconfig/ui/tp_axisLabel.ui:111
msgctxt "tp_axisLabel|even"
msgid "Stagger _even"
msgstr "Stagger _even"
+#. 9EMGj
+#: chart2/uiconfig/ui/tp_axisLabel.ui:121
+msgctxt "tp_axisLabel|extended_tip|even"
+msgid "Stagger numbers on the axes, odd numbers lower than even numbers."
+msgstr "Stagger numbers on the axes, odd numbers lower than even numbers."
+
#. 2JwY3
-#: chart2/uiconfig/ui/tp_axisLabel.ui:113
+#: chart2/uiconfig/ui/tp_axisLabel.ui:133
msgctxt "tp_axisLabel|auto"
msgid "A_utomatic"
msgstr "A_utomatic"
+#. fj3Rq
+#: chart2/uiconfig/ui/tp_axisLabel.ui:143
+msgctxt "tp_axisLabel|extended_tip|auto"
+msgid "Automatically arranges numbers on the axis."
+msgstr "Automatically arranges numbers on the axis."
+
#. bFH6L
-#: chart2/uiconfig/ui/tp_axisLabel.ui:136
+#: chart2/uiconfig/ui/tp_axisLabel.ui:161
msgctxt "tp_axisLabel|orderL"
msgid "Order"
msgstr "Order"
#. GMtbb
-#: chart2/uiconfig/ui/tp_axisLabel.ui:171
+#: chart2/uiconfig/ui/tp_axisLabel.ui:196
msgctxt "tp_axisLabel|overlapCB"
msgid "O_verlap"
msgstr "O_verlap"
+#. zwgui
+#: chart2/uiconfig/ui/tp_axisLabel.ui:205
+msgctxt "tp_axisLabel|extended_tip|overlapCB"
+msgid "Specifies that the text in cells may overlap other cells."
+msgstr "Specifies that the text in cells may overlap other cells."
+
#. AYpQ8
-#: chart2/uiconfig/ui/tp_axisLabel.ui:187
+#: chart2/uiconfig/ui/tp_axisLabel.ui:217
msgctxt "tp_axisLabel|breakCB"
msgid "_Break"
msgstr "_Break"
+#. eBwTo
+#: chart2/uiconfig/ui/tp_axisLabel.ui:226
+msgctxt "tp_axisLabel|extended_tip|breakCB"
+msgid "Allows a text break."
+msgstr "Allows a text break."
+
#. 4EwR7
-#: chart2/uiconfig/ui/tp_axisLabel.ui:209
+#: chart2/uiconfig/ui/tp_axisLabel.ui:244
msgctxt "tp_axisLabel|textflowL"
msgid "Text Flow"
msgstr "Text Flow"
+#. exWTH
+#: chart2/uiconfig/ui/tp_axisLabel.ui:301
+msgctxt "tp_axisLabel|extended_tip|OrientDegree"
+msgid "Allows you to manually enter the orientation angle."
+msgstr "Allows you to manually enter the orientation angle."
+
#. 5teDt
-#: chart2/uiconfig/ui/tp_axisLabel.ui:275
+#: chart2/uiconfig/ui/tp_axisLabel.ui:315
msgctxt "tp_axisLabel|degreeL"
msgid "_Degrees"
msgstr "_Degrees"
#. jFKoF
-#: chart2/uiconfig/ui/tp_axisLabel.ui:309
+#: chart2/uiconfig/ui/tp_axisLabel.ui:349
msgctxt "tp_axisLabel|stackedCB"
msgid "Ve_rtically stacked"
msgstr "Ve_rtically stacked"
+#. ra62A
+#: chart2/uiconfig/ui/tp_axisLabel.ui:359
+msgctxt "tp_axisLabel|extended_tip|stackedCB"
+msgid "Assigns vertical text orientation for cell contents."
+msgstr "Assigns vertical text orientation for cell content."
+
#. JBz5H
-#: chart2/uiconfig/ui/tp_axisLabel.ui:326
+#: chart2/uiconfig/ui/tp_axisLabel.ui:371
msgctxt "tp_axisLabel|labelABCD"
msgid "ABCD"
msgstr "ABCD"
#. PE6RQ
-#: chart2/uiconfig/ui/tp_axisLabel.ui:343
+#: chart2/uiconfig/ui/tp_axisLabel.ui:388
msgctxt "tp_axisLabel|textdirL"
msgid "Te_xt direction:"
msgstr "Te_xt direction:"
+#. YUAjA
+#: chart2/uiconfig/ui/tp_axisLabel.ui:402
+msgctxt "tp_axisLabel|extended_tip|textdirLB"
+msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+msgstr "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+
+#. NxsBh
+#: chart2/uiconfig/ui/tp_axisLabel.ui:421
+msgctxt "tp_axisLabel|extended_tip|dialCtrl"
+msgid "Clicking anywhere on the wheel defines the variable text orientation."
+msgstr "Clicking anywhere on the wheel defines the variable text orientation."
+
#. 3WhzS
-#: chart2/uiconfig/ui/tp_axisLabel.ui:383
+#: chart2/uiconfig/ui/tp_axisLabel.ui:438
msgctxt "tp_axisLabel|labelTextOrient"
msgid "Text Orientation"
msgstr "Text Orientation"
@@ -3821,86 +5195,170 @@ msgctxt "wizelementspage|labelPrimaryZaxis"
msgid "_Z axis"
msgstr "_z-Axis"
+#. 7qRfe
+#: chart2/uiconfig/ui/wizelementspage.ui:89
+msgctxt "wizelementspage|extended_tip|primaryXaxis"
+msgid "Enter a label for the x-axis (horizontal)."
+msgstr "Enter a label for the x-axis (horizontal)."
+
+#. 4vThc
+#: chart2/uiconfig/ui/wizelementspage.ui:106
+msgctxt "wizelementspage|extended_tip|primaryYaxis"
+msgid "Enter a label for the y-axis (vertical)."
+msgstr "Enter a label for the y-axis (vertical)."
+
+#. 7zPH5
+#: chart2/uiconfig/ui/wizelementspage.ui:123
+msgctxt "wizelementspage|extended_tip|primaryZaxis"
+msgid "Enter a label for the z-axis. This option is only available for three-dimensional charts."
+msgstr "Enter a label for the z-axis. This option is only available for three-dimensional charts."
+
#. Qpj9H
-#: chart2/uiconfig/ui/wizelementspage.ui:121
+#: chart2/uiconfig/ui/wizelementspage.ui:136
msgctxt "wizelementspage|labelMainTitle"
msgid "_Title"
msgstr "_Title"
#. nPAjY
-#: chart2/uiconfig/ui/wizelementspage.ui:135
+#: chart2/uiconfig/ui/wizelementspage.ui:150
msgctxt "wizelementspage|labelSubTitle"
msgid "_Subtitle"
msgstr "_Subtitle"
+#. CWmMQ
+#: chart2/uiconfig/ui/wizelementspage.ui:168
+msgctxt "wizelementspage|extended_tip|maintitle"
+msgid "Enter a title for your chart."
+msgstr "Enter a title for your chart."
+
+#. eNDvd
+#: chart2/uiconfig/ui/wizelementspage.ui:185
+msgctxt "wizelementspage|extended_tip|subtitle"
+msgid "Enter a subtitle for your chart."
+msgstr "Enter a subtitle for your chart."
+
#. GJ7pJ
-#: chart2/uiconfig/ui/wizelementspage.ui:173
+#: chart2/uiconfig/ui/wizelementspage.ui:198
msgctxt "wizelementspage|labelSecondaryXAxis"
msgid "X _axis"
msgstr "x-_Axis"
#. bBRgE
-#: chart2/uiconfig/ui/wizelementspage.ui:187
+#: chart2/uiconfig/ui/wizelementspage.ui:212
msgctxt "wizelementspage|labelSecondaryYAxis"
msgid "Y ax_is"
msgstr "y-Ax_is"
+#. NGoMT
+#: chart2/uiconfig/ui/wizelementspage.ui:230
+msgctxt "wizelementspage|extended_tip|secondaryXaxis"
+msgid "Enter a label for the secondary x-axis. This option is only available for charts that support a secondary x-axis."
+msgstr "Enter a label for the secondary x-axis. This option is only available for charts that support a secondary x-axis."
+
#. E6Y7y
-#: chart2/uiconfig/ui/wizelementspage.ui:234
+#: chart2/uiconfig/ui/wizelementspage.ui:264
msgctxt "wizelementspage|show"
msgid "_Display legend"
msgstr "_Display legend"
+#. QWAen
+#: chart2/uiconfig/ui/wizelementspage.ui:273
+msgctxt "wizelementspage|extended_tip|show"
+msgid "Specifies whether to display a legend for the chart."
+msgstr "Specifies whether to display a legend for the chart."
+
#. ejdzz
-#: chart2/uiconfig/ui/wizelementspage.ui:259
+#: chart2/uiconfig/ui/wizelementspage.ui:294
msgctxt "wizelementspage|left"
msgid "_Left"
msgstr "_Left"
+#. tGgc2
+#: chart2/uiconfig/ui/wizelementspage.ui:304
+msgctxt "wizelementspage|extended_tip|left"
+msgid "Positions the legend at the left of the chart."
+msgstr "Positions the legend at the left of the chart."
+
#. EjE6h
-#: chart2/uiconfig/ui/wizelementspage.ui:275
+#: chart2/uiconfig/ui/wizelementspage.ui:315
msgctxt "wizelementspage|right"
msgid "_Right"
msgstr "_Right"
+#. rvAN8
+#: chart2/uiconfig/ui/wizelementspage.ui:325
+msgctxt "wizelementspage|extended_tip|right"
+msgid "Positions the legend at the right of the chart."
+msgstr "Positions the legend at the right of the chart."
+
#. LnxgC
-#: chart2/uiconfig/ui/wizelementspage.ui:291
+#: chart2/uiconfig/ui/wizelementspage.ui:336
msgctxt "wizelementspage|top"
msgid "_Top"
msgstr "_Top"
+#. Ehv3g
+#: chart2/uiconfig/ui/wizelementspage.ui:346
+msgctxt "wizelementspage|extended_tip|top"
+msgid "Positions the legend at the top of the chart."
+msgstr "Positions the legend at the top of the chart."
+
#. GD2qS
-#: chart2/uiconfig/ui/wizelementspage.ui:307
+#: chart2/uiconfig/ui/wizelementspage.ui:357
msgctxt "wizelementspage|bottom"
msgid "_Bottom"
msgstr "_Bottom"
+#. NCp3E
+#: chart2/uiconfig/ui/wizelementspage.ui:367
+msgctxt "wizelementspage|extended_tip|bottom"
+msgid "Positions the legend at the bottom of the chart."
+msgstr "Positions the legend at the bottom of the chart."
+
#. REBEt
-#: chart2/uiconfig/ui/wizelementspage.ui:343
+#: chart2/uiconfig/ui/wizelementspage.ui:398
msgctxt "wizelementspage|Axe"
msgid "Choose Titles, Legend, and Grid Settings"
msgstr "Choose Titles, Legend and Grid Settings"
#. wp2DC
-#: chart2/uiconfig/ui/wizelementspage.ui:376
+#: chart2/uiconfig/ui/wizelementspage.ui:431
msgctxt "wizelementspage|x"
msgid "X axis"
msgstr "x-Axis"
+#. KbejV
+#: chart2/uiconfig/ui/wizelementspage.ui:440
+msgctxt "wizelementspage|extended_tip|x"
+msgid "Displays grid lines that are perpendicular to the x-axis."
+msgstr "Displays grid lines that are perpendicular to the x-axis."
+
#. KPGMU
-#: chart2/uiconfig/ui/wizelementspage.ui:391
+#: chart2/uiconfig/ui/wizelementspage.ui:451
msgctxt "wizelementspage|y"
msgid "Y ax_is"
msgstr "y-Ax_is"
+#. Nivye
+#: chart2/uiconfig/ui/wizelementspage.ui:460
+msgctxt "wizelementspage|extended_tip|y"
+msgid "Displays grid lines that are perpendicular to the y-axis."
+msgstr "Displays grid lines that are perpendicular to the y-axis."
+
#. G65v4
-#: chart2/uiconfig/ui/wizelementspage.ui:406
+#: chart2/uiconfig/ui/wizelementspage.ui:471
msgctxt "wizelementspage|z"
msgid "Z axi_s"
msgstr "z-Axi_s"
+#. uVwTv
+#: chart2/uiconfig/ui/wizelementspage.ui:480
+msgctxt "wizelementspage|extended_tip|z"
+msgid "Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts."
+msgstr "Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts."
+
#. wNqwZ
-#: chart2/uiconfig/ui/wizelementspage.ui:427
+#: chart2/uiconfig/ui/wizelementspage.ui:497
msgctxt "wizelementspage|label2"
msgid "Display Grids"
msgstr "Display Grids"
diff --git a/source/en-GB/cui/messages.po b/source/en-GB/cui/messages.po
index d6c4193a673..1f8d56186e9 100644
--- a/source/en-GB/cui/messages.po
+++ b/source/en-GB/cui/messages.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: 2020-08-17 12:39+0200\n"
-"PO-Revision-Date: 2020-08-14 05:53+0000\n"
+"POT-Creation-Date: 2020-08-21 17:58+0200\n"
+"PO-Revision-Date: 2020-08-19 14:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/en_GB/>\n"
"Language: en-GB\n"
@@ -4060,47 +4060,77 @@ msgid "Expert Configuration"
msgstr "Expert Configuration"
#. GBiPy
-#: cui/uiconfig/ui/aboutconfigdialog.ui:43
+#: cui/uiconfig/ui/aboutconfigdialog.ui:40
msgctxt "aboutconfigdialog|edit"
msgid "Edit"
msgstr "Edit"
+#. Z7SA5
+#: cui/uiconfig/ui/aboutconfigdialog.ui:46
+msgctxt "extended_tip|edit"
+msgid "Opens a dialog to edit the preference."
+msgstr "Opens a dialogue box to edit the preference."
+
#. 2uM3W
-#: cui/uiconfig/ui/aboutconfigdialog.ui:56
+#: cui/uiconfig/ui/aboutconfigdialog.ui:58
msgctxt "aboutconfigdialog|reset"
msgid "Reset"
msgstr "Reset"
-#. EhpWF
+#. 95seU
+#: cui/uiconfig/ui/aboutconfigdialog.ui:64
+msgctxt "extended_tip|reset"
+msgid "Undo changes done so far in this dialog."
+msgstr "Undo changes done so far in this dialogue box."
+
+#. j4Avi
#: cui/uiconfig/ui/aboutconfigdialog.ui:149
+msgctxt "extended_tip|searchEntry"
+msgid "Type the preference you want to display in the text area"
+msgstr "Type the preference you want to display in the text area"
+
+#. EhpWF
+#: cui/uiconfig/ui/aboutconfigdialog.ui:161
msgctxt "aboutconfigdialog|searchButton"
msgid "_Search"
msgstr "_Search"
+#. nmtBr
+#: cui/uiconfig/ui/aboutconfigdialog.ui:170
+msgctxt "extended_tip|searchButton"
+msgid "Click to search your preference text in the Preferences tree."
+msgstr "Click to search your preference text in the Preferences tree."
+
#. BMohC
-#: cui/uiconfig/ui/aboutconfigdialog.ui:196
+#: cui/uiconfig/ui/aboutconfigdialog.ui:212
msgctxt "aboutconfigdialog|preference"
msgid "Preference Name"
msgstr "Preference Name"
#. PiV9t
-#: cui/uiconfig/ui/aboutconfigdialog.ui:216
+#: cui/uiconfig/ui/aboutconfigdialog.ui:232
msgctxt "aboutconfigdialog|property"
msgid "Property"
msgstr "Property"
#. g6RFE
-#: cui/uiconfig/ui/aboutconfigdialog.ui:230
+#: cui/uiconfig/ui/aboutconfigdialog.ui:246
msgctxt "aboutconfigdialog|type"
msgid "Type"
msgstr "Type"
#. BYBgx
-#: cui/uiconfig/ui/aboutconfigdialog.ui:244
+#: cui/uiconfig/ui/aboutconfigdialog.ui:260
msgctxt "aboutconfigdialog|value"
msgid "Value"
msgstr "Value"
+#. A9J9F
+#: cui/uiconfig/ui/aboutconfigdialog.ui:272
+msgctxt "extended_tip|preferences"
+msgid "List the preferences organized hierarchically in a tree layout."
+msgstr "List the preferences organised hierarchically in a tree layout."
+
#. B8FF9
#: cui/uiconfig/ui/aboutconfigvaluedialog.ui:8
msgctxt "aboutconfigvaluedialog|AboutConfigValueDialog"
@@ -4345,43 +4375,43 @@ msgstr "_Text only"
#: cui/uiconfig/ui/additionsdialog.ui:12
msgctxt "customanimationfragment|90"
msgid "Active version only"
-msgstr ""
+msgstr "Active version only"
#. 6ZZPG
#: cui/uiconfig/ui/additionsdialog.ui:25
msgctxt "bulletandposition|gallery"
msgid "Sort by"
-msgstr ""
+msgstr "Sort by"
#. LhkwF
#: cui/uiconfig/ui/additionsdialog.ui:34
msgctxt "menuassignpage|gear_textOnly"
msgid "Voting"
-msgstr ""
+msgstr "Voting"
#. KsZpM
#: cui/uiconfig/ui/additionsdialog.ui:43
msgctxt "menuassignpage|gear_textOnly"
msgid "Downloads"
-msgstr ""
+msgstr "Downloads"
#. A4zUt
#: cui/uiconfig/ui/additionsdialog.ui:52
msgctxt "menuassignpage|gear_textOnly"
msgid "Comments"
-msgstr ""
+msgstr "Comments"
#. ncCYE
#: cui/uiconfig/ui/additionsdialog.ui:71
msgctxt "menuassignpage|gear_iconAndText"
msgid "Detail view"
-msgstr ""
+msgstr "Detail view"
#. SoASj
#: cui/uiconfig/ui/additionsdialog.ui:82
msgctxt "menuassignpage|gear_iconAndText"
msgid "Condensed list"
-msgstr ""
+msgstr "Condensed list"
#. MdFgz
#: cui/uiconfig/ui/additionsdialog.ui:93
@@ -6868,50 +6898,68 @@ msgctxt "connpooloptions|connectionpooling"
msgid "Connection pooling enabled"
msgstr "Connection pooling enabled"
+#. pPghH
+#: cui/uiconfig/ui/connpooloptions.ui:66
+msgctxt "extended_tip|connectionpooling"
+msgid "Specifies whether the chosen connections are pooled."
+msgstr "Specifies whether the chosen connections are pooled."
+
#. GHbky
-#: cui/uiconfig/ui/connpooloptions.ui:82
+#: cui/uiconfig/ui/connpooloptions.ui:87
msgctxt "connpooloptions|driverslabel"
msgid "Drivers known in %PRODUCTNAME"
msgstr "Drivers known in %PRODUCTNAME"
#. Yohxk
-#: cui/uiconfig/ui/connpooloptions.ui:101
+#: cui/uiconfig/ui/connpooloptions.ui:106
msgctxt "connpooloptions|driverlabel"
msgid "Current driver:"
msgstr "Current driver:"
#. RGWQy
-#: cui/uiconfig/ui/connpooloptions.ui:131
+#: cui/uiconfig/ui/connpooloptions.ui:136
msgctxt "connpooloptions|enablepooling"
msgid "Enable pooling for this driver"
msgstr "Enable pooling for this driver"
+#. b26rn
+#: cui/uiconfig/ui/connpooloptions.ui:145
+msgctxt "extended_tip|enablepooling"
+msgid "Select a driver from the list and mark the Enable pooling for this driver checkbox in order to pool its connection."
+msgstr "Select a driver from the list and mark the Enable pooling for this driver check box in order to pool its connection."
+
#. uzbLN
-#: cui/uiconfig/ui/connpooloptions.ui:154
+#: cui/uiconfig/ui/connpooloptions.ui:164
msgctxt "connpooloptions|timeoutlabel"
msgid "_Timeout (seconds)"
msgstr "_Timeout (seconds)"
+#. CUE56
+#: cui/uiconfig/ui/connpooloptions.ui:185
+msgctxt "extended_tip|timeout"
+msgid "Defines the time in seconds after which a pooled connection is freed."
+msgstr "Defines the time in seconds after which a pooled connection is freed."
+
#. gWFKz
-#: cui/uiconfig/ui/connpooloptions.ui:217
+#: cui/uiconfig/ui/connpooloptions.ui:232
msgctxt "connpooloptions|drivername"
msgid "Driver name"
msgstr "Driver name"
#. pQGCs
-#: cui/uiconfig/ui/connpooloptions.ui:230
+#: cui/uiconfig/ui/connpooloptions.ui:245
msgctxt "connpooloptions|pool"
msgid "Pool"
msgstr "Pool"
#. 7Svws
-#: cui/uiconfig/ui/connpooloptions.ui:243
+#: cui/uiconfig/ui/connpooloptions.ui:258
msgctxt "connpooloptions|timeout"
msgid "Timeout"
msgstr "Timeout"
#. 9ctBe
-#: cui/uiconfig/ui/connpooloptions.ui:281
+#: cui/uiconfig/ui/connpooloptions.ui:296
msgctxt "connpooloptions|label1"
msgid "Connection Pool"
msgstr "Connection Pool"
@@ -7085,29 +7133,47 @@ msgid "Create Database Link"
msgstr "Create Database Link"
#. XAYvY
-#: cui/uiconfig/ui/databaselinkdialog.ui:93
+#: cui/uiconfig/ui/databaselinkdialog.ui:90
msgctxt "databaselinkdialog|browse"
msgid "Browse..."
msgstr "Browse..."
+#. YPWDd
+#: cui/uiconfig/ui/databaselinkdialog.ui:97
+msgctxt "extended_tip|browse"
+msgid "Opens a file dialog where you can select the database file."
+msgstr "Opens a file dialogue box in which you can select the database file."
+
#. kvNEy
-#: cui/uiconfig/ui/databaselinkdialog.ui:108
+#: cui/uiconfig/ui/databaselinkdialog.ui:110
msgctxt "databaselinkdialog|label1"
msgid "_Database file:"
msgstr "_Database file:"
#. X5UnF
-#: cui/uiconfig/ui/databaselinkdialog.ui:154
+#: cui/uiconfig/ui/databaselinkdialog.ui:156
msgctxt "databaselinkdialog|label4"
msgid "Registered _name:"
msgstr "Registered _name:"
+#. qrTa8
+#: cui/uiconfig/ui/databaselinkdialog.ui:175
+msgctxt "extended_tip|name"
+msgid "Enter a name for the database. %PRODUCTNAME uses this name to access the database."
+msgstr "Enter a name for the database. %PRODUCTNAME uses this name to access the database."
+
#. FrRyU
-#: cui/uiconfig/ui/databaselinkdialog.ui:187
+#: cui/uiconfig/ui/databaselinkdialog.ui:194
msgctxt "databaselinkdialog|alttitle"
msgid "Edit Database Link"
msgstr "Edit Database Link"
+#. WtSXQ
+#: cui/uiconfig/ui/databaselinkdialog.ui:220
+msgctxt "extended_tip|DatabaseLinkDialog"
+msgid "Creates or edits an entry in the Databases tab page."
+msgstr "Creates or edits an entry in the Databases tab page."
+
#. ehaGT
#: cui/uiconfig/ui/dbregisterpage.ui:73
msgctxt "dbregisterpage|type"
@@ -7126,20 +7192,38 @@ msgctxt "dbregisterpage|new"
msgid "_New..."
msgstr "_New..."
+#. AFdvd
+#: cui/uiconfig/ui/dbregisterpage.ui:130
+msgctxt "extended_tip|new"
+msgid "Opens the Database Link dialog to create a new entry."
+msgstr "Opens the Database Link dialogue box to create a new entry."
+
#. zqFjG
-#: cui/uiconfig/ui/dbregisterpage.ui:137
+#: cui/uiconfig/ui/dbregisterpage.ui:142
msgctxt "dbregisterpage|delete"
msgid "_Delete"
msgstr "_Delete"
+#. ZqToY
+#: cui/uiconfig/ui/dbregisterpage.ui:149
+msgctxt "extended_tip|delete"
+msgid "Removes the selected entry from the list."
+msgstr "Removes the selected entry from the list."
+
#. eiE2E
-#: cui/uiconfig/ui/dbregisterpage.ui:151
+#: cui/uiconfig/ui/dbregisterpage.ui:161
msgctxt "dbregisterpage|edit"
msgid "_Edit..."
msgstr "_Edit..."
+#. fAwt9
+#: cui/uiconfig/ui/dbregisterpage.ui:168
+msgctxt "extended_tip|edit"
+msgid "Opens the Database Link dialog to edit the selected entry."
+msgstr "Opens the Database Link dialogue box to edit the selected entry."
+
#. Q3nF4
-#: cui/uiconfig/ui/dbregisterpage.ui:178
+#: cui/uiconfig/ui/dbregisterpage.ui:193
msgctxt "dbregisterpage|label1"
msgid "Registered Databases"
msgstr "Registered Databases"
@@ -9393,24 +9477,54 @@ msgctxt "javaclasspathdialog|label1"
msgid "A_ssigned folders and archives"
msgstr "A_ssigned folders and archives"
+#. ERHh7
+#: cui/uiconfig/ui/javaclasspathdialog.ui:158
+msgctxt "extended_tip|paths"
+msgid "Specifies the location of Java classes or Java class libraries."
+msgstr "Specifies the location of Java classes or Java class libraries."
+
#. 5cgAY
-#: cui/uiconfig/ui/javaclasspathdialog.ui:180
+#: cui/uiconfig/ui/javaclasspathdialog.ui:185
msgctxt "javaclasspathdialog|archive"
msgid "_Add Archive..."
msgstr "_Add Archive..."
+#. xV5SQ
+#: cui/uiconfig/ui/javaclasspathdialog.ui:192
+msgctxt "extended_tip|archive"
+msgid "Select an archive file in jar or zip format and add the file to the class path."
+msgstr "Select an archive file in jar or zip format and add the file to the class path."
+
#. LBBVG
-#: cui/uiconfig/ui/javaclasspathdialog.ui:194
+#: cui/uiconfig/ui/javaclasspathdialog.ui:204
msgctxt "javaclasspathdialog|folder"
msgid "Add _Folder"
msgstr "Add _Folder"
+#. WP9Eo
+#: cui/uiconfig/ui/javaclasspathdialog.ui:211
+msgctxt "extended_tip|folder"
+msgid "Select a folder and add the folder to the class path."
+msgstr "Select a folder and add the folder to the class path."
+
#. YNHm3
-#: cui/uiconfig/ui/javaclasspathdialog.ui:208
+#: cui/uiconfig/ui/javaclasspathdialog.ui:223
msgctxt "javaclasspathdialog|remove"
msgid "_Remove"
msgstr "_Remove"
+#. fGAwc
+#: cui/uiconfig/ui/javaclasspathdialog.ui:230
+msgctxt "extended_tip|remove"
+msgid "Select an archive or a folder in the list and click Remove to remove the object from the class path."
+msgstr "Select an archive or a folder in the list and click Remove to remove the object from the class path."
+
+#. De7GF
+#: cui/uiconfig/ui/javaclasspathdialog.ui:266
+msgctxt "extended_tip|JavaClassPath"
+msgid "Specifies the location of Java classes or Java class libraries."
+msgstr "Specifies the location of Java classes or Java class libraries."
+
#. LU9ad
#: cui/uiconfig/ui/javastartparametersdialog.ui:16
msgctxt "javastartparametersdialog|JavaStartParameters"
@@ -9418,41 +9532,71 @@ msgid "Java Start Parameters"
msgstr "Java Start Parameters"
#. AkVB2
-#: cui/uiconfig/ui/javastartparametersdialog.ui:107
+#: cui/uiconfig/ui/javastartparametersdialog.ui:104
msgctxt "javastartparametersdialog|label4"
msgid "Java start _parameter"
msgstr "Java start _parameter"
+#. Btkis
+#: cui/uiconfig/ui/javastartparametersdialog.ui:122
+msgctxt "extended_tip|parameterfield"
+msgid "Enter a start parameter for a JRE as you would on a command line. Click Assign to add the parameter to the list of available start parameters."
+msgstr "Enter a start parameter for a JRE as you would on a command line. Click Assign to add the parameter to the list of available start parameters."
+
#. bbrtf
-#: cui/uiconfig/ui/javastartparametersdialog.ui:133
+#: cui/uiconfig/ui/javastartparametersdialog.ui:135
msgctxt "javastartparametersdialog|label5"
msgid "Assig_ned start parameters"
msgstr "Assig_ned start parameters"
+#. xjKFh
+#: cui/uiconfig/ui/javastartparametersdialog.ui:177
+msgctxt "extended_tip|assignlist"
+msgid "Lists the assigned JRE start parameters. To remove a start parameter, select the parameter, and then click Remove."
+msgstr "Lists the assigned JRE start parameters. To remove a start parameter, select the parameter, and then click Remove."
+
#. 87Ysi
-#: cui/uiconfig/ui/javastartparametersdialog.ui:185
+#: cui/uiconfig/ui/javastartparametersdialog.ui:192
msgctxt "javastartparametersdialog|label6"
msgid "For example: -Dmyprop=c:\\\\program files\\\\java"
msgstr "For example: -Dmyprop=c:\\\\program files\\\\java"
#. F3A9L
-#: cui/uiconfig/ui/javastartparametersdialog.ui:195
+#: cui/uiconfig/ui/javastartparametersdialog.ui:202
msgctxt "javastartparametersdialog|assignbtn"
msgid "_Add"
msgstr "_Add"
+#. 5DJCP
+#: cui/uiconfig/ui/javastartparametersdialog.ui:211
+msgctxt "extended_tip|assignbtn"
+msgid "Adds the current JRE start parameter to the list."
+msgstr "Adds the current JRE start parameter to the list."
+
#. sNSWD
-#: cui/uiconfig/ui/javastartparametersdialog.ui:216
+#: cui/uiconfig/ui/javastartparametersdialog.ui:228
msgctxt "javastartparametersdialog|editbtn"
msgid "_Edit"
msgstr "_Edit"
+#. 5FP58
+#: cui/uiconfig/ui/javastartparametersdialog.ui:236
+msgctxt "extended_tip|editbtn"
+msgid "Opens a dialog where the selected JRE start parameter can be edited."
+msgstr "Opens a dialogue box where the selected JRE start parameter can be edited."
+
#. fUGmG
-#: cui/uiconfig/ui/javastartparametersdialog.ui:231
+#: cui/uiconfig/ui/javastartparametersdialog.ui:248
msgctxt "javastartparametersdialog|removebtn"
msgid "_Remove"
msgstr "_Remove"
+#. PhsGH
+#: cui/uiconfig/ui/javastartparametersdialog.ui:256
+msgctxt "extended_tip|removebtn"
+msgid "Deletes the selected JRE start parameter."
+msgstr "Deletes the selected JRE start parameter."
+
#. RdoKs
#: cui/uiconfig/ui/linedialog.ui:8
msgctxt "linedialog|LineDialog"
@@ -10761,248 +10905,434 @@ msgctxt "optaccessibilitypage|acctool"
msgid "Support _assistive technology tools (program restart required)"
msgstr "Support _assistive technology tools (program restart required)"
+#. DYfLF
+#: cui/uiconfig/ui/optaccessibilitypage.ui:40
+msgctxt "extended_tip|acctool"
+msgid "Allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices. The Java Runtime Environment must be installed on your computer before you can enable assistive support."
+msgstr "Allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices. The Java Runtime Environment must be installed on your computer before you can enable assistive support."
+
#. EZqPM
-#: cui/uiconfig/ui/optaccessibilitypage.ui:47
+#: cui/uiconfig/ui/optaccessibilitypage.ui:52
msgctxt "optaccessibilitypage|textselinreadonly"
msgid "Use te_xt selection cursor in read-only text documents"
msgstr "Use te_xt selection cursor in read-only text documents"
+#. KWSKn
+#: cui/uiconfig/ui/optaccessibilitypage.ui:61
+msgctxt "extended_tip|textselinreadonly"
+msgid "Displays cursor in read-only documents."
+msgstr "Displays cursor in read-only documents."
+
#. APEfF
-#: cui/uiconfig/ui/optaccessibilitypage.ui:63
+#: cui/uiconfig/ui/optaccessibilitypage.ui:73
msgctxt "optaccessibilitypage|animatedgraphics"
msgid "Allow animated _images"
msgstr "Allow animated _images"
+#. vvmf3
+#: cui/uiconfig/ui/optaccessibilitypage.ui:82
+msgctxt "extended_tip|animatedgraphics"
+msgid "Previews animated graphics, such as GIF images, in %PRODUCTNAME."
+msgstr "Previews animated graphics, such as GIF images, in %PRODUCTNAME."
+
#. 3Q66x
-#: cui/uiconfig/ui/optaccessibilitypage.ui:79
+#: cui/uiconfig/ui/optaccessibilitypage.ui:94
msgctxt "optaccessibilitypage|animatedtext"
msgid "Allow animated _text"
msgstr "Allow animated _text"
+#. dcCgH
+#: cui/uiconfig/ui/optaccessibilitypage.ui:103
+msgctxt "extended_tip|animatedtext"
+msgid "Previews animated text, such as blinking and scrolling, in %PRODUCTNAME."
+msgstr "Previews animated text, such as blinking and scrolling, in %PRODUCTNAME."
+
#. 2A83C
-#: cui/uiconfig/ui/optaccessibilitypage.ui:101
+#: cui/uiconfig/ui/optaccessibilitypage.ui:121
msgctxt "optaccessibilitypage|label1"
msgid "Miscellaneous Options"
msgstr "Miscellaneous Options"
#. pLAWF
-#: cui/uiconfig/ui/optaccessibilitypage.ui:134
+#: cui/uiconfig/ui/optaccessibilitypage.ui:154
msgctxt "optaccessibilitypage|autodetecthc"
msgid "Automatically _detect high contrast mode of operating system"
msgstr "Automatically _detect high-contrast mode of operating system"
+#. S8FrL
+#: cui/uiconfig/ui/optaccessibilitypage.ui:163
+msgctxt "extended_tip|autodetecthc"
+msgid "Switches %PRODUCTNAME into high contrast mode when the system background color is very dark."
+msgstr "Switches %PRODUCTNAME into high-contrast mode when the system background colour is very dark."
+
#. Sc8Cq
-#: cui/uiconfig/ui/optaccessibilitypage.ui:150
+#: cui/uiconfig/ui/optaccessibilitypage.ui:175
msgctxt "optaccessibilitypage|autofontcolor"
msgid "Use automatic font _color for screen display"
msgstr "Use automatic font _colour for screen display"
+#. DP3mg
+#: cui/uiconfig/ui/optaccessibilitypage.ui:184
+msgctxt "extended_tip|autofontcolor"
+msgid "Displays fonts in %PRODUCTNAME using the system color settings. This option only affects the screen display."
+msgstr "Displays fonts in %PRODUCTNAME using the system colour settings. This option only affects the screen display."
+
#. n24Cd
-#: cui/uiconfig/ui/optaccessibilitypage.ui:166
+#: cui/uiconfig/ui/optaccessibilitypage.ui:196
msgctxt "optaccessibilitypage|systempagepreviewcolor"
msgid "_Use system colors for page previews"
msgstr "_Use system colours for page previews"
+#. DRkNv
+#: cui/uiconfig/ui/optaccessibilitypage.ui:205
+msgctxt "extended_tip|systempagepreviewcolor"
+msgid "Applies the high contrast settings of the operating system to page previews."
+msgstr "Applies the high-contrast settings of the operating system to page previews."
+
#. hGpaw
-#: cui/uiconfig/ui/optaccessibilitypage.ui:188
+#: cui/uiconfig/ui/optaccessibilitypage.ui:223
msgctxt "optaccessibilitypage|label2"
msgid "Options for High Contrast Appearance"
msgstr "Options for High Contrast Appearance"
+#. yuSqB
+#: cui/uiconfig/ui/optaccessibilitypage.ui:238
+msgctxt "extended_tip|OptAccessibilityPage"
+msgid "Sets options that make %PRODUCTNAME programs more accessible for users with reduced sight, limited dexterity or other disabilities."
+msgstr "Sets options that make %PRODUCTNAME programs more accessible for users with reduced sight, limited dexterity or other disabilities."
+
#. kishx
#: cui/uiconfig/ui/optadvancedpage.ui:61
msgctxt "optadvancedpage|javaenabled"
msgid "_Use a Java runtime environment"
msgstr "_Use a Java runtime environment"
+#. xBxzA
+#: cui/uiconfig/ui/optadvancedpage.ui:70
+msgctxt "extended_tip|javaenabled"
+msgid "Allows you to run Java applications in %PRODUCTNAME."
+msgstr "Allows you to run Java applications in %PRODUCTNAME."
+
#. DFVFw
-#: cui/uiconfig/ui/optadvancedpage.ui:95
+#: cui/uiconfig/ui/optadvancedpage.ui:101
msgctxt "optadvancedpage|label2"
msgid "_Java runtime environments (JRE) already installed:"
msgstr "_Java runtime environments (JRE) already installed:"
#. mBYfC
-#: cui/uiconfig/ui/optadvancedpage.ui:120
+#: cui/uiconfig/ui/optadvancedpage.ui:126
msgctxt "optadvancedpage|add"
msgid "_Add..."
msgstr "_Add..."
+#. kbEGR
+#: cui/uiconfig/ui/optadvancedpage.ui:133
+msgctxt "extended_tip|add"
+msgid "Add a path to the root folder of a JRE on your computer."
+msgstr "Add a path to the root folder of a JRE on your computer."
+
#. YtgBL
-#: cui/uiconfig/ui/optadvancedpage.ui:134
+#: cui/uiconfig/ui/optadvancedpage.ui:145
msgctxt "optadvancedpage|parameters"
msgid "_Parameters..."
msgstr "_Parameters..."
+#. DJxvJ
+#: cui/uiconfig/ui/optadvancedpage.ui:152
+msgctxt "extended_tip|parameters"
+msgid "Opens the Java Start Parameters dialog."
+msgstr "Opens the Java Start Parameters dialogue box."
+
#. dhf5G
-#: cui/uiconfig/ui/optadvancedpage.ui:148
+#: cui/uiconfig/ui/optadvancedpage.ui:164
msgctxt "optadvancedpage|classpath"
msgid "_Class Path..."
msgstr "_Class Path..."
+#. qDrtT
+#: cui/uiconfig/ui/optadvancedpage.ui:171
+msgctxt "extended_tip|classpath"
+msgid "Opens the Class Path dialog."
+msgstr "Opens the Class Path dialogue box."
+
#. MxHGu
-#: cui/uiconfig/ui/optadvancedpage.ui:222
+#: cui/uiconfig/ui/optadvancedpage.ui:243
msgctxt "optadvancedpage|vendor"
msgid "Vendor"
msgstr "Vendor"
#. e6xHG
-#: cui/uiconfig/ui/optadvancedpage.ui:235
+#: cui/uiconfig/ui/optadvancedpage.ui:256
msgctxt "optadvancedpage|version"
msgid "Version"
msgstr "Version"
+#. kwgDj
+#: cui/uiconfig/ui/optadvancedpage.ui:267
+msgctxt "extended_tip|javas"
+msgid "Select the JRE that you want to use. On some systems, you must wait a minute until the list gets populated. On some systems, you must restart %PRODUCTNAME to use your changed setting."
+msgstr "Select the JRE that you want to use. On some systems, you must wait a minute until the list gets populated. On some systems, you must restart %PRODUCTNAME to use your changed setting."
+
#. erNBk
-#: cui/uiconfig/ui/optadvancedpage.ui:269
+#: cui/uiconfig/ui/optadvancedpage.ui:295
msgctxt "optadvancedpage|javapath"
msgid "Location: "
msgstr "Location: "
#. GkBzK
-#: cui/uiconfig/ui/optadvancedpage.ui:286
+#: cui/uiconfig/ui/optadvancedpage.ui:312
msgctxt "optadvancedpage|selectruntime"
msgid "Select a Java Runtime Environment"
msgstr "Select a Java Runtime Environment"
#. 7QUQp
-#: cui/uiconfig/ui/optadvancedpage.ui:319
+#: cui/uiconfig/ui/optadvancedpage.ui:345
msgctxt "optadvancedpage|label1"
msgid "Java Options"
msgstr "Java Options"
#. rEtsc
-#: cui/uiconfig/ui/optadvancedpage.ui:354
+#: cui/uiconfig/ui/optadvancedpage.ui:380
msgctxt "optadvancedpage|experimental"
msgid "Enable experimental features (may be unstable)"
msgstr "Enable experimental features (may be unstable)"
+#. CyDsa
+#: cui/uiconfig/ui/optadvancedpage.ui:389
+msgctxt "extended_tip|experimental"
+msgid "Enable experimental features"
+msgstr "Enable experimental features"
+
#. rMVcA
-#: cui/uiconfig/ui/optadvancedpage.ui:369
+#: cui/uiconfig/ui/optadvancedpage.ui:400
msgctxt "optadvancedpage|macrorecording"
msgid "Enable macro recording (may be limited)"
msgstr "Enable macro recording (may be limited)"
+#. 8Gjtp
+#: cui/uiconfig/ui/optadvancedpage.ui:409
+msgctxt "extended_tip|macrorecording"
+msgid "Enable macro recording"
+msgstr "Enable macro recording"
+
#. NgRXw
-#: cui/uiconfig/ui/optadvancedpage.ui:384
+#: cui/uiconfig/ui/optadvancedpage.ui:420
msgctxt "optadvancedpage|expertconfig"
msgid "Open Expert Configuration"
msgstr "Open Expert Configuration"
+#. rAnYG
+#: cui/uiconfig/ui/optadvancedpage.ui:428
+msgctxt "extended_tip|expertconfig"
+msgid "Opens the Expert Configuration dialog for advanced settings and configuration of %PRODUCTNAME."
+msgstr "Opens the Expert Configuration dialogue box for advanced settings and configuration of %PRODUCTNAME."
+
#. ZLtrh
-#: cui/uiconfig/ui/optadvancedpage.ui:404
+#: cui/uiconfig/ui/optadvancedpage.ui:445
msgctxt "optadvancedpage|label12"
msgid "Optional Features"
msgstr "Optional Features"
+#. wJx8x
+#: cui/uiconfig/ui/optadvancedpage.ui:461
+msgctxt "extended_tip|OptAdvancedPage"
+msgid "Allows you to run Java applications in %PRODUCTNAME."
+msgstr "Allows you to run Java applications in %PRODUCTNAME."
+
#. dmvLE
#: cui/uiconfig/ui/optappearancepage.ui:37
msgctxt "optappearancepage|label3"
msgid "_Scheme:"
msgstr "_Scheme:"
+#. k8ACj
+#: cui/uiconfig/ui/optappearancepage.ui:55
+msgctxt "extended_tip|save"
+msgid "Saves the current settings as a color scheme that you can reload later."
+msgstr "Saves the current settings as a colour scheme that you can reload later."
+
+#. 4YuTW
+#: cui/uiconfig/ui/optappearancepage.ui:73
+msgctxt "extended_tip|delete"
+msgid "Deletes the color scheme shown in the Scheme box. You cannot delete the Default scheme."
+msgstr "Deletes the colour scheme shown in the Scheme box. You cannot delete the Default scheme."
+
+#. Gii2p
+#: cui/uiconfig/ui/optappearancepage.ui:89
+msgctxt "extended_tip|colorschemelb"
+msgid "Selects the color scheme you want to use."
+msgstr "Selects the colour scheme you want to use."
+
#. jzELX
-#: cui/uiconfig/ui/optappearancepage.ui:91
+#: cui/uiconfig/ui/optappearancepage.ui:106
msgctxt "optappearancepage|label1"
msgid "Color Scheme"
msgstr "Colour Scheme"
+#. RAEbU
+#: cui/uiconfig/ui/optappearancepage.ui:199
+msgctxt "extended_tip|colorconfig"
+msgid "Select the colors for the user interface elements."
+msgstr "Select the colours for the user interface elements."
+
#. BtFUJ
-#: cui/uiconfig/ui/optappearancepage.ui:211
+#: cui/uiconfig/ui/optappearancepage.ui:231
msgctxt "optappearancepage|uielements"
msgid "User interface elements"
msgstr "User interface elements"
#. nrHHF
-#: cui/uiconfig/ui/optappearancepage.ui:226
+#: cui/uiconfig/ui/optappearancepage.ui:246
msgctxt "optappearancepage|colorsetting"
msgid "Color setting"
msgstr "Colour setting"
#. Jms9Q
-#: cui/uiconfig/ui/optappearancepage.ui:239
+#: cui/uiconfig/ui/optappearancepage.ui:259
msgctxt "optappearancepage|on"
msgid "On"
msgstr "On"
#. HFLPF
-#: cui/uiconfig/ui/optappearancepage.ui:260
+#: cui/uiconfig/ui/optappearancepage.ui:280
msgctxt "optappearancepage|label2"
msgid "Custom Colors"
msgstr "Custom Colours"
+#. vxBRc
+#: cui/uiconfig/ui/optappearancepage.ui:295
+msgctxt "extended_tip|OptAppearancePage"
+msgid "Sets the colors for the %PRODUCTNAME user interface."
+msgstr "Sets the colours for the %PRODUCTNAME user interface."
+
#. nRFne
#: cui/uiconfig/ui/optasianpage.ui:30
msgctxt "optasianpage|charkerning"
msgid "_Western text only"
msgstr "_Western text only"
+#. QCvQv
+#: cui/uiconfig/ui/optasianpage.ui:40
+msgctxt "extended_tip|charkerning"
+msgid "Specifies that kerning is only applied to western text."
+msgstr "Specifies that kerning is only applied to western text."
+
#. WEFrz
-#: cui/uiconfig/ui/optasianpage.ui:47
+#: cui/uiconfig/ui/optasianpage.ui:52
msgctxt "optasianpage|charpunctkerning"
msgid "Western _text and Asian punctuation"
msgstr "Western _text and Asian punctuation"
+#. PCrHe
+#: cui/uiconfig/ui/optasianpage.ui:62
+msgctxt "extended_tip|charpunctkerning"
+msgid "Specifies that kerning is applied to both western text and Asian punctuation."
+msgstr "Specifies that kerning is applied to both western text and Asian punctuation."
+
#. 4wTpB
-#: cui/uiconfig/ui/optasianpage.ui:70
+#: cui/uiconfig/ui/optasianpage.ui:80
msgctxt "optasianpage|label1"
msgid "Kerning"
msgstr "Kerning"
#. mboKG
-#: cui/uiconfig/ui/optasianpage.ui:102
+#: cui/uiconfig/ui/optasianpage.ui:112
msgctxt "optasianpage|nocompression"
msgid "_No compression"
msgstr "_No compression"
+#. DGBhs
+#: cui/uiconfig/ui/optasianpage.ui:122
+msgctxt "extended_tip|nocompression"
+msgid "Specifies that no compression at all will occur."
+msgstr "Specifies that no compression at all will occur."
+
#. GvJuV
-#: cui/uiconfig/ui/optasianpage.ui:119
+#: cui/uiconfig/ui/optasianpage.ui:134
msgctxt "optasianpage|punctcompression"
msgid "_Compress punctuation only"
msgstr "_Compress punctuation only"
+#. 8FYbX
+#: cui/uiconfig/ui/optasianpage.ui:144
+msgctxt "extended_tip|punctcompression"
+msgid "Specifies that only the punctuation is compressed."
+msgstr "Specifies that only the punctuation is compressed."
+
#. aGY7H
-#: cui/uiconfig/ui/optasianpage.ui:136
+#: cui/uiconfig/ui/optasianpage.ui:156
msgctxt "optasianpage|punctkanacompression"
msgid "Compress punctuation and Japanese Kana"
msgstr "Compress punctuation and Japanese Kana"
+#. k2K9z
+#: cui/uiconfig/ui/optasianpage.ui:166
+msgctxt "extended_tip|punctkanacompression"
+msgid "Specifies that punctuation and Japanese Kana are compressed."
+msgstr "Specifies that punctuation and Japanese Kana are compressed."
+
#. DAgwH
-#: cui/uiconfig/ui/optasianpage.ui:159
+#: cui/uiconfig/ui/optasianpage.ui:184
msgctxt "optasianpage|label2"
msgid "Character Spacing"
msgstr "Character Spacing"
+#. LbEDU
+#: cui/uiconfig/ui/optasianpage.ui:238
+msgctxt "extended_tip|language"
+msgid "Specifies the language for which you want to define first and last characters."
+msgstr "Specifies the language for which you want to define first and last characters."
+
#. CeSy8
-#: cui/uiconfig/ui/optasianpage.ui:220
+#: cui/uiconfig/ui/optasianpage.ui:250
msgctxt "optasianpage|standard"
msgid "_Default"
msgstr "_Default"
+#. bEKYg
+#: cui/uiconfig/ui/optasianpage.ui:259
+msgctxt "extended_tip|standard"
+msgid "When you mark Default, the following two text boxes are filled with the default characters for the selected language:"
+msgstr "When you mark Default, the following two text boxes are filled with the default characters for the selected language:"
+
#. WmjE9
-#: cui/uiconfig/ui/optasianpage.ui:244
+#: cui/uiconfig/ui/optasianpage.ui:279
msgctxt "optasianpage|languageft"
msgid "_Language:"
msgstr "_Language:"
#. 3Airv
-#: cui/uiconfig/ui/optasianpage.ui:258
+#: cui/uiconfig/ui/optasianpage.ui:293
msgctxt "optasianpage|startft"
msgid "Not _at start of line:"
msgstr "Not _at start of line:"
#. TiFfn
-#: cui/uiconfig/ui/optasianpage.ui:272
+#: cui/uiconfig/ui/optasianpage.ui:307
msgctxt "optasianpage|endft"
msgid "Not at _end of line:"
msgstr "Not at _end of line:"
+#. ebuCA
+#: cui/uiconfig/ui/optasianpage.ui:325
+msgctxt "extended_tip|start"
+msgid "Specifies the characters that should not appear alone at the beginning of a line."
+msgstr "Specifies the characters that should not appear alone at the beginning of a line."
+
+#. 6EoPs
+#: cui/uiconfig/ui/optasianpage.ui:342
+msgctxt "extended_tip|end"
+msgid "Specifies the characters that should not appear alone at the end of a line."
+msgstr "Specifies the characters that should not appear alone at the end of a line."
+
#. dSvmP
-#: cui/uiconfig/ui/optasianpage.ui:317
+#: cui/uiconfig/ui/optasianpage.ui:362
msgctxt "optasianpage|hintft"
msgid "Without user-defined line break symbols"
msgstr "Without user-defined line break symbols"
#. BCwCp
-#: cui/uiconfig/ui/optasianpage.ui:334
+#: cui/uiconfig/ui/optasianpage.ui:379
msgctxt "optasianpage|label3"
msgid "First and Last Characters"
msgstr "First and Last Characters"
@@ -11013,186 +11343,294 @@ msgctxt "optbasicidepage|codecomplete_enable"
msgid "Enable code completion"
msgstr "Enable code completion"
+#. oQJh3
+#: cui/uiconfig/ui/optbasicidepage.ui:38
+msgctxt "extended_tip|codecomplete_enable"
+msgid "Display methods of a Basic object."
+msgstr "Display methods of a Basic object."
+
#. B8fvE
-#: cui/uiconfig/ui/optbasicidepage.ui:50
+#: cui/uiconfig/ui/optbasicidepage.ui:55
msgctxt "optbasicidepage|label1"
msgid "Code Completion"
msgstr "Code Completion"
#. kaYLZ
-#: cui/uiconfig/ui/optbasicidepage.ui:82
+#: cui/uiconfig/ui/optbasicidepage.ui:87
msgctxt "optbasicidepage|autoclose_proc"
msgid "Autoclose procedures"
msgstr "Autoclose procedures"
+#. hjYfe
+#: cui/uiconfig/ui/optbasicidepage.ui:96
+msgctxt "extended_tip|autoclose_proc"
+msgid "Automatically insert closing statements for procedures."
+msgstr "Automatically insert closing statements for procedures."
+
#. qKTPa
-#: cui/uiconfig/ui/optbasicidepage.ui:97
+#: cui/uiconfig/ui/optbasicidepage.ui:107
msgctxt "optbasicidepage|autoclose_paren"
msgid "Autoclose parenthesis"
msgstr "Autoclose parenthesis"
+#. UmekG
+#: cui/uiconfig/ui/optbasicidepage.ui:116
+msgctxt "extended_tip|autoclose_paren"
+msgid "Automatically close open parenthesis."
+msgstr "Automatically close open parenthesis."
+
#. EExBY
-#: cui/uiconfig/ui/optbasicidepage.ui:112
+#: cui/uiconfig/ui/optbasicidepage.ui:127
msgctxt "optbasicidepage|autoclose_quotes"
msgid "Autoclose quotes"
msgstr "Autoclose quotes"
+#. GKCkD
+#: cui/uiconfig/ui/optbasicidepage.ui:136
+msgctxt "extended_tip|autoclose_quotes"
+msgid "Automatically close open quotes."
+msgstr "Automatically close open quotes."
+
#. CCtUM
-#: cui/uiconfig/ui/optbasicidepage.ui:127
+#: cui/uiconfig/ui/optbasicidepage.ui:147
msgctxt "optbasicidepage|autocorrect"
msgid "Autocorrection"
msgstr "Autocorrection"
+#. czdha
+#: cui/uiconfig/ui/optbasicidepage.ui:157
+msgctxt "extended_tip|autocorrect"
+msgid "Correct cases of Basic variables and keywords while typing."
+msgstr "Correct cases of Basic variables and keywords while typing."
+
#. dJWhM
-#: cui/uiconfig/ui/optbasicidepage.ui:149
+#: cui/uiconfig/ui/optbasicidepage.ui:174
msgctxt "optbasicidepage|label2"
msgid "Code Suggestion"
msgstr "Code Suggestion"
#. iUBCy
-#: cui/uiconfig/ui/optbasicidepage.ui:181
+#: cui/uiconfig/ui/optbasicidepage.ui:206
msgctxt "optbasicidepage|extendedtypes_enable"
msgid "Use extended types"
msgstr "Use extended types"
+#. zYY9B
+#: cui/uiconfig/ui/optbasicidepage.ui:215
+msgctxt "extended_tip|extendedtypes_enable"
+msgid "Allow UNO object types as valid Basic types."
+msgstr "Allow UNO object types as valid Basic types."
+
#. rG8Fi
-#: cui/uiconfig/ui/optbasicidepage.ui:202
+#: cui/uiconfig/ui/optbasicidepage.ui:232
msgctxt "optbasicidepage|label3"
msgid "Language Features"
msgstr "Language Features"
+#. VXGYT
+#: cui/uiconfig/ui/optchartcolorspage.ui:80
+msgctxt "extended_tip|colors"
+msgid "Displays all the colors available for the data series."
+msgstr "Displays all the colours available for the data series."
+
#. vTZjC
-#: cui/uiconfig/ui/optchartcolorspage.ui:91
+#: cui/uiconfig/ui/optchartcolorspage.ui:93
msgctxt "optchartcolorspage|label20"
msgid "Chart Colors"
msgstr "Chart Colours"
#. WA57y
-#: cui/uiconfig/ui/optchartcolorspage.ui:163
+#: cui/uiconfig/ui/optchartcolorspage.ui:165
msgctxt "optchartcolorspage|default"
msgid "_Default"
msgstr "_Default"
+#. mpSKB
+#: cui/uiconfig/ui/optchartcolorspage.ui:172
+msgctxt "extended_tip|default"
+msgid "Restores the color settings that were defined when the program was installed."
+msgstr "Restores the colour settings that were defined when the program was installed."
+
#. KoHHw
-#: cui/uiconfig/ui/optchartcolorspage.ui:233
+#: cui/uiconfig/ui/optchartcolorspage.ui:240
msgctxt "optchartcolorspage|label1"
msgid "Color Table"
msgstr "Colour Table"
+#. xxtZE
+#: cui/uiconfig/ui/optchartcolorspage.ui:255
+msgctxt "extended_tip|OptChartColorsPage"
+msgid "Displays all the colors available for the data series."
+msgstr "Displays all the colours available for the data series."
+
#. fVDQp
#: cui/uiconfig/ui/optctlpage.ui:31
msgctxt "optctlpage|sequencechecking"
msgid "Use se_quence checking"
msgstr "Use se_quence checking"
+#. 47pP9
+#: cui/uiconfig/ui/optctlpage.ui:40
+msgctxt "extended_tip|sequencechecking"
+msgid "Enables sequence input checking for languages such as Thai."
+msgstr "Enables sequence input checking for languages such as Thai."
+
#. DTWHd
-#: cui/uiconfig/ui/optctlpage.ui:56
+#: cui/uiconfig/ui/optctlpage.ui:61
msgctxt "optctlpage|restricted"
msgid "Restricted"
msgstr "Restricted"
+#. HtGj9
+#: cui/uiconfig/ui/optctlpage.ui:70
+msgctxt "extended_tip|restricted"
+msgid "Prevents the use as well as the printing of illegal character combinations."
+msgstr "Prevents the use as well as the printing of illegal character combinations."
+
#. wkSPW
-#: cui/uiconfig/ui/optctlpage.ui:71
+#: cui/uiconfig/ui/optctlpage.ui:81
msgctxt "optctlpage|typeandreplace"
msgid "_Type and replace"
msgstr "_Type and replace"
#. 4fM2r
-#: cui/uiconfig/ui/optctlpage.ui:100
+#: cui/uiconfig/ui/optctlpage.ui:110
msgctxt "optctlpage|label1"
msgid "Sequence Checking"
msgstr "Sequence Checking"
#. oBBi6
-#: cui/uiconfig/ui/optctlpage.ui:135
+#: cui/uiconfig/ui/optctlpage.ui:145
msgctxt "optctlpage|label3"
msgid "Movement:"
msgstr "Movement:"
#. R7YUB
-#: cui/uiconfig/ui/optctlpage.ui:145
+#: cui/uiconfig/ui/optctlpage.ui:155
msgctxt "optctlpage|movementlogical"
msgid "Lo_gical"
msgstr "Lo_gical"
+#. W9NrD
+#: cui/uiconfig/ui/optctlpage.ui:165
+msgctxt "extended_tip|movementlogical"
+msgid "Pressing the Right Arrow key moves the text cursor toward the end of the current text. Pressing the Left Arrow key moves the text cursor toward the beginning of the current text."
+msgstr "Pressing the Right Arrow key moves the text cursor towards the end of the current text. Pressing the Left Arrow key moves the text cursor towards the beginning of the current text."
+
#. aEwYW
-#: cui/uiconfig/ui/optctlpage.ui:161
+#: cui/uiconfig/ui/optctlpage.ui:176
msgctxt "optctlpage|movementvisual"
msgid "_Visual"
msgstr "_Visual"
-#. 78DkF
+#. wpUXS
#: cui/uiconfig/ui/optctlpage.ui:186
+msgctxt "extended_tip|movementvisual"
+msgid "Pressing the Right Arrow key moves the text cursor in the right-hand direction. Pressing the Left Arrow key moves the text cursor in the left-hand direction."
+msgstr "Pressing the Right Arrow key moves the text cursor in the right-hand direction. Pressing the Left Arrow key moves the text cursor in the left-hand direction."
+
+#. 78DkF
+#: cui/uiconfig/ui/optctlpage.ui:206
msgctxt "optctlpage|label2"
msgid "Cursor Control"
msgstr "Cursor Control"
#. LcTwD
-#: cui/uiconfig/ui/optctlpage.ui:220
+#: cui/uiconfig/ui/optctlpage.ui:240
msgctxt "optctlpage|label5"
msgid "_Numerals:"
msgstr "_Numerals:"
#. BdfCk
-#: cui/uiconfig/ui/optctlpage.ui:235
+#: cui/uiconfig/ui/optctlpage.ui:255
msgctxt "optctlpage|numerals"
msgid "Arabic (1, 2, 3…)"
msgstr "Arabic (1, 2, 3…)"
#. 2n6dr
-#: cui/uiconfig/ui/optctlpage.ui:236
+#: cui/uiconfig/ui/optctlpage.ui:256
msgctxt "optctlpage|numerals"
msgid "Eastern Arabic (٣ ,٢ ,١…)"
msgstr "Eastern Arabic (٣ ,٢ ,١…)"
#. uFBEA
-#: cui/uiconfig/ui/optctlpage.ui:237
+#: cui/uiconfig/ui/optctlpage.ui:257
msgctxt "optctlpage|numerals"
msgid "System"
msgstr "System"
#. 93jgb
-#: cui/uiconfig/ui/optctlpage.ui:238
+#: cui/uiconfig/ui/optctlpage.ui:258
msgctxt "optctlpage|numerals"
msgid "Context"
msgstr "Context"
+#. jDGEt
+#: cui/uiconfig/ui/optctlpage.ui:262
+msgctxt "extended_tip|numerals"
+msgid "Selects the type of numerals used within text, text in objects, fields, and controls, in all %PRODUCTNAME modules. Only cell contents of %PRODUCTNAME Calc are not affected."
+msgstr "Selects the type of numerals used within text, text in objects, fields, and controls, in all %PRODUCTNAME modules. Only cell contents of %PRODUCTNAME Calc are not affected."
+
#. kWczF
-#: cui/uiconfig/ui/optctlpage.ui:254
+#: cui/uiconfig/ui/optctlpage.ui:279
msgctxt "optctlpage|label4"
msgid "General Options"
msgstr "General Options"
+#. WSTDt
+#: cui/uiconfig/ui/optctlpage.ui:294
+msgctxt "extended_tip|OptCTLPage"
+msgid "Defines the options for documents with complex text layouts."
+msgstr "Defines the options for documents with complex text layouts."
+
#. G5EDD
#: cui/uiconfig/ui/optemailpage.ui:34
msgctxt "optemailpage|label2"
msgid "_Email program:"
msgstr "_Email program:"
+#. bEyeK
+#: cui/uiconfig/ui/optemailpage.ui:53
+msgctxt "extended_tip|url"
+msgid "Enter the email program path and name."
+msgstr ""
+
#. ACQCM
-#: cui/uiconfig/ui/optemailpage.ui:59
+#: cui/uiconfig/ui/optemailpage.ui:64
msgctxt "optemailpage|browse"
msgid "Browse..."
msgstr "Browse..."
+#. Vs69j
+#: cui/uiconfig/ui/optemailpage.ui:71
+msgctxt "extended_tip|browse"
+msgid "Opens a file dialog to select the email program."
+msgstr ""
+
#. EHBa5
-#: cui/uiconfig/ui/optemailpage.ui:87
+#: cui/uiconfig/ui/optemailpage.ui:97
msgctxt "optemailpage|browsetitle"
msgid "All files"
msgstr "All files"
#. scEyS
-#: cui/uiconfig/ui/optemailpage.ui:112
+#: cui/uiconfig/ui/optemailpage.ui:122
msgctxt "optemailpage|suppress"
msgid "Suppress hidden elements of documents"
msgstr "Suppress hidden elements of documents"
#. vbcqb
-#: cui/uiconfig/ui/optemailpage.ui:181
+#: cui/uiconfig/ui/optemailpage.ui:191
msgctxt "optemailpage|label1"
msgid "Sending Documents as Email Attachments"
msgstr "Sending Documents as Email Attachments"
+#. DoGA3
+#: cui/uiconfig/ui/optemailpage.ui:199
+msgctxt "extended_tip|OptEmailPage"
+msgid "Enter the email program path and name."
+msgstr ""
+
#. CnnM7
#. A column title, short for Load. This string is repeated as a prefix to an explanatory note under the widget
#: cui/uiconfig/ui/optfltrembedpage.ui:88
@@ -11207,128 +11645,212 @@ msgctxt "optfltrembedpage|column2"
msgid "[S]"
msgstr "[S]"
+#. xrKRQ
+#: cui/uiconfig/ui/optfltrembedpage.ui:135
+msgctxt "extended_tip|checklbcontainer"
+msgid "The [L] and [S] checkbox displays the entries for the pair of OLE objects that can be converted when loading into %PRODUCTNAME [L] and/or when saving into a Microsoft format [S]. "
+msgstr ""
+
#. x5kfq
#. The [L] here is repeated as the column title for the "Load" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:151
+#: cui/uiconfig/ui/optfltrembedpage.ui:156
msgctxt "optfltrembedpage|label2"
msgid "[L]: Load and convert the object"
msgstr "[L]: Load and convert the object"
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:164
+#: cui/uiconfig/ui/optfltrembedpage.ui:169
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr "[S]: Convert and save the object"
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:188
+#: cui/uiconfig/ui/optfltrembedpage.ui:193
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr "Embedded Objects"
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:222
+#: cui/uiconfig/ui/optfltrembedpage.ui:227
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr "Export as:"
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:237
+#: cui/uiconfig/ui/optfltrembedpage.ui:242
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "Highlighting"
+#. mCeit
+#: cui/uiconfig/ui/optfltrembedpage.ui:252
+msgctxt "extended_tip|highlighting"
+msgid "Microsoft Office has two character attributes similar to %PRODUCTNAME character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
+msgstr "Microsoft Office has two character attributes similar to %PRODUCTNAME character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
+
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:254
+#: cui/uiconfig/ui/optfltrembedpage.ui:264
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "Shading"
+#. 5b274
+#: cui/uiconfig/ui/optfltrembedpage.ui:274
+msgctxt "extended_tip|shading"
+msgid "Microsoft Office has two character attributes similar to %PRODUCTNAME character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
+msgstr "Microsoft Office has two character attributes similar to %PRODUCTNAME character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
+
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:284
+#: cui/uiconfig/ui/optfltrembedpage.ui:299
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr "Character Highlighting"
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:315
+#: cui/uiconfig/ui/optfltrembedpage.ui:330
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr "Create MSO lock file"
+#. NDG4H
+#: cui/uiconfig/ui/optfltrembedpage.ui:340
+msgctxt "extended_tip|mso_lockfile"
+msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to %PRODUCTNAME own lock file."
+msgstr ""
+
#. WkpLv
-#: cui/uiconfig/ui/optfltrembedpage.ui:338
+#: cui/uiconfig/ui/optfltrembedpage.ui:358
msgctxt "optfltrembedpage|label5"
msgid "Lock files"
msgstr "Lock files"
+#. EUBnP
+#: cui/uiconfig/ui/optfltrembedpage.ui:372
+msgctxt "extended_tip|OptFilterPage"
+msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
+msgstr ""
+
#. ttAk5
-#: cui/uiconfig/ui/optfltrpage.ui:29
+#: cui/uiconfig/ui/optfltrpage.ui:30
msgctxt "optfltrpage|wo_basic"
msgid "Load Basic _code"
msgstr "Load Basic _code"
+#. q4wdN
+#: cui/uiconfig/ui/optfltrpage.ui:39
+msgctxt "extended_tip|wo_basic"
+msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+msgstr "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+
#. AChYC
-#: cui/uiconfig/ui/optfltrpage.ui:46
+#: cui/uiconfig/ui/optfltrpage.ui:50
msgctxt "optfltrpage|wo_exec"
msgid "E_xecutable code"
msgstr "E_xecutable code"
+#. DrWP3
+#: cui/uiconfig/ui/optfltrpage.ui:60
+msgctxt "extended_tip|wo_exec"
+msgid "The VBA (Visual Basic for Applications) code will be loaded ready to be executed. If this checkbox is not checked, the VBA code will be commented out so it can be inspected, but will not run."
+msgstr "The VBA (Visual Basic for Applications) code will be loaded ready to be executed. If this check box is not marked, the VBA code will be commented out so it can be inspected, but will not run."
+
#. avyQV
-#: cui/uiconfig/ui/optfltrpage.ui:64
+#: cui/uiconfig/ui/optfltrpage.ui:71
msgctxt "optfltrpage|wo_saveorig"
msgid "Save _original Basic code"
msgstr "Save _original Basic code"
+#. 4pGYB
+#: cui/uiconfig/ui/optfltrpage.ui:80
+msgctxt "extended_tip|wo_saveorig"
+msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+msgstr "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+
#. W6nED
-#: cui/uiconfig/ui/optfltrpage.ui:87
+#: cui/uiconfig/ui/optfltrpage.ui:97
msgctxt "optfltrpage|label1"
msgid "Microsoft Word"
msgstr "Microsoft Word"
#. Z88Ms
-#: cui/uiconfig/ui/optfltrpage.ui:119
+#: cui/uiconfig/ui/optfltrpage.ui:129
msgctxt "optfltrpage|ex_basic"
msgid "Lo_ad Basic code"
msgstr "Lo_ad Basic code"
+#. QcFGD
+#: cui/uiconfig/ui/optfltrpage.ui:138
+msgctxt "extended_tip|ex_basic"
+msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+msgstr "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+
#. S6ozV
-#: cui/uiconfig/ui/optfltrpage.ui:136
+#: cui/uiconfig/ui/optfltrpage.ui:149
msgctxt "optfltrpage|ex_exec"
msgid "E_xecutable code"
msgstr "E_xecutable code"
+#. qvcsz
+#: cui/uiconfig/ui/optfltrpage.ui:159
+msgctxt "extended_tip|ex_exec"
+msgid "The VBA (Visual Basic for Applications) code will be loaded ready to be executed. If this checkbox is not checked, the VBA code will be commented out so it can be inspected, but will not run."
+msgstr "The VBA (Visual Basic for Applications) code will be loaded ready to be executed. If this check box is not marked, the VBA code will be commented out so it can be inspected, but will not run."
+
#. K6YYX
-#: cui/uiconfig/ui/optfltrpage.ui:154
+#: cui/uiconfig/ui/optfltrpage.ui:170
msgctxt "optfltrpage|ex_saveorig"
msgid "Sa_ve original Basic code"
msgstr "Sa_ve original Basic code"
+#. QzDgZ
+#: cui/uiconfig/ui/optfltrpage.ui:179
+msgctxt "extended_tip|ex_saveorig"
+msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+msgstr "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+
#. a5EkB
-#: cui/uiconfig/ui/optfltrpage.ui:177
+#: cui/uiconfig/ui/optfltrpage.ui:196
msgctxt "optfltrpage|label2"
msgid "Microsoft Excel"
msgstr "Microsoft Excel"
#. z9TKA
-#: cui/uiconfig/ui/optfltrpage.ui:209
+#: cui/uiconfig/ui/optfltrpage.ui:228
msgctxt "optfltrpage|pp_basic"
msgid "Load Ba_sic code"
msgstr "Load Ba_sic code"
+#. VR4v5
+#: cui/uiconfig/ui/optfltrpage.ui:237
+msgctxt "extended_tip|pp_basic"
+msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+msgstr "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+
#. VSdyY
-#: cui/uiconfig/ui/optfltrpage.ui:226
+#: cui/uiconfig/ui/optfltrpage.ui:248
msgctxt "optfltrpage|pp_saveorig"
msgid "Sav_e original Basic code"
msgstr "Sav_e original Basic code"
+#. tTQXM
+#: cui/uiconfig/ui/optfltrpage.ui:257
+msgctxt "extended_tip|pp_saveorig"
+msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+msgstr "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+
#. sazZt
-#: cui/uiconfig/ui/optfltrpage.ui:249
+#: cui/uiconfig/ui/optfltrpage.ui:274
msgctxt "optfltrpage|label3"
msgid "Microsoft PowerPoint"
msgstr "Microsoft PowerPoint"
+#. yV3zh
+#: cui/uiconfig/ui/optfltrpage.ui:289
+msgctxt "extended_tip|OptFltrPage"
+msgid "Specifies the general properties for loading and saving Microsoft Office documents with VBA (Visual Basic for Applications) code."
+msgstr "Specifies the general properties for loading and saving Microsoft Office documents with VBA (Visual Basic for Applications) code."
+
#. Q8yvt
#: cui/uiconfig/ui/optfontspage.ui:86
msgctxt "optfontspage|label2"
@@ -11365,44 +11887,104 @@ msgctxt "optfontspage|replacewith"
msgid "Replace with"
msgstr "Replace with"
+#. MN8PJ
+#: cui/uiconfig/ui/optfontspage.ui:201
+msgctxt "extended_tip | checklb"
+msgid "Lists the original font and the font that will replace it. Select Always to replace the font, even if the original font is installed on your system. Select Screen only to replace the screen font only and never replace the font for printing."
+msgstr "Lists the original font and the font that will replace it. Select Always to replace both the screen font and the printer font, even if the original font is installed on your system. Select Screen only to replace the screen font only and never replace the font for printing."
+
+#. BGoZq
+#: cui/uiconfig/ui/optfontspage.ui:230
+msgctxt "extended_tip | apply"
+msgid "Applies the selected font replacement."
+msgstr "Applies the selected font replacement."
+
+#. sYmaA
+#: cui/uiconfig/ui/optfontspage.ui:249
+msgctxt "extended_tip | delete"
+msgid "Deletes the selected font replacement."
+msgstr "Deletes the selected font replacement."
+
+#. gtiJp
+#: cui/uiconfig/ui/optfontspage.ui:272
+msgctxt "extended_tip | font2"
+msgid "Enter or select the name of the replacement font."
+msgstr "Enter or select the name of the replacement font."
+
+#. SABse
+#: cui/uiconfig/ui/optfontspage.ui:295
+msgctxt "extended_tip | font1"
+msgid "Enter or select the name of the font that you want to replace."
+msgstr "Enter or select the name of the font that you want to replace."
+
+#. k4PCs
+#: cui/uiconfig/ui/optfontspage.ui:306
+msgctxt "extended_tip | replacements"
+msgid "Substitutes a font with a font of your choice. The substitution replaces a font only when it is displayed on screen, or on screen and when printing. The replacement does not change the font settings that are saved in the document."
+msgstr "Substitutes a font with a font of your choice. The substitution only replaces a font when it is displayed on screen or during printing. It does not change the font specified in your document formatting."
+
#. 7ECDC
-#: cui/uiconfig/ui/optfontspage.ui:288
+#: cui/uiconfig/ui/optfontspage.ui:318
msgctxt "optfontspage|usetable"
msgid "_Apply replacement table"
msgstr "_Apply replacement table"
+#. AVB5d
+#: cui/uiconfig/ui/optfontspage.ui:327
+msgctxt "extended_tip | usetable"
+msgid "Enables the font replacement settings that you define."
+msgstr "Enables the font replacement settings that you define."
+
#. wDa4A
-#: cui/uiconfig/ui/optfontspage.ui:310
+#: cui/uiconfig/ui/optfontspage.ui:345
msgctxt "optfontspage|label4"
msgid "Replacement Table"
msgstr "Replacement Table"
#. z93yC
-#: cui/uiconfig/ui/optfontspage.ui:348
+#: cui/uiconfig/ui/optfontspage.ui:383
msgctxt "optfontspage|label8"
msgid "Fon_ts:"
msgstr "Fon_ts:"
#. L9aT3
-#: cui/uiconfig/ui/optfontspage.ui:363
+#: cui/uiconfig/ui/optfontspage.ui:398
msgctxt "optfontspage|label9"
msgid "_Size:"
msgstr "_Size:"
#. KXCQg
-#: cui/uiconfig/ui/optfontspage.ui:378
+#: cui/uiconfig/ui/optfontspage.ui:413
msgctxt "optfontspage|fontname"
msgid "Automatic"
msgstr "Automatic"
+#. LKiV2
+#: cui/uiconfig/ui/optfontspage.ui:417
+msgctxt "extended_tip | fontname"
+msgid "Select the font for the display of HTML and Basic source code."
+msgstr "Select the font for the display of HTML and Basic source code."
+
#. Cc5tn
-#: cui/uiconfig/ui/optfontspage.ui:388
+#: cui/uiconfig/ui/optfontspage.ui:428
msgctxt "optfontspage|nonpropfontonly"
msgid "_Non-proportional fonts only"
msgstr "_Non-proportional fonts only"
+#. aUYNh
+#: cui/uiconfig/ui/optfontspage.ui:437
+msgctxt "extended_tip | nonpropfontonly"
+msgid "Check to display only non-proportional fonts in the Fonts list box."
+msgstr "Mark this check box to display only non-proportional fonts in the Fonts list box."
+
+#. GAiec
+#: cui/uiconfig/ui/optfontspage.ui:454
+msgctxt "extended_tip | fontheight"
+msgid "Select a font size for the display of HTML and Basic source code."
+msgstr "Select a font size for the display of HTML and Basic source code."
+
#. AafuA
-#: cui/uiconfig/ui/optfontspage.ui:424
+#: cui/uiconfig/ui/optfontspage.ui:474
msgctxt "optfontspage|label1"
msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Font Settings for HTML, Basic and SQL Sources"
@@ -11413,234 +11995,360 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Extended tips"
+#. ypuz2
+#: cui/uiconfig/ui/optgeneralpage.ui:44
+msgctxt "extended_tip | exthelp"
+msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
+msgstr "Displays some short help text when you rest the cursor on an icon, a menu command, or a control in a dialogue box."
+
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:50
+#: cui/uiconfig/ui/optgeneralpage.ui:55
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Show \"No offline help installed\" pop-up"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:64
+#: cui/uiconfig/ui/optgeneralpage.ui:69
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Show \"Tip of the Day\" dialogue box on start-up"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:85
+#: cui/uiconfig/ui/optgeneralpage.ui:90
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Help"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:116
+#: cui/uiconfig/ui/optgeneralpage.ui:121
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Use %PRODUCTNAME dialogue boxes"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:150
+#: cui/uiconfig/ui/optgeneralpage.ui:155
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Save Dialogue Boxes"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:181
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Use %PRODUCTNAME _dialogue boxes"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:191
+#: cui/uiconfig/ui/optgeneralpage.ui:196
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Print Dialogue Boxes"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:217
+#: cui/uiconfig/ui/optgeneralpage.ui:222
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printing sets \"document modified\" status"
+#. kPEpF
+#: cui/uiconfig/ui/optgeneralpage.ui:231
+msgctxt "extended_tip | docstatus"
+msgid "Specifies whether the printing of the document counts as a modification."
+msgstr "Specifies whether the printing of the document counts as a modification."
+
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:232
+#: cui/uiconfig/ui/optgeneralpage.ui:242
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Document Status"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:275
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpret as years between "
+#. huNG6
+#: cui/uiconfig/ui/optgeneralpage.ui:293
+msgctxt "extended_tip | year"
+msgid "Defines a date range, within which the system recognizes a two-digit year."
+msgstr "Defines a date range, within which the system recognises a two-digit year."
+
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "and "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:306
+#: cui/uiconfig/ui/optgeneralpage.ui:321
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Year (Two Digits)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:336
+#: cui/uiconfig/ui/optgeneralpage.ui:351
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Collect usage data and send it to The Document Foundation"
+#. xkgEo
+#: cui/uiconfig/ui/optgeneralpage.ui:361
+msgctxt "extended_tip | collectusageinfo"
+msgid "Send usage data to help The Document Foundation improve the software usability."
+msgstr "Send usage data to help The Document Foundation improve the software usability."
+
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:352
+#: cui/uiconfig/ui/optgeneralpage.ui:372
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Sen_d crash reports to The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:374
+#: cui/uiconfig/ui/optgeneralpage.ui:394
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Help Improve %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:405
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Load %PRODUCTNAME during system start-up"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:420
+#: cui/uiconfig/ui/optgeneralpage.ui:440
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Enable systray Quickstarter"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:441
+#: cui/uiconfig/ui/optgeneralpage.ui:461
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:472
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Windows Default apps"
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:511
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME File Associations"
+#. coFbL
+#: cui/uiconfig/ui/optgeneralpage.ui:525
+msgctxt "extended_tip | OptGeneralPage"
+msgid "Specifies the general settings for %PRODUCTNAME."
+msgstr "Specifies the general settings for %PRODUCTNAME."
+
#. FsiDE
#: cui/uiconfig/ui/opthtmlpage.ui:89
msgctxt "opthtmlpage|size7FT"
msgid "Size _7:"
msgstr "Size _7:"
+#. eSVmw
+#: cui/uiconfig/ui/opthtmlpage.ui:105
+msgctxt "extended_tip|size7"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. SfHVG
-#: cui/uiconfig/ui/opthtmlpage.ui:113
+#: cui/uiconfig/ui/opthtmlpage.ui:118
msgctxt "opthtmlpage|size6FT"
msgid "Size _6:"
msgstr "Size _6:"
+#. wWFqw
+#: cui/uiconfig/ui/opthtmlpage.ui:134
+msgctxt "extended_tip|size6"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. mbGGc
-#: cui/uiconfig/ui/opthtmlpage.ui:137
+#: cui/uiconfig/ui/opthtmlpage.ui:147
msgctxt "opthtmlpage|size5FT"
msgid "Size _5:"
msgstr "Size _5:"
+#. GAy87
+#: cui/uiconfig/ui/opthtmlpage.ui:163
+msgctxt "extended_tip|size5"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. PwaSa
-#: cui/uiconfig/ui/opthtmlpage.ui:161
+#: cui/uiconfig/ui/opthtmlpage.ui:176
msgctxt "opthtmlpage|size4FT"
msgid "Size _4:"
msgstr "Size _4:"
+#. QEA47
+#: cui/uiconfig/ui/opthtmlpage.ui:192
+msgctxt "extended_tip|size4"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. FSRpm
-#: cui/uiconfig/ui/opthtmlpage.ui:185
+#: cui/uiconfig/ui/opthtmlpage.ui:205
msgctxt "opthtmlpage|size3FT"
msgid "Size _3:"
msgstr "Size _3:"
+#. drCYA
+#: cui/uiconfig/ui/opthtmlpage.ui:221
+msgctxt "extended_tip|size3"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. unrKj
-#: cui/uiconfig/ui/opthtmlpage.ui:209
+#: cui/uiconfig/ui/opthtmlpage.ui:234
msgctxt "opthtmlpage|size2FT"
msgid "Size _2:"
msgstr "Size _2:"
+#. tvwUA
+#: cui/uiconfig/ui/opthtmlpage.ui:250
+msgctxt "extended_tip|size2"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. aiSoE
-#: cui/uiconfig/ui/opthtmlpage.ui:233
+#: cui/uiconfig/ui/opthtmlpage.ui:263
msgctxt "opthtmlpage|size1FT"
msgid "Size _1:"
msgstr "Size _1:"
+#. 99HCd
+#: cui/uiconfig/ui/opthtmlpage.ui:279
+msgctxt "extended_tip|size1"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. rRkQd
-#: cui/uiconfig/ui/opthtmlpage.ui:261
+#: cui/uiconfig/ui/opthtmlpage.ui:296
msgctxt "opthtmlpage|label1"
msgid "Font Sizes"
msgstr "Font Sizes"
#. JRQrk
-#: cui/uiconfig/ui/opthtmlpage.ui:310
+#: cui/uiconfig/ui/opthtmlpage.ui:345
msgctxt "opthtmlpage|ignorefontnames"
msgid "Ignore _font settings"
msgstr "Ignore _font settings"
+#. kD39h
+#: cui/uiconfig/ui/opthtmlpage.ui:355
+msgctxt "extended_tip|ignorefontnames"
+msgid "Mark this check box to ignore all font settings when importing. The fonts that were defined in the HTML Page Style will be the fonts that will be used. "
+msgstr "Mark this check box to ignore all font settings when importing. The fonts that were defined in the HTML Page Style will be the fonts that will be used. "
+
#. 7bZSP
-#: cui/uiconfig/ui/opthtmlpage.ui:326
+#: cui/uiconfig/ui/opthtmlpage.ui:366
msgctxt "opthtmlpage|unknowntag"
msgid "_Import unknown HTML tags as fields"
msgstr "_Import unknown HTML tags as fields"
+#. QvehA
+#: cui/uiconfig/ui/opthtmlpage.ui:376
+msgctxt "extended_tip|unknowntag"
+msgid "Mark this check box if you want tags that are not recognized by %PRODUCTNAME to be imported as fields."
+msgstr "Mark this check box if you want tags that are not recognised by %PRODUCTNAME to be imported as fields."
+
#. VFTrU
-#: cui/uiconfig/ui/opthtmlpage.ui:342
+#: cui/uiconfig/ui/opthtmlpage.ui:387
msgctxt "opthtmlpage|numbersenglishus"
msgid "_Use '%ENGLISHUSLOCALE' locale for numbers"
msgstr "_Use '%ENGLISHUSLOCALE' locale for numbers"
+#. c4j5A
+#: cui/uiconfig/ui/opthtmlpage.ui:397
+msgctxt "extended_tip|numbersenglishus"
+msgid "If not checked, numbers will be interpreted according to the setting in Language Settings - Language of - Locale setting in the Options dialog box. If checked, numbers will be interpreted as 'English (USA)' locale."
+msgstr "If not marked, numbers will be interpreted according to the setting in Language Settings - Language of - Locale setting in the Options dialogue box. If marked, numbers will be interpreted using the 'English (USA)' locale."
+
#. Fnsdh
-#: cui/uiconfig/ui/opthtmlpage.ui:364
+#: cui/uiconfig/ui/opthtmlpage.ui:414
msgctxt "opthtmlpage|label2"
msgid "Import"
msgstr "Import"
#. UajLE
-#: cui/uiconfig/ui/opthtmlpage.ui:408
+#: cui/uiconfig/ui/opthtmlpage.ui:458
msgctxt "opthtmlpage|charsetFT"
msgid "Character _set:"
msgstr "Character _set:"
+#. bTGc4
+#: cui/uiconfig/ui/opthtmlpage.ui:476
+msgctxt "extended_tip|charset"
+msgid "Select the appropriate character set for the export"
+msgstr "Select the appropriate character set for the export"
+
#. nJtoS
-#: cui/uiconfig/ui/opthtmlpage.ui:438
+#: cui/uiconfig/ui/opthtmlpage.ui:493
msgctxt "opthtmlpage|savegrflocal"
msgid "_Copy local images to Internet"
msgstr "_Copy local images to Internet"
+#. fPAEu
+#: cui/uiconfig/ui/opthtmlpage.ui:503
+msgctxt "extended_tip|savegrflocal"
+msgid "Mark this check box to automatically upload the embedded pictures to the Internet server when uploading using FTP. Use the Save As dialog to save the document and enter a complete FTP URL as the file name in the Internet."
+msgstr "Mark this check box to automatically upload the embedded pictures to the Internet server when uploading using FTP. Use the Save As dialogue box to save the document and enter a complete FTP URL as the file name in the Internet."
+
#. Xc4iM
-#: cui/uiconfig/ui/opthtmlpage.ui:454
+#: cui/uiconfig/ui/opthtmlpage.ui:514
msgctxt "opthtmlpage|printextension"
msgid "_Print layout"
msgstr "_Print layout"
+#. CMsrc
+#: cui/uiconfig/ui/opthtmlpage.ui:524
+msgctxt "extended_tip|printextension"
+msgid "If you mark this field, the print layout of the current document (for example, table of contents with justified page numbers and dot leaders) is exported as well."
+msgstr "If you mark this field, the print layout of the current document (for example, table of contents with justified page numbers and dot leaders) is exported as well."
+
#. Wwuvt
-#: cui/uiconfig/ui/opthtmlpage.ui:470
+#: cui/uiconfig/ui/opthtmlpage.ui:535
msgctxt "opthtmlpage|starbasicwarning"
msgid "Display _warning"
msgstr "Display _warning"
+#. wArnh
+#: cui/uiconfig/ui/opthtmlpage.ui:546
+msgctxt "extended_tip|starbasicwarning"
+msgid "If this field is marked, when exporting to HTML a warning is shown that %PRODUCTNAME Basic macros will be lost."
+msgstr "If this field is marked, when exporting to HTML a warning is shown that %PRODUCTNAME Basic macros will be lost."
+
#. puyKW
-#: cui/uiconfig/ui/opthtmlpage.ui:487
+#: cui/uiconfig/ui/opthtmlpage.ui:557
msgctxt "opthtmlpage|starbasic"
msgid "LibreOffice _Basic"
msgstr "LibreOffice _Basic"
+#. BtWXE
+#: cui/uiconfig/ui/opthtmlpage.ui:567
+msgctxt "extended_tip|starbasic"
+msgid "Mark this check box to include the %PRODUCTNAME Basic instructions when exporting to HTML format."
+msgstr "Mark this check box to include the %PRODUCTNAME Basic instructions when exporting to HTML format."
+
#. sEnBN
-#: cui/uiconfig/ui/opthtmlpage.ui:509
+#: cui/uiconfig/ui/opthtmlpage.ui:584
msgctxt "opthtmlpage|label3"
msgid "Export"
msgstr "Export"
+#. TKsp4
+#: cui/uiconfig/ui/opthtmlpage.ui:606
+msgctxt "extended_tip|OptHtmlPage"
+msgid "Defines settings for HTML pages."
+msgstr "Defines settings for HTML pages."
+
#. ecN5A
#: cui/uiconfig/ui/optionsdialog.ui:18
msgctxt "optionsdialog|OptionsDialog"
@@ -11648,127 +12356,241 @@ msgid "Options"
msgstr "Options"
#. CgiEq
-#: cui/uiconfig/ui/optjsearchpage.ui:33
+#: cui/uiconfig/ui/optjsearchpage.ui:34
msgctxt "optjsearchpage|matchcase"
msgid "_uppercase/lowercase"
msgstr "_uppercase/lowercase"
+#. HLhzj
+#: cui/uiconfig/ui/optjsearchpage.ui:43
+msgctxt "extended_tip|matchcase"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. MkLv3
-#: cui/uiconfig/ui/optjsearchpage.ui:50
+#: cui/uiconfig/ui/optjsearchpage.ui:54
msgctxt "optjsearchpage|matchfullhalfwidth"
msgid "_full-width/half-width forms"
msgstr "_full-width/half-width forms"
+#. 35mFr
+#: cui/uiconfig/ui/optjsearchpage.ui:63
+msgctxt "extended_tip|matchfullhalfwidth"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. FPFmB
-#: cui/uiconfig/ui/optjsearchpage.ui:67
+#: cui/uiconfig/ui/optjsearchpage.ui:74
msgctxt "optjsearchpage|matchhiraganakatakana"
msgid "_hiragana/katakana"
msgstr "_hiragana/katakana"
+#. LUPFs
+#: cui/uiconfig/ui/optjsearchpage.ui:83
+msgctxt "extended_tip|matchhiraganakatakana"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. vx6x8
-#: cui/uiconfig/ui/optjsearchpage.ui:84
+#: cui/uiconfig/ui/optjsearchpage.ui:94
msgctxt "optjsearchpage|matchcontractions"
msgid "_contractions (yo-on, sokuon)"
msgstr "_contractions (yo-on, sokuon)"
+#. xYeGB
+#: cui/uiconfig/ui/optjsearchpage.ui:103
+msgctxt "extended_tip|matchcontractions"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. DLxj9
-#: cui/uiconfig/ui/optjsearchpage.ui:101
+#: cui/uiconfig/ui/optjsearchpage.ui:114
msgctxt "optjsearchpage|matchminusdashchoon"
msgid "_minus/dash/cho-on"
msgstr "_minus/dash/cho-on"
+#. pkg8E
+#: cui/uiconfig/ui/optjsearchpage.ui:123
+msgctxt "extended_tip|matchminusdashchoon"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. hYq5H
-#: cui/uiconfig/ui/optjsearchpage.ui:118
+#: cui/uiconfig/ui/optjsearchpage.ui:134
msgctxt "optjsearchpage|matchrepeatcharmarks"
msgid "'re_peat character' marks"
msgstr "'re_peat character' marks"
+#. fHHv6
+#: cui/uiconfig/ui/optjsearchpage.ui:143
+msgctxt "extended_tip|matchrepeatcharmarks"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. 62963
-#: cui/uiconfig/ui/optjsearchpage.ui:135
+#: cui/uiconfig/ui/optjsearchpage.ui:154
msgctxt "optjsearchpage|matchvariantformkanji"
msgid "_variant-form kanji (itaiji)"
msgstr "_variant-form kanji (itaiji)"
+#. EQ6FA
+#: cui/uiconfig/ui/optjsearchpage.ui:163
+msgctxt "extended_tip|matchvariantformkanji"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. ghXPH
-#: cui/uiconfig/ui/optjsearchpage.ui:152
+#: cui/uiconfig/ui/optjsearchpage.ui:174
msgctxt "optjsearchpage|matcholdkanaforms"
msgid "_old Kana forms"
msgstr "_old Kana forms"
+#. 2WWSU
+#: cui/uiconfig/ui/optjsearchpage.ui:183
+msgctxt "extended_tip|matcholdkanaforms"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. Wxc7u
-#: cui/uiconfig/ui/optjsearchpage.ui:169
+#: cui/uiconfig/ui/optjsearchpage.ui:194
msgctxt "optjsearchpage|matchdiziduzu"
msgid "_di/zi, du/zu"
msgstr "_di/zi, du/zu"
+#. EBvfD
+#: cui/uiconfig/ui/optjsearchpage.ui:203
+msgctxt "extended_tip|matchdiziduzu"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. mAzGZ
-#: cui/uiconfig/ui/optjsearchpage.ui:186
+#: cui/uiconfig/ui/optjsearchpage.ui:214
msgctxt "optjsearchpage|matchbavahafa"
msgid "_ba/va, ha/fa"
msgstr "_ba/va, ha/fa"
+#. QMJfK
+#: cui/uiconfig/ui/optjsearchpage.ui:223
+msgctxt "extended_tip|matchbavahafa"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. MJAYD
-#: cui/uiconfig/ui/optjsearchpage.ui:203
+#: cui/uiconfig/ui/optjsearchpage.ui:234
msgctxt "optjsearchpage|matchtsithichidhizi"
msgid "_tsi/thi/chi, dhi/zi"
msgstr "_tsi/thi/chi, dhi/zi"
+#. WBzBC
+#: cui/uiconfig/ui/optjsearchpage.ui:243
+msgctxt "extended_tip|matchtsithichidhizi"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. CDA8F
-#: cui/uiconfig/ui/optjsearchpage.ui:220
+#: cui/uiconfig/ui/optjsearchpage.ui:254
msgctxt "optjsearchpage|matchhyuiyubyuvyu"
msgid "h_yu/fyu, byu/vyu"
msgstr "h_yu/fyu, byu/vyu"
+#. ZHDR5
+#: cui/uiconfig/ui/optjsearchpage.ui:263
+msgctxt "extended_tip|matchhyuiyubyuvyu"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. MsCme
-#: cui/uiconfig/ui/optjsearchpage.ui:237
+#: cui/uiconfig/ui/optjsearchpage.ui:274
msgctxt "optjsearchpage|matchseshezeje"
msgid "_se/she, ze/je"
msgstr "_se/she, ze/je"
+#. ZgHGb
+#: cui/uiconfig/ui/optjsearchpage.ui:283
+msgctxt "extended_tip|matchseshezeje"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. nRKqj
-#: cui/uiconfig/ui/optjsearchpage.ui:254
+#: cui/uiconfig/ui/optjsearchpage.ui:294
msgctxt "optjsearchpage|matchiaiya"
msgid "_ia/iya (piano/piyano)"
msgstr "_ia/iya (piano/piyano)"
+#. SANdY
+#: cui/uiconfig/ui/optjsearchpage.ui:303
+msgctxt "extended_tip|matchiaiya"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. 4i3uv
-#: cui/uiconfig/ui/optjsearchpage.ui:271
+#: cui/uiconfig/ui/optjsearchpage.ui:314
msgctxt "optjsearchpage|matchkiku"
msgid "_ki/ku (tekisuto/tekusuto)"
msgstr "_ki/ku (tekisuto/tekusuto)"
+#. s4qyS
+#: cui/uiconfig/ui/optjsearchpage.ui:323
+msgctxt "extended_tip|matchkiku"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. eEXX5
-#: cui/uiconfig/ui/optjsearchpage.ui:288
+#: cui/uiconfig/ui/optjsearchpage.ui:334
msgctxt "optjsearchpage|matchprolongedsoundmark"
msgid "Prolon_ged vowels (ka-/kaa)"
msgstr "Prolon_ged vowels (ka-/kaa)"
+#. rRCUA
+#: cui/uiconfig/ui/optjsearchpage.ui:343
+msgctxt "extended_tip|matchprolongedsoundmark"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Specifies the options to be treated as equal in a search."
+
#. rPGGZ
-#: cui/uiconfig/ui/optjsearchpage.ui:311
+#: cui/uiconfig/ui/optjsearchpage.ui:360
msgctxt "optjsearchpage|label1"
msgid "Treat as Equal"
msgstr "Treat as Equal"
#. wT3mJ
-#: cui/uiconfig/ui/optjsearchpage.ui:345
+#: cui/uiconfig/ui/optjsearchpage.ui:394
msgctxt "optjsearchpage|ignorepunctuation"
msgid "Pu_nctuation characters"
msgstr "Pu_nctuation characters"
+#. zACWR
+#: cui/uiconfig/ui/optjsearchpage.ui:403
+msgctxt "extended_tip|ignorepunctuation"
+msgid "Specifies the characters to be ignored."
+msgstr "Specifies the characters to be ignored."
+
#. 5JD7N
-#: cui/uiconfig/ui/optjsearchpage.ui:362
+#: cui/uiconfig/ui/optjsearchpage.ui:414
msgctxt "optjsearchpage|ignorewhitespace"
msgid "_Whitespace characters"
msgstr "_Whitespace characters"
+#. vyC8h
+#: cui/uiconfig/ui/optjsearchpage.ui:423
+msgctxt "extended_tip|ignorewhitespace"
+msgid "Specifies the characters to be ignored."
+msgstr "Specifies the characters to be ignored."
+
#. W92kS
-#: cui/uiconfig/ui/optjsearchpage.ui:379
+#: cui/uiconfig/ui/optjsearchpage.ui:434
msgctxt "optjsearchpage|ignoremiddledot"
msgid "Midd_le dots"
msgstr "Midd_le dots"
+#. kA2cf
+#: cui/uiconfig/ui/optjsearchpage.ui:443
+msgctxt "extended_tip|ignoremiddledot"
+msgid "Specifies the characters to be ignored."
+msgstr "Specifies the characters to be ignored."
+
#. nZXcM
-#: cui/uiconfig/ui/optjsearchpage.ui:405
+#: cui/uiconfig/ui/optjsearchpage.ui:463
msgctxt "optjsearchpage|label2"
msgid "Ignore"
msgstr "Ignore"
@@ -11779,90 +12601,168 @@ msgctxt "optlanguagespage|label4"
msgid "_User interface:"
msgstr "_User interface:"
+#. PwNF7
+#: cui/uiconfig/ui/optlanguagespage.ui:83
+msgctxt "extended_tip|userinterface"
+msgid "Select the language used for the user interface, for example menus, dialogs, help files. You must have installed at least one additional language pack or a multi-language version of %PRODUCTNAME."
+msgstr "Select the language used for the user interface, for example menus, dialogue boxes, help files. You must have installed at least one additional language pack or a multi-language version of %PRODUCTNAME."
+
#. e8VE3
-#: cui/uiconfig/ui/optlanguagespage.ui:95
+#: cui/uiconfig/ui/optlanguagespage.ui:100
msgctxt "optlanguagespage|label1"
msgid "Language Of"
msgstr "Language Of"
+#. E3UQs
+#: cui/uiconfig/ui/optlanguagespage.ui:156
+msgctxt "extended_tip|westernlanguage"
+msgid "Specifies the language used for the spellcheck function in western alphabets."
+msgstr "Specifies the language used for the spelling check function in western alphabets."
+
+#. oP5CC
+#: cui/uiconfig/ui/optlanguagespage.ui:188
+msgctxt "extended_tip|asianlanguage"
+msgid "Specifies the language used for the spellcheck function in Asian alphabets."
+msgstr "Specifies the language used for the spelling check function in Asian alphabets."
+
+#. cZNNA
+#: cui/uiconfig/ui/optlanguagespage.ui:220
+msgctxt "extended_tip|complexlanguage"
+msgid "Specifies the language for the complex text layout spellcheck."
+msgstr "Specifies the language for the complex text layout spelling check."
+
#. 3JLVm
-#: cui/uiconfig/ui/optlanguagespage.ui:211
+#: cui/uiconfig/ui/optlanguagespage.ui:231
msgctxt "optlanguagespage|currentdoc"
msgid "For the current document only"
msgstr "For the current document only"
+#. Xg3qT
+#: cui/uiconfig/ui/optlanguagespage.ui:241
+msgctxt "extended_tip|currentdoc"
+msgid "Specifies that the settings for default languages are valid only for the current document."
+msgstr "Specifies that the settings for default languages are valid only for the current document."
+
#. zeaKX
-#: cui/uiconfig/ui/optlanguagespage.ui:227
+#: cui/uiconfig/ui/optlanguagespage.ui:252
msgctxt "optlanguagespage|ctlsupport"
msgid "Complex _text layout:"
msgstr "Complex _text layout:"
+#. gTEDf
+#: cui/uiconfig/ui/optlanguagespage.ui:261
+msgctxt "extended_tip|ctlsupport"
+msgid "Activates complex text layout support. You can now modify the settings corresponding to complex text layout in %PRODUCTNAME."
+msgstr "Activates complex text layout support. You can now modify the settings corresponding to complex text layout in %PRODUCTNAME."
+
#. mpLF7
-#: cui/uiconfig/ui/optlanguagespage.ui:242
+#: cui/uiconfig/ui/optlanguagespage.ui:272
msgctxt "optlanguagespage|asiansupport"
msgid "Asian:"
msgstr "Asian:"
+#. GT6AZ
+#: cui/uiconfig/ui/optlanguagespage.ui:281
+msgctxt "extended_tip|asiansupport"
+msgid "Activates Asian languages support. You can now modify the corresponding Asian language settings in %PRODUCTNAME."
+msgstr "Activates Asian languages support. You can now modify the corresponding Asian language settings in %PRODUCTNAME."
+
#. QwDAK
-#: cui/uiconfig/ui/optlanguagespage.ui:259
+#: cui/uiconfig/ui/optlanguagespage.ui:294
msgctxt "optlanguagespage|western"
msgid "Western:"
msgstr "Western:"
#. K62Ex
-#: cui/uiconfig/ui/optlanguagespage.ui:280
+#: cui/uiconfig/ui/optlanguagespage.ui:315
msgctxt "optlanguagespage|label2"
msgid "Default Languages for Documents"
msgstr "Default Languages for Documents"
#. 25J4E
-#: cui/uiconfig/ui/optlanguagespage.ui:311
+#: cui/uiconfig/ui/optlanguagespage.ui:346
msgctxt "optlanguagespage|ignorelanguagechange"
msgid "Ignore s_ystem input language"
msgstr "Ignore s_ystem input language"
+#. CCumn
+#: cui/uiconfig/ui/optlanguagespage.ui:355
+msgctxt "extended_tip|ignorelanguagechange"
+msgid "Indicates whether changes to the system input language/keyboard will be ignored. If ignored, when new text is typed that text will follow the language of the document or current paragraph, not the current system language."
+msgstr "Indicates whether changes to the system input language/keyboard will be ignored. If ignored, when new text is typed that text will follow the language of the document or current paragraph, not the current system language."
+
#. 83eTv
-#: cui/uiconfig/ui/optlanguagespage.ui:332
+#: cui/uiconfig/ui/optlanguagespage.ui:372
msgctxt "optlanguagespage|label3"
msgid "Enhanced Language Support"
msgstr "Enhanced Language Support"
#. XqCkq
-#: cui/uiconfig/ui/optlanguagespage.ui:369
+#: cui/uiconfig/ui/optlanguagespage.ui:409
msgctxt "optlanguagespage|localesettingFT"
msgid "Locale setting:"
msgstr "Locale setting:"
#. Zyao3
-#: cui/uiconfig/ui/optlanguagespage.ui:383
+#: cui/uiconfig/ui/optlanguagespage.ui:423
msgctxt "optlanguagespage|label6"
msgid "Decimal separator key:"
msgstr "Decimal separator key:"
#. cuqUB
-#: cui/uiconfig/ui/optlanguagespage.ui:397
+#: cui/uiconfig/ui/optlanguagespage.ui:437
msgctxt "optlanguagespage|defaultcurrency"
msgid "_Default currency:"
msgstr "_Default currency:"
#. XmgPh
-#: cui/uiconfig/ui/optlanguagespage.ui:411
+#: cui/uiconfig/ui/optlanguagespage.ui:451
msgctxt "optlanguagespage|dataaccpatterns"
msgid "Date acceptance _patterns:"
msgstr "Date acceptance _patterns:"
+#. yBkAN
+#: cui/uiconfig/ui/optlanguagespage.ui:469
+msgctxt "extended_tip|localesetting"
+msgid "Specifies the locale setting of the country setting. This influences settings for numbering, currency and units of measure."
+msgstr "Specifies the locale setting of the country setting. This influences settings for numbering, currency and units of measure."
+
+#. XqESm
+#: cui/uiconfig/ui/optlanguagespage.ui:486
+msgctxt "extended_tip|currencylb"
+msgid "Specifies the default currency that is used for the currency format and the currency fields."
+msgstr "Specifies the default currency that is used for the currency format and the currency fields."
+
+#. eNFJn
+#: cui/uiconfig/ui/optlanguagespage.ui:504
+msgctxt "extended_tip|datepatterns"
+msgid "Specifies the date acceptance patterns for the current locale. Calc spreadsheet and Writer table cell input needs to match locale dependent date acceptance patterns before it is recognized as a valid date."
+msgstr "Specifies the date acceptance patterns for the current locale. Calc spreadsheet and Writer table cell input needs to match locale dependent date acceptance patterns before it is recognised as a valid date."
+
#. WoNAA
-#: cui/uiconfig/ui/optlanguagespage.ui:460
+#: cui/uiconfig/ui/optlanguagespage.ui:515
msgctxt "optlanguagespage|decimalseparator"
msgid "_Same as locale setting ( %1 )"
msgstr "_Same as locale setting ( %1 )"
+#. G5VXy
+#: cui/uiconfig/ui/optlanguagespage.ui:524
+msgctxt "extended_tip|decimalseparator"
+msgid "Specifies to use the decimal separator key that is set in your system when you press the respective key on the number pad."
+msgstr "Specifies to use the decimal separator key that is set in your system when you press the respective key on the number pad."
+
#. BGtpx
-#: cui/uiconfig/ui/optlanguagespage.ui:481
+#: cui/uiconfig/ui/optlanguagespage.ui:541
msgctxt "optlanguagespage|label7"
msgid "Formats"
msgstr "Formats"
+#. HASiD
+#: cui/uiconfig/ui/optlanguagespage.ui:555
+msgctxt "extended_tip|OptLanguagesPage"
+msgid "Defines the default languages and some other locale settings for documents."
+msgstr "Defines the default languages and some other locale settings for documents."
+
#. CgUDR
#: cui/uiconfig/ui/optlingupage.ui:133
msgctxt "lingumodules"
@@ -12049,102 +12949,156 @@ msgctxt "optonlineupdatepage|autocheck"
msgid "_Check for updates automatically"
msgstr "_Check for updates automatically"
+#. k3qNc
+#: cui/uiconfig/ui/optonlineupdatepage.ui:43
+msgctxt "extended_tip|autocheck"
+msgid "Mark to check for online updates periodically, then select the time interval how often %PRODUCTNAME will check for online updates."
+msgstr "Mark to check for online updates periodically, then select the time interval how often %PRODUCTNAME will check for online updates."
+
#. Hbe2C
-#: cui/uiconfig/ui/optonlineupdatepage.ui:60
+#: cui/uiconfig/ui/optonlineupdatepage.ui:64
msgctxt "optonlineupdatepage|everyday"
msgid "Every da_y"
msgstr "Every da_y"
+#. yFD8D
+#: cui/uiconfig/ui/optonlineupdatepage.ui:74
+msgctxt "extended_tip|everyday"
+msgid "A check will be performed once a day."
+msgstr "A check will be performed once a day."
+
#. 3zd7m
-#: cui/uiconfig/ui/optonlineupdatepage.ui:76
+#: cui/uiconfig/ui/optonlineupdatepage.ui:85
msgctxt "optonlineupdatepage|everyweek"
msgid "Every _week"
msgstr "Every _week"
+#. Xcj78
+#: cui/uiconfig/ui/optonlineupdatepage.ui:95
+msgctxt "extended_tip|everyweek"
+msgid "A check will be performed once a week. This is the default setting."
+msgstr "A check will be performed once a week. This is the default setting."
+
#. 29exv
-#: cui/uiconfig/ui/optonlineupdatepage.ui:92
+#: cui/uiconfig/ui/optonlineupdatepage.ui:106
msgctxt "optonlineupdatepage|everymonth"
msgid "Every _month"
msgstr "Every _month"
+#. oEWBt
+#: cui/uiconfig/ui/optonlineupdatepage.ui:116
+msgctxt "extended_tip|everymonth"
+msgid "A check will be performed once a month."
+msgstr "A check will be performed once a month."
+
#. pGuvH
-#: cui/uiconfig/ui/optonlineupdatepage.ui:117
+#: cui/uiconfig/ui/optonlineupdatepage.ui:136
msgctxt "optonlineupdatepage|checknow"
msgid "Check _Now"
msgstr "Check _Now"
+#. 4DhgF
+#: cui/uiconfig/ui/optonlineupdatepage.ui:144
+msgctxt "extended_tip|checknow"
+msgid "A check will be performed now."
+msgstr "A check will be performed now."
+
#. UvuAC
-#: cui/uiconfig/ui/optonlineupdatepage.ui:145
+#: cui/uiconfig/ui/optonlineupdatepage.ui:169
msgctxt "optonlineupdatepage|lastchecked"
msgid "Last checked: %DATE%, %TIME%"
msgstr "Last checked: %DATE%, %TIME%"
#. rw57A
-#: cui/uiconfig/ui/optonlineupdatepage.ui:158
+#: cui/uiconfig/ui/optonlineupdatepage.ui:182
msgctxt "optonlineupdatepage|neverchecked"
msgid "Last checked: Not yet"
msgstr "Last checked: Not yet"
#. DWDdu
-#: cui/uiconfig/ui/optonlineupdatepage.ui:206
+#: cui/uiconfig/ui/optonlineupdatepage.ui:230
msgctxt "optonlineupdatepage|autodownload"
msgid "_Download updates automatically"
msgstr "_Download updates automatically"
+#. 5TCn4
+#: cui/uiconfig/ui/optonlineupdatepage.ui:239
+msgctxt "extended_tip|autodownload"
+msgid "Enable the automatic download of updates to the specified folder."
+msgstr "Enable the automatic download of updates to the specified folder."
+
#. AmVMh
-#: cui/uiconfig/ui/optonlineupdatepage.ui:233
+#: cui/uiconfig/ui/optonlineupdatepage.ui:262
msgctxt "optonlineupdatepage|changepath"
msgid "Ch_ange..."
msgstr "Ch_ange..."
+#. mCu2A
+#: cui/uiconfig/ui/optonlineupdatepage.ui:270
+msgctxt "extended_tip|changepath"
+msgid "Click to select the destination folder for downloaded files."
+msgstr ""
+
#. iCVFj
-#: cui/uiconfig/ui/optonlineupdatepage.ui:254
+#: cui/uiconfig/ui/optonlineupdatepage.ui:288
msgctxt "optonlineupdatepage|destpathlabel"
msgid "Download destination:"
msgstr "Download destination:"
+#. j2D7W
+#: cui/uiconfig/ui/optonlineupdatepage.ui:292
+msgctxt "extended_tip|destpathlabel"
+msgid "Click to select the destination folder for downloaded files."
+msgstr ""
+
#. vDRC5
-#: cui/uiconfig/ui/optonlineupdatepage.ui:299
+#: cui/uiconfig/ui/optonlineupdatepage.ui:338
msgctxt "optonlineupdatepage|labeldest"
msgid "Download Destination"
msgstr "Download Destination"
#. JqAh4
-#: cui/uiconfig/ui/optonlineupdatepage.ui:333
+#: cui/uiconfig/ui/optonlineupdatepage.ui:372
msgctxt "optonlineupdatepage|extrabits"
msgid "_Send OS version and basic hardware information"
msgstr "_Send OS version and basic hardware information"
#. b95Sc
-#: cui/uiconfig/ui/optonlineupdatepage.ui:337
+#: cui/uiconfig/ui/optonlineupdatepage.ui:376
msgctxt "optonlineupdatepage|extrabits|tooltip_text"
msgid "This information lets us make optimizations for your hardware and operating system."
msgstr "This information lets us make optimisations for your hardware and operating system."
#. f2Wtr
-#: cui/uiconfig/ui/optonlineupdatepage.ui:362
+#: cui/uiconfig/ui/optonlineupdatepage.ui:401
msgctxt "optonlineupdatepage|useragent_label"
msgid "User Agent:"
msgstr "User Agent:"
#. agWbu
-#: cui/uiconfig/ui/optonlineupdatepage.ui:374
+#: cui/uiconfig/ui/optonlineupdatepage.ui:413
msgctxt "optonlineupdatepage|useragent_changed"
msgid "Hit apply to update"
msgstr "Hit apply to update"
#. ZC9EF
-#: cui/uiconfig/ui/optonlineupdatepage.ui:412
+#: cui/uiconfig/ui/optonlineupdatepage.ui:451
msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr "User Agent"
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:470
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "Online Update Options"
+#. aJHdb
+#: cui/uiconfig/ui/optonlineupdatepage.ui:478
+msgctxt "extended_tip|OptOnlineUpdatePage"
+msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
+msgstr "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
+
#. QYxCN
#: cui/uiconfig/ui/optopenclpage.ui:29
msgctxt "optopenclpage|useopencl"
@@ -12235,78 +13189,132 @@ msgctxt "optproxypage|label2"
msgid "Proxy s_erver:"
msgstr "Proxy s_erver:"
+#. KLjce
+#: cui/uiconfig/ui/optproxypage.ui:49
+msgctxt "extended_tip|http"
+msgid "Type the name of the proxy server for HTTP."
+msgstr "Type the name of the proxy server for HTTP."
+
+#. 4Aszp
+#: cui/uiconfig/ui/optproxypage.ui:67
+msgctxt "extended_tip|https"
+msgid "Type the name of the proxy server for HTTPS. Type the port in the right-hand field."
+msgstr "Type the name of the proxy server for HTTPS. Type the port in the right-hand field."
+
+#. wtMPj
+#: cui/uiconfig/ui/optproxypage.ui:85
+msgctxt "extended_tip|ftp"
+msgid "Type the name of the proxy server for FTP."
+msgstr "Type the name of the proxy server for FTP."
+
+#. 6oaAC
+#: cui/uiconfig/ui/optproxypage.ui:103
+msgctxt "extended_tip|noproxy"
+msgid "Specifies the names of the servers that do not require any proxy servers, separated by semicolons."
+msgstr "Specifies the names of the servers that do not require any proxy servers, separated by semicolons."
+
+#. DyExz
+#: cui/uiconfig/ui/optproxypage.ui:123
+msgctxt "extended_tip|httpport"
+msgid "Type the port for the corresponding proxy server."
+msgstr "Type the port for the corresponding proxy server."
+
+#. 5RqLF
+#: cui/uiconfig/ui/optproxypage.ui:143
+msgctxt "extended_tip|httpsport"
+msgid "Type the port for the corresponding proxy server."
+msgstr "Type the port for the corresponding proxy server."
+
+#. sTzye
+#: cui/uiconfig/ui/optproxypage.ui:163
+msgctxt "extended_tip|ftpport"
+msgid "Type the port for the corresponding proxy server."
+msgstr "Type the port for the corresponding proxy server."
+
#. LBWG4
-#: cui/uiconfig/ui/optproxypage.ui:142
+#: cui/uiconfig/ui/optproxypage.ui:177
msgctxt "optproxypage|proxymode"
msgid "None"
msgstr "None"
#. 9BdbA
-#: cui/uiconfig/ui/optproxypage.ui:143
+#: cui/uiconfig/ui/optproxypage.ui:178
msgctxt "optproxypage|proxymode"
msgid "System"
msgstr "System"
#. 8D2Di
-#: cui/uiconfig/ui/optproxypage.ui:144
+#: cui/uiconfig/ui/optproxypage.ui:179
msgctxt "optproxypage|proxymode"
msgid "Manual"
msgstr "Manual"
+#. k9TRd
+#: cui/uiconfig/ui/optproxypage.ui:183
+msgctxt "extended_tip|proxymode"
+msgid "Specifies the type of proxy definition."
+msgstr "Specifies the type of proxy definition."
+
#. pkdvs
-#: cui/uiconfig/ui/optproxypage.ui:156
+#: cui/uiconfig/ui/optproxypage.ui:196
msgctxt "optproxypage|httpft"
msgid "HT_TP proxy:"
msgstr "HT_TP proxy:"
#. dGMMs
-#: cui/uiconfig/ui/optproxypage.ui:170
+#: cui/uiconfig/ui/optproxypage.ui:210
msgctxt "optproxypage|httpportft"
msgid "_Port:"
msgstr "_Port:"
#. 5tuq7
-#: cui/uiconfig/ui/optproxypage.ui:183
+#: cui/uiconfig/ui/optproxypage.ui:223
msgctxt "optproxypage|httpsft"
msgid "HTTP_S proxy:"
msgstr "HTTP_S proxy:"
#. egcgL
-#: cui/uiconfig/ui/optproxypage.ui:197
+#: cui/uiconfig/ui/optproxypage.ui:237
msgctxt "optproxypage|ftpft"
msgid "_FTP proxy:"
msgstr "_FTP proxy:"
#. ZaUmG
-#: cui/uiconfig/ui/optproxypage.ui:211
+#: cui/uiconfig/ui/optproxypage.ui:251
msgctxt "optproxypage|noproxyft"
msgid "_No proxy for:"
msgstr "_No proxy for:"
#. UynC6
-#: cui/uiconfig/ui/optproxypage.ui:225
+#: cui/uiconfig/ui/optproxypage.ui:265
msgctxt "optproxypage|httpsportft"
msgid "P_ort:"
msgstr "P_ort:"
#. kmBDu
-#: cui/uiconfig/ui/optproxypage.ui:238
+#: cui/uiconfig/ui/optproxypage.ui:278
msgctxt "optproxypage|ftpportft"
msgid "P_ort:"
msgstr "P_ort:"
#. RW6E4
-#: cui/uiconfig/ui/optproxypage.ui:251
+#: cui/uiconfig/ui/optproxypage.ui:291
msgctxt "optproxypage|noproxydesc"
msgid "Separator ;"
msgstr "Separator ;"
#. FzAg6
-#: cui/uiconfig/ui/optproxypage.ui:274
+#: cui/uiconfig/ui/optproxypage.ui:314
msgctxt "optproxypage|label1"
msgid "Settings"
msgstr "Settings"
+#. S7T5C
+#: cui/uiconfig/ui/optproxypage.ui:322
+msgctxt "extended_tip|OptProxyPage"
+msgid "Specifies the type of proxy definition."
+msgstr "Specifies the type of proxy definition."
+
#. Cdbvg
#: cui/uiconfig/ui/optsavepage.ui:36
msgctxt "optsavepage|load_docprinter"
@@ -12584,68 +13592,92 @@ msgctxt "optsecuritypage|tsas"
msgid "_TSAs..."
msgstr "_TSAs..."
+#. Wzygs
+#: cui/uiconfig/ui/optsecuritypage.ui:56
+msgctxt "extended_tip|tsas"
+msgid "Opens the Time Stamping Authority URLs dialog."
+msgstr ""
+
#. vrbum
-#: cui/uiconfig/ui/optsecuritypage.ui:68
+#: cui/uiconfig/ui/optsecuritypage.ui:73
msgctxt "optsecuritypage|label10"
msgid "TSAs"
msgstr "TSAs"
#. dgPTb
-#: cui/uiconfig/ui/optsecuritypage.ui:105
+#: cui/uiconfig/ui/optsecuritypage.ui:110
msgctxt "optsecuritypage|label7"
msgid "Select the Network Security Services certificate directory to use for digital signatures."
msgstr "Select the Network Security Services certificate directory to use for digital signatures."
#. DPGqn
-#: cui/uiconfig/ui/optsecuritypage.ui:118
+#: cui/uiconfig/ui/optsecuritypage.ui:123
msgctxt "optsecuritypage|cert"
msgid "_Certificate..."
msgstr "_Certificate..."
+#. GFX6B
+#: cui/uiconfig/ui/optsecuritypage.ui:131
+msgctxt "extended_tip|cert"
+msgid "Opens the Certificate Path dialog."
+msgstr "Opens the Certificate Path dialogue box."
+
#. UCYi2
-#: cui/uiconfig/ui/optsecuritypage.ui:138
+#: cui/uiconfig/ui/optsecuritypage.ui:148
msgctxt "optsecuritypage|label8"
msgid "Certificate Path"
msgstr "Certificate Path"
#. pDQrj
-#: cui/uiconfig/ui/optsecuritypage.ui:175
+#: cui/uiconfig/ui/optsecuritypage.ui:185
msgctxt "optsecuritypage|label5"
msgid "Adjust the security level for executing macros and specify trusted macro developers."
msgstr "Adjust the security level for executing macros and specify trusted macro developers."
#. wBcDQ
-#: cui/uiconfig/ui/optsecuritypage.ui:188
+#: cui/uiconfig/ui/optsecuritypage.ui:198
msgctxt "optsecuritypage|macro"
msgid "Macro Securit_y..."
msgstr "Macro Securit_y..."
+#. eGAGp
+#: cui/uiconfig/ui/optsecuritypage.ui:206
+msgctxt "extended_tip|macro"
+msgid "Opens the Macro Security dialog."
+msgstr "Opens the Macro Security dialogue box."
+
#. rDJXk
-#: cui/uiconfig/ui/optsecuritypage.ui:208
+#: cui/uiconfig/ui/optsecuritypage.ui:223
msgctxt "optsecuritypage|label3"
msgid "Macro Security"
msgstr "Macro Security"
#. UGTda
-#: cui/uiconfig/ui/optsecuritypage.ui:248
+#: cui/uiconfig/ui/optsecuritypage.ui:263
msgctxt "optsecuritypage|savepassword"
msgid "Persistently _save passwords for web connections"
msgstr "Persistently _save passwords for web connections"
+#. RHiBv
+#: cui/uiconfig/ui/optsecuritypage.ui:272
+msgctxt "extended_tip|savepassword"
+msgid "If enabled, %PRODUCTNAME will securely store all passwords that you use to access files from web servers. You can retrieve the passwords from the list after you enter the master password."
+msgstr "If enabled, %PRODUCTNAME will securely store all passwords that you use to access files from web servers. You can retrieve the passwords from the list after you enter the master password."
+
#. Gyqwf
-#: cui/uiconfig/ui/optsecuritypage.ui:275
+#: cui/uiconfig/ui/optsecuritypage.ui:295
msgctxt "optsecuritypage|usemasterpassword"
msgid "Protected _by a master password (recommended)"
msgstr "Protected _by a master password (recommended)"
#. ipcrn
-#: cui/uiconfig/ui/optsecuritypage.ui:293
+#: cui/uiconfig/ui/optsecuritypage.ui:313
msgctxt "optsecuritypage|masterpasswordtext"
msgid "Passwords are protected by a master password. You will be asked to enter it once per session, if %PRODUCTNAME retrieves a password from the protected password list."
msgstr "Passwords are protected by a master password. You will be asked to enter it once per session, if %PRODUCTNAME retrieves a password from the protected password list."
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:309
+#: cui/uiconfig/ui/optsecuritypage.ui:329
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -12657,41 +13689,65 @@ msgstr ""
"Do you want to delete password list and reset master password?"
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:347
+#: cui/uiconfig/ui/optsecuritypage.ui:367
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "Connect_ions..."
+#. GLEjB
+#: cui/uiconfig/ui/optsecuritypage.ui:375
+msgctxt "extended_tip|connections"
+msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
+msgstr "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialogue box."
+
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:396
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "_Master Password..."
+#. w3TQo
+#: cui/uiconfig/ui/optsecuritypage.ui:404
+msgctxt "extended_tip|masterpassword"
+msgid "Opens the Enter Master Password dialog."
+msgstr "Opens the Enter Master Password dialogue box."
+
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:403
+#: cui/uiconfig/ui/optsecuritypage.ui:433
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr "Passwords for Web Connections"
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:440
+#: cui/uiconfig/ui/optsecuritypage.ui:470
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr "Adjust security related options and define warnings for hidden information in documents. "
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:453
+#: cui/uiconfig/ui/optsecuritypage.ui:483
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "O_ptions..."
+#. pepKZ
+#: cui/uiconfig/ui/optsecuritypage.ui:491
+msgctxt "extended_tip|options"
+msgid "Opens the \"Security Options and Warnings\" dialog."
+msgstr "Opens the \"Security Options and Warnings\" dialogue box."
+
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:473
+#: cui/uiconfig/ui/optsecuritypage.ui:508
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Security Options and Warnings"
+#. rwtuC
+#: cui/uiconfig/ui/optsecuritypage.ui:522
+msgctxt "extended_tip|OptSecurityPage"
+msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
+msgstr "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
+
#. FPuvb
#: cui/uiconfig/ui/optuserpage.ui:34
msgctxt "optuserpage|companyft"
@@ -13166,308 +14222,380 @@ msgctxt "optviewpage|mousepos"
msgid "No automatic positioning"
msgstr "No automatic positioning"
+#. pDN23
+#: cui/uiconfig/ui/optviewpage.ui:87
+msgctxt "extended_tip | mousepos"
+msgid "Specifies if and how the mouse pointer will be positioned in newly opened dialogs."
+msgstr "Specifies if and how the mouse pointer will be positioned in newly opened dialogue boxes."
+
#. GCAp5
-#: cui/uiconfig/ui/optviewpage.ui:98
+#: cui/uiconfig/ui/optviewpage.ui:103
msgctxt "optviewpage|mousemiddle"
msgid "No function"
msgstr "No function"
#. 2b59y
-#: cui/uiconfig/ui/optviewpage.ui:99
+#: cui/uiconfig/ui/optviewpage.ui:104
msgctxt "optviewpage|mousemiddle"
msgid "Automatic scrolling"
msgstr "Automatic scrolling"
#. 8ELrc
-#: cui/uiconfig/ui/optviewpage.ui:100
+#: cui/uiconfig/ui/optviewpage.ui:105
msgctxt "optviewpage|mousemiddle"
msgid "Paste clipboard"
msgstr "Paste clipboard"
+#. DeQ72
+#: cui/uiconfig/ui/optviewpage.ui:109
+msgctxt "extended_tip | mousemiddle"
+msgid "Defines the function of the middle mouse button."
+msgstr "Defines the function of the middle mouse button."
+
#. NbJKy
-#: cui/uiconfig/ui/optviewpage.ui:116
+#: cui/uiconfig/ui/optviewpage.ui:126
msgctxt "optviewpage|label4"
msgid "Mouse"
msgstr "Mouse"
#. crQSQ
-#: cui/uiconfig/ui/optviewpage.ui:154
+#: cui/uiconfig/ui/optviewpage.ui:164
msgctxt "optviewpage|label13"
msgid "Menu icons:"
msgstr "Menu icons:"
#. XKRM7
-#: cui/uiconfig/ui/optviewpage.ui:170
+#: cui/uiconfig/ui/optviewpage.ui:180
msgctxt "optviewpage|menuicons"
msgid "Automatic"
msgstr "Automatic"
#. Fbyi9
-#: cui/uiconfig/ui/optviewpage.ui:171
+#: cui/uiconfig/ui/optviewpage.ui:181
msgctxt "optviewpage|menuicons"
msgid "Hide"
msgstr "Hide"
#. WTgFx
-#: cui/uiconfig/ui/optviewpage.ui:172
+#: cui/uiconfig/ui/optviewpage.ui:182
msgctxt "optviewpage|menuicons"
msgid "Show"
msgstr "Show"
+#. CpRAh
+#: cui/uiconfig/ui/optviewpage.ui:186
+msgctxt "extended_tip | menuicons"
+msgid "Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes."
+msgstr "Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes."
+
#. evVAC
-#: cui/uiconfig/ui/optviewpage.ui:197
+#: cui/uiconfig/ui/optviewpage.ui:212
msgctxt "optviewpage|contextmenushortcuts"
msgid "Automatic"
msgstr "Automatic"
#. 36Dg2
-#: cui/uiconfig/ui/optviewpage.ui:198
+#: cui/uiconfig/ui/optviewpage.ui:213
msgctxt "optviewpage|contextmenushortcuts"
msgid "Hide"
msgstr "Hide"
#. aE3Cq
-#: cui/uiconfig/ui/optviewpage.ui:199
+#: cui/uiconfig/ui/optviewpage.ui:214
msgctxt "optviewpage|contextmenushortcuts"
msgid "Show"
msgstr "Show"
#. ZutFR
-#: cui/uiconfig/ui/optviewpage.ui:211
+#: cui/uiconfig/ui/optviewpage.ui:226
msgctxt "optviewpage|label10"
msgid "Shortcuts:"
msgstr "Shortcuts:"
#. EWdHF
-#: cui/uiconfig/ui/optviewpage.ui:235
+#: cui/uiconfig/ui/optviewpage.ui:250
msgctxt "optviewpage|label3"
msgid "Visibility"
msgstr "Visibility"
#. LxFLY
-#: cui/uiconfig/ui/optviewpage.ui:274
+#: cui/uiconfig/ui/optviewpage.ui:289
msgctxt "optviewpage|notebookbariconsize"
msgid "Automatic"
msgstr "Automatic"
#. oKQEA
-#: cui/uiconfig/ui/optviewpage.ui:275
+#: cui/uiconfig/ui/optviewpage.ui:290
msgctxt "optviewpage|notebookbariconsize"
msgid "Small"
msgstr "Small"
#. JHk7X
-#: cui/uiconfig/ui/optviewpage.ui:276
+#: cui/uiconfig/ui/optviewpage.ui:291
msgctxt "optviewpage|notebookbariconsize"
msgid "Large"
msgstr "Large"
+#. E7vjR
+#: cui/uiconfig/ui/optviewpage.ui:295
+msgctxt "extended_tip | notebookbariconsize"
+msgid "Specifies the display size of notebook bar icons."
+msgstr "Specifies the display size of notebook bar icons."
+
#. G8qAD
-#: cui/uiconfig/ui/optviewpage.ui:288
+#: cui/uiconfig/ui/optviewpage.ui:308
msgctxt "optviewpage|label7"
msgid "_Notebookbar:"
msgstr "_Notebookbar:"
#. CsRM4
-#: cui/uiconfig/ui/optviewpage.ui:304
+#: cui/uiconfig/ui/optviewpage.ui:324
msgctxt "optviewpage|sidebariconsize"
msgid "Automatic"
msgstr "Automatic"
#. wMYTk
-#: cui/uiconfig/ui/optviewpage.ui:305
+#: cui/uiconfig/ui/optviewpage.ui:325
msgctxt "optviewpage|sidebariconsize"
msgid "Small"
msgstr "Small"
#. AFBcQ
-#: cui/uiconfig/ui/optviewpage.ui:306
+#: cui/uiconfig/ui/optviewpage.ui:326
msgctxt "optviewpage|sidebariconsize"
msgid "Large"
msgstr "Large"
+#. W8yUi
+#: cui/uiconfig/ui/optviewpage.ui:330
+msgctxt "extended_tip | sidebariconsize"
+msgid "Specifies the display size of sidebar icons."
+msgstr "Specifies the display size of sidebar icons."
+
#. kPSBA
-#: cui/uiconfig/ui/optviewpage.ui:318
+#: cui/uiconfig/ui/optviewpage.ui:343
msgctxt "optviewpage|label9"
msgid "Sidebar:"
msgstr "Sidebar:"
#. R5bS2
-#: cui/uiconfig/ui/optviewpage.ui:334
+#: cui/uiconfig/ui/optviewpage.ui:359
msgctxt "optviewpage|iconsize"
msgid "Automatic"
msgstr "Automatic"
#. LEpgg
-#: cui/uiconfig/ui/optviewpage.ui:335
+#: cui/uiconfig/ui/optviewpage.ui:360
msgctxt "optviewpage|iconsize"
msgid "Small"
msgstr "Small"
#. q4LX3
-#: cui/uiconfig/ui/optviewpage.ui:336
+#: cui/uiconfig/ui/optviewpage.ui:361
msgctxt "optviewpage|iconsize"
msgid "Large"
msgstr "Large"
#. oYDs8
-#: cui/uiconfig/ui/optviewpage.ui:337
+#: cui/uiconfig/ui/optviewpage.ui:362
msgctxt "optviewpage|iconsize"
msgid "Extra Large"
msgstr "Extra Large"
+#. bhmh9
+#: cui/uiconfig/ui/optviewpage.ui:366
+msgctxt "extended_tip | iconsize"
+msgid "Specifies the display size of toolbar icons."
+msgstr "Specifies the display size of toolbar icons."
+
#. PdeBj
-#: cui/uiconfig/ui/optviewpage.ui:349
+#: cui/uiconfig/ui/optviewpage.ui:379
msgctxt "optviewpage|label8"
msgid "Toolbar:"
msgstr "Toolbar:"
#. hZsaQ
-#: cui/uiconfig/ui/optviewpage.ui:367
+#: cui/uiconfig/ui/optviewpage.ui:397
msgctxt "optviewpage|label1"
msgid "Icon size"
msgstr "Icon size"
#. 8CiB5
-#: cui/uiconfig/ui/optviewpage.ui:405
+#: cui/uiconfig/ui/optviewpage.ui:435
msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automatic"
#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:406
+#: cui/uiconfig/ui/optviewpage.ui:436
msgctxt "optviewpage|iconstyle"
msgid "Galaxy"
msgstr "Galaxy"
#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:407
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|iconstyle"
msgid "High Contrast"
msgstr "High-contrast"
#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:408
+#: cui/uiconfig/ui/optviewpage.ui:438
msgctxt "optviewpage|iconstyle"
msgid "Oxygen"
msgstr "Oxygen"
#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:409
+#: cui/uiconfig/ui/optviewpage.ui:439
msgctxt "optviewpage|iconstyle"
msgid "Classic"
msgstr "Classic"
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:410
+#: cui/uiconfig/ui/optviewpage.ui:440
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:411
+#: cui/uiconfig/ui/optviewpage.ui:441
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Breeze"
+#. dDE86
+#: cui/uiconfig/ui/optviewpage.ui:445
+msgctxt "extended_tip | iconstyle"
+msgid "Specifies the icon style for icons in toolbars and dialogs."
+msgstr "Specifies the icon style for icons in toolbars and dialogue boxes."
+
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:458
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "Icon s_tyle:"
#. a86VJ
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:476
msgctxt "optviewpage|label1"
msgid "Icon style"
msgstr "Icon style"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:480
+#: cui/uiconfig/ui/optviewpage.ui:515
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Requires restart"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:484
+#: cui/uiconfig/ui/optviewpage.ui:519
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Use hard_ware acceleration"
+#. qw73y
+#: cui/uiconfig/ui/optviewpage.ui:528
+msgctxt "extended_tip | useaccel"
+msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
+msgstr "Directly accesses hardware features of the graphical display adapter to improve the screen display."
+
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:499
+#: cui/uiconfig/ui/optviewpage.ui:539
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Use anti-a_liasing"
+#. fUKV9
+#: cui/uiconfig/ui/optviewpage.ui:548
+msgctxt "extended_tip | useaa"
+msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
+msgstr "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with fewer artifacts."
+
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:514
+#: cui/uiconfig/ui/optviewpage.ui:559
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Use Skia for all rendering"
#. Dix5D
-#: cui/uiconfig/ui/optviewpage.ui:529
+#: cui/uiconfig/ui/optviewpage.ui:574
msgctxt "optviewpage|forceskia"
msgid "Ignore Skia denylist"
msgstr "Ignore Skia denylist"
#. v9eeZ
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:578
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this may expose driver bugs"
msgstr "Requires restart. Enabling this may expose driver bugs"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:546
+#: cui/uiconfig/ui/optviewpage.ui:591
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Force Skia software rendering"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:550
+#: cui/uiconfig/ui/optviewpage.ui:595
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Requires restart. Enabling this will prevent the use of graphics drivers."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:565
+#: cui/uiconfig/ui/optviewpage.ui:610
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "Skia is currently enabled."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:577
+#: cui/uiconfig/ui/optviewpage.ui:622
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "Skia is currently disabled."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:593
+#: cui/uiconfig/ui/optviewpage.ui:638
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Graphics Output"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:624
+#: cui/uiconfig/ui/optviewpage.ui:669
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Show p_review of fonts"
+#. 7Qidy
+#: cui/uiconfig/ui/optviewpage.ui:678
+msgctxt "extended_tip | showfontpreview"
+msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
+msgstr "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
+
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:689
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Screen font anti-aliasin_g"
+#. 5QEjG
+#: cui/uiconfig/ui/optviewpage.ui:698
+msgctxt "extended_tip | aafont"
+msgid "Select to smooth the screen appearance of text."
+msgstr "Select to smooth the screen appearance of text."
+
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:663
+#: cui/uiconfig/ui/optviewpage.ui:718
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "fro_m:"
+#. 9tsFW
+#: cui/uiconfig/ui/optviewpage.ui:735
+msgctxt "extended_tip | aanf"
+msgid "Enter the smallest font size to apply antialiasing."
+msgstr "Enter the smallest font size to apply anti-aliasing."
+
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:698
+#: cui/uiconfig/ui/optviewpage.ui:758
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Font Lists"
@@ -14988,66 +16116,120 @@ msgctxt "securityoptionsdialog|savesenddocs"
msgid "_When saving or sending"
msgstr "_When saving or sending"
+#. nPLGw
+#: cui/uiconfig/ui/securityoptionsdialog.ui:117
+msgctxt "extended_tip|savesenddocs"
+msgid "Select to see a warning dialog when you try to save or send a document that contains recorded changes, versions, or comments."
+msgstr "Select to see a warning dialogue box when you try to save or send a document that contains recorded changes, versions, or comments."
+
#. 6f6yg
-#: cui/uiconfig/ui/securityoptionsdialog.ui:123
+#: cui/uiconfig/ui/securityoptionsdialog.ui:128
msgctxt "securityoptionsdialog|whensigning"
msgid "When _signing"
msgstr "When _signing"
+#. zPKQY
+#: cui/uiconfig/ui/securityoptionsdialog.ui:137
+msgctxt "extended_tip|whensigning"
+msgid "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."
+msgstr "Select to see a warning dialogue box 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."
+
#. D6Lsv
-#: cui/uiconfig/ui/securityoptionsdialog.ui:138
+#: cui/uiconfig/ui/securityoptionsdialog.ui:148
msgctxt "securityoptionsdialog|whenprinting"
msgid "When _printing"
msgstr "When _printing"
+#. fYdUd
+#: cui/uiconfig/ui/securityoptionsdialog.ui:157
+msgctxt "extended_tip|whenprinting"
+msgid "Select to see a warning dialog when you try to print a document that contains recorded changes or comments."
+msgstr "Select to see a warning dialogue box when you try to print a document that contains recorded changes or comments."
+
#. 8BnPF
-#: cui/uiconfig/ui/securityoptionsdialog.ui:153
+#: cui/uiconfig/ui/securityoptionsdialog.ui:168
msgctxt "securityoptionsdialog|whenpdf"
msgid "When creating PDF _files"
msgstr "When creating PDF _files"
+#. jVm3C
+#: cui/uiconfig/ui/securityoptionsdialog.ui:177
+msgctxt "extended_tip|whenpdf"
+msgid "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."
+msgstr "Select to see a warning dialogue box when you try to export a document to PDF format that displays recorded changes in Writer, or that displays comments."
+
#. pfCsh
-#: cui/uiconfig/ui/securityoptionsdialog.ui:229
+#: cui/uiconfig/ui/securityoptionsdialog.ui:249
msgctxt "securityoptionsdialog|label3"
msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
msgstr "Warn if document contains recorded changes, versions, hidden information or notes:"
#. 3yxBp
-#: cui/uiconfig/ui/securityoptionsdialog.ui:245
+#: cui/uiconfig/ui/securityoptionsdialog.ui:265
msgctxt "securityoptionsdialog|label1"
msgid "Security Warnings"
msgstr "Security Warnings"
#. 8Vywd
-#: cui/uiconfig/ui/securityoptionsdialog.ui:279
+#: cui/uiconfig/ui/securityoptionsdialog.ui:299
msgctxt "securityoptionsdialog|removepersonal"
msgid "_Remove personal information on saving"
msgstr "_Remove personal information on saving"
+#. kjZqN
+#: cui/uiconfig/ui/securityoptionsdialog.ui:309
+msgctxt "extended_tip|removepersonal"
+msgid "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 Reset Properties button on File - Properties - General."
+msgstr "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 Reset Properties button on File - Properties - General."
+
#. y5FFs
-#: cui/uiconfig/ui/securityoptionsdialog.ui:295
+#: cui/uiconfig/ui/securityoptionsdialog.ui:320
msgctxt "securityoptionsdialog|password"
msgid "Recommend password protection on sa_ving"
msgstr "Recommend password protection on sa_ving"
+#. kWgcV
+#: cui/uiconfig/ui/securityoptionsdialog.ui:330
+msgctxt "extended_tip|password"
+msgid "Select to always enable the Save with password option in the file save dialogs. Deselect the option to save files by default without password."
+msgstr "Select to always enable the Save with password option in the file save dialogue boxes. Deselect the option to save files by default without password."
+
#. i3F7P
-#: cui/uiconfig/ui/securityoptionsdialog.ui:311
+#: cui/uiconfig/ui/securityoptionsdialog.ui:341
msgctxt "securityoptionsdialog|ctrlclick"
msgid "Ctrl-click required _to open hyperlinks"
msgstr "Ctrl-click required _to open hyperlinks"
+#. nxTdt
+#: cui/uiconfig/ui/securityoptionsdialog.ui:351
+msgctxt "extended_tip|ctrlclick"
+msgid "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."
+msgstr "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."
+
#. Ubb9Q
-#: cui/uiconfig/ui/securityoptionsdialog.ui:327
+#: cui/uiconfig/ui/securityoptionsdialog.ui:362
msgctxt "securityoptionsdialog|blockuntrusted"
msgid "Block any links from documents not among the trusted locations (see Macro Security)"
msgstr "Block any links from documents not among the trusted locations (see Macro Security)"
+#. Zm9kD
+#: cui/uiconfig/ui/securityoptionsdialog.ui:372
+msgctxt "extended_tip|blockuntrusted"
+msgid "Blocks the use of linked images by documents not in the trusted locations defined on the Trusted Sources tab of the Macro Security dialog."
+msgstr "Blocks the use of linked images by documents not in the trusted locations defined on the Trusted Sources tab of the Macro Security dialogue box."
+
#. vQGT6
-#: cui/uiconfig/ui/securityoptionsdialog.ui:398
+#: cui/uiconfig/ui/securityoptionsdialog.ui:438
msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Security Options"
+#. GENQg
+#: cui/uiconfig/ui/securityoptionsdialog.ui:470
+msgctxt "extended_tip|SecurityOptionsDialog"
+msgid "Set security related options and warnings about hidden information in documents."
+msgstr "Set security related options and warnings about hidden information in documents."
+
#. md3EB
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
diff --git a/source/en-GB/dbaccess/messages.po b/source/en-GB/dbaccess/messages.po
index 590b7412e7f..fc62418c6df 100644
--- a/source/en-GB/dbaccess/messages.po
+++ b/source/en-GB/dbaccess/messages.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: 2020-08-17 12:39+0200\n"
-"PO-Revision-Date: 2020-08-07 21:35+0000\n"
+"POT-Creation-Date: 2020-08-21 13:59+0200\n"
+"PO-Revision-Date: 2020-08-19 14:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/en_GB/>\n"
"Language: en-GB\n"
@@ -2520,6 +2520,78 @@ msgstr ""
"The database could not create the relation. Maybe foreign keys for this kind of table aren't supported.\n"
"Please check your documentation of the database."
+#. Fsz7D
+#: dbaccess/inc/templwin.hrc:41
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Title"
+msgstr ""
+
+#. zo57j
+#: dbaccess/inc/templwin.hrc:42
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "By"
+msgstr ""
+
+#. Zh8Ni
+#: dbaccess/inc/templwin.hrc:43
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Date"
+msgstr ""
+
+#. eHFA4
+#: dbaccess/inc/templwin.hrc:44
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Keywords"
+msgstr ""
+
+#. eYGnQ
+#: dbaccess/inc/templwin.hrc:45
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Description"
+msgstr ""
+
+#. Eg2eG
+#: dbaccess/inc/templwin.hrc:46
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Type"
+msgstr ""
+
+#. hokZy
+#: dbaccess/inc/templwin.hrc:47
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Modified on"
+msgstr ""
+
+#. XMEJb
+#: dbaccess/inc/templwin.hrc:48
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Modified by"
+msgstr ""
+
+#. MWkd5
+#: dbaccess/inc/templwin.hrc:49
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Printed on"
+msgstr ""
+
+#. BBEEC
+#: dbaccess/inc/templwin.hrc:50
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Printed by"
+msgstr ""
+
+#. VCGe3
+#: dbaccess/inc/templwin.hrc:51
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Subject"
+msgstr ""
+
+#. HVYdE
+#: dbaccess/inc/templwin.hrc:52
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Size"
+msgstr ""
+
#. 4KVZn
#: dbaccess/uiconfig/ui/admindialog.ui:8
msgctxt "admindialog|AdminDialog"
@@ -4560,10 +4632,10 @@ msgid "Add Table or Query"
msgstr "Add Table or Query"
#. YWLXP
-#: dbaccess/uiconfig/ui/taskwindow.ui:100
+#: dbaccess/uiconfig/ui/taskwindow.ui:107
msgctxt "taskwindow|STR_DESCRIPTION"
msgid "Description"
-msgstr ""
+msgstr "Description"
#. 8b2nn
#: dbaccess/uiconfig/ui/textconnectionsettings.ui:8
diff --git a/source/en-GB/desktop/messages.po b/source/en-GB/desktop/messages.po
index 4020aafef98..75f2f36070f 100644
--- a/source/en-GB/desktop/messages.po
+++ b/source/en-GB/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-08-17 12:39+0200\n"
-"PO-Revision-Date: 2020-06-30 19:04+0000\n"
+"PO-Revision-Date: 2020-08-19 14:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/desktopmessages/en_GB/>\n"
"Language: en-GB\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 4.1.1\n"
"X-POOTLE-MTIME: 1536168912.000000\n"
#. v2iwK
@@ -128,7 +128,7 @@ msgstr "Extension"
#: desktop/inc/strings.hrc:47
msgctxt "RID_STR_PACKAGE_BUNDLE"
msgid "All supported files"
-msgstr ""
+msgstr "All supported files"
#. 5TAZB
#: desktop/inc/strings.hrc:49
diff --git a/source/en-GB/helpcontent2/source/text/scalc/01.po b/source/en-GB/helpcontent2/source/text/scalc/01.po
index d5547e62d39..7e60afdc091 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/01.po
+++ b/source/en-GB/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: 2020-07-21 11:19+0200\n"
+"POT-Creation-Date: 2020-08-21 14:00+0200\n"
"PO-Revision-Date: 2020-03-03 11:15+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/en_GB/>\n"
@@ -68470,15 +68470,6 @@ msgctxt ""
msgid "XML Source Dialog"
msgstr "XML Source Dialogue Box"
-#. kCv2Z
-#: xml_source.xhp
-msgctxt ""
-"xml_source.xhp\n"
-"par_id2521\n"
-"help.text"
-msgid "<image id=\"img_id35279\" src=\"media/screenshots/modules/scalc/ui/xmlsourcedialog/XMLSourceDialog.png\" width=\"16cm\" height=\"13cm\"><alt id=\"alt_id55711\">XML Source Dialog</alt></image>"
-msgstr "<image id=\"img_id35279\" src=\"media/screenshots/modules/scalc/ui/xmlsourcedialog/XMLSourceDialog.png\" width=\"16cm\" height=\"13cm\"><alt id=\"alt_id55711\">XML Source Dialogue Box</alt></image>"
-
#. MZB9H
#: xml_source.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/sdatabase.po b/source/en-GB/helpcontent2/source/text/sdatabase.po
index 6d4c0b9a857..5a89117bf4d 100644
--- a/source/en-GB/helpcontent2/source/text/sdatabase.po
+++ b/source/en-GB/helpcontent2/source/text/sdatabase.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-08-17 12:39+0200\n"
-"PO-Revision-Date: 2020-07-27 05:35+0000\n"
+"PO-Revision-Date: 2020-08-19 18:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textsdatabase/en_GB/>\n"
"Language: en-GB\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 4.1.1\n"
#. ugSgG
#: 02000000.xhp
@@ -166,7 +166,7 @@ msgctxt ""
"hd_id3153379\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Design\">Query Design</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Design\">Query Design</link>"
#. 3JCfK
#: 02000000.xhp
@@ -184,7 +184,7 @@ msgctxt ""
"hd_id3153968\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Through Several Tables\">Query Through Several Tables</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Through Several Tables\">Query Through Several Tables</link>"
#. ASeVi
#: 02000000.xhp
@@ -202,7 +202,7 @@ msgctxt ""
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Formulating Query Criteria\">Formulating Query Criteria</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Formulating Query Criteria\">Formulating Query Criteria</link>"
#. JTXBF
#: 02000000.xhp
@@ -220,7 +220,7 @@ msgctxt ""
"hd_id3156212\n"
"help.text"
msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Executing Functions\">Executing Functions</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/020010100.xhp\" name=\"Executing Functions\">Executing Functions</link>"
#. FWCVa
#: 02000000.xhp
@@ -301,7 +301,7 @@ msgctxt ""
"par_id3166461\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to open the query in the <link href=\"text/sdatabase/02010100.xhp\" name=\"Design View\">Design View</link> in spite of missing elements.</ahelp> This option also allows you to specify if other errors need to be ignored."
-msgstr ""
+msgstr "<ahelp hid=\".\">Allows you to open the query in the <link href=\"text/sdatabase/02010100.xhp\" name=\"Design View\">Design View</link> in spite of missing elements.</ahelp> This option also allows you to specify if other errors need to be ignored."
#. DX2vA
#: 02000002.xhp
diff --git a/source/en-GB/helpcontent2/source/text/shared/06.po b/source/en-GB/helpcontent2/source/text/shared/06.po
index 56602d0b9e0..a9cb4aafdbf 100644
--- a/source/en-GB/helpcontent2/source/text/shared/06.po
+++ b/source/en-GB/helpcontent2/source/text/shared/06.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-06-02 13:53+0200\n"
+"POT-Creation-Date: 2020-08-21 14:00+0200\n"
"PO-Revision-Date: 2020-06-29 11:28+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textshared06/en_GB/>\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.10.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1537703658.000000\n"
#. EUcrc
@@ -196,6 +196,24 @@ msgctxt ""
msgid "<image src=\"media/screenshots/cui/ui/optgeneralpage/OptGeneralPage.png\" id=\"img_id11572514566037\"><alt id=\"alt_id41572514566038\">Options General Dialog Image</alt></image>"
msgstr "<image src=\"media/screenshots/cui/ui/optgeneralpage/OptGeneralPage.png\" id=\"img_id11572514566037\"><alt id=\"alt_id41572514566038\">Options General Dialogue Box Image</alt></image>"
+#. ofEA4
+#: sc_screenshots.xhp
+msgctxt ""
+"sc_screenshots.xhp\n"
+"tit\n"
+"help.text"
+msgid "page_title"
+msgstr ""
+
+#. QaaKZ
+#: sc_screenshots.xhp
+msgctxt ""
+"sc_screenshots.xhp\n"
+"par_id2521\n"
+"help.text"
+msgid "<image id=\"img_id35279\" src=\"media/screenshots/modules/scalc/ui/xmlsourcedialog/XMLSourceDialog.png\"><alt id=\"alt_id55711\">XML Source Dialog</alt></image>"
+msgstr ""
+
#. Ak6ph
#: shared_cui_screenshots.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/simpress/guide.po b/source/en-GB/helpcontent2/source/text/simpress/guide.po
index 3d61c5916a4..999f4b4ad7b 100644
--- a/source/en-GB/helpcontent2/source/text/simpress/guide.po
+++ b/source/en-GB/helpcontent2/source/text/simpress/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: 2020-05-19 12:41+0200\n"
+"POT-Creation-Date: 2020-08-21 14:00+0200\n"
"PO-Revision-Date: 2020-06-29 11:27+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpressguide/en_GB/>\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.10.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547846609.000000\n"
#. S83CC
@@ -1348,14 +1348,14 @@ msgctxt ""
msgid "<bookmark_value>footers;master slides</bookmark_value><bookmark_value>master slides; headers and footers</bookmark_value><bookmark_value>headers and footers; master slides</bookmark_value><bookmark_value>inserting;headers/footers in all slides</bookmark_value><bookmark_value>slide numbers on all slides</bookmark_value><bookmark_value>page numbers on all slides</bookmark_value><bookmark_value>date on all slides</bookmark_value><bookmark_value>time and date on all slides</bookmark_value>"
msgstr "<bookmark_value>footers;master slides</bookmark_value><bookmark_value>master slides; headers and footers</bookmark_value><bookmark_value>headers and footers; master slides</bookmark_value><bookmark_value>inserting;headers/footers in all slides</bookmark_value><bookmark_value>slide numbers on all slides</bookmark_value><bookmark_value>page numbers on all slides</bookmark_value><bookmark_value>date on all slides</bookmark_value><bookmark_value>time and date on all slides</bookmark_value>"
-#. GP8y3
+#. CP4C8
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"hd_id3153191\n"
"help.text"
-msgid "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\" name=\"Adding a Header or a Footer to All Slides\">Adding a Header or a Footer to All Slides</link> </variable>"
-msgstr "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\" name=\"Adding a Header or a Footer to All Slides\">Adding a Header or a Footer to All Slides</link> </variable>"
+msgid "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\" name=\"Adding a Header or a Footer to All Slides\">Adding a Header or a Footer to All Slides</link></variable>"
+msgstr ""
#. fRX2a
#: footer.xhp
@@ -1528,6 +1528,15 @@ msgctxt ""
msgid "Click the Date Area and move the time and date field. Select the <date/time> field and apply some formatting to change the format for the date and time on all slides. The same applies to the Footer Area and the Slide Number Area."
msgstr "Click the Date Area and move the time and date field. Select the <date/time> field and apply some formatting to change the format for the date and time on all slides. The same applies to the Footer Area and the Slide Number Area."
+#. ZqhAK
+#: footer.xhp
+msgctxt ""
+"footer.xhp\n"
+"par_id171597939732335\n"
+"help.text"
+msgid "Normally the predefined elements of the Master side are set to visible in the presentation. You can control the visibility of the predefined elements by choosing <menuitem>Slide - Master Elements</menuitem>."
+msgstr ""
+
#. MhrkU
#: footer.xhp
msgctxt ""
@@ -1555,14 +1564,14 @@ msgctxt ""
msgid "Choose <emph>View - Master Slide</emph>."
msgstr "Choose <emph>View - Master Slide</emph>."
-#. mkgvD
+#. ABnCF
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"par_id3147295\n"
"help.text"
-msgid "On the <emph>Drawing</emph> bar, select the <emph>Text</emph> icon <image id=\"img_id3154654\" src=\"cmd/sc_texttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154654\">Icon</alt></image>."
-msgstr "On the <emph>Drawing</emph> bar, select the <emph>Text</emph> icon <image id=\"img_id3154654\" src=\"cmd/sc_texttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154654\">Icon</alt></image>."
+msgid "On the <emph>Drawing</emph> bar, select the <emph>Text</emph> icon<image id=\"img_id3154654\" src=\"cmd/sc_texttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154654\">Icon</alt></image>."
+msgstr ""
#. pV2Dh
#: footer.xhp
diff --git a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
index 9e78b71e920..44a06712ff7 100644
--- a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.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-08-04 13:02+0200\n"
+"POT-Creation-Date: 2020-08-21 14:00+0200\n"
"PO-Revision-Date: 2020-03-10 09:16+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/en_GB/>\n"
@@ -14126,6 +14126,16 @@ msgctxt ""
msgid "Vertical Figure 8"
msgstr "Vertical Figure-of-8"
+#. cCMGr
+#: Effects.xcu
+msgctxt ""
+"Effects.xcu\n"
+"..Effects.UserInterface.Effects.libo-physics-fall\n"
+"Label\n"
+"value.text"
+msgid "Fall simulated"
+msgstr ""
+
#. MZBtm
#: Effects.xcu
msgctxt ""
diff --git a/source/en-GB/sc/messages.po b/source/en-GB/sc/messages.po
index dd5d5a88826..e2d93fbbb73 100644
--- a/source/en-GB/sc/messages.po
+++ b/source/en-GB/sc/messages.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-07-21 11:19+0200\n"
+"POT-Creation-Date: 2020-08-21 17:59+0200\n"
"PO-Revision-Date: 2020-03-10 09:16+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/en_GB/>\n"
@@ -18896,23 +18896,41 @@ msgid "Copy List"
msgstr "Copy List"
#. P7PZo
-#: sc/uiconfig/scalc/ui/colorrowdialog.ui:100
+#: sc/uiconfig/scalc/ui/colorrowdialog.ui:97
msgctxt "colorrowdialog|columns"
msgid "_Columns"
msgstr "_Columns"
+#. orYEB
+#: sc/uiconfig/scalc/ui/colorrowdialog.ui:107
+msgctxt "extended_tip|columns"
+msgid "Select the Columns option to summarize the contents of the selected columns in a list."
+msgstr "Select the Columns option to summarise the contents of the selected columns in a list."
+
#. 8qbkD
-#: sc/uiconfig/scalc/ui/colorrowdialog.ui:117
+#: sc/uiconfig/scalc/ui/colorrowdialog.ui:119
msgctxt "colorrowdialog|rows"
msgid "_Rows"
msgstr "_Rows"
+#. CCfoS
+#: sc/uiconfig/scalc/ui/colorrowdialog.ui:129
+msgctxt "extended_tip|rows"
+msgid "Select the Rows option to summarize the contents of the selected rows in a list."
+msgstr "Select the Rows option to summarise the contents of the selected rows in a list."
+
#. UiR8k
-#: sc/uiconfig/scalc/ui/colorrowdialog.ui:140
+#: sc/uiconfig/scalc/ui/colorrowdialog.ui:147
msgctxt "colorrowdialog|label"
msgid "List From"
msgstr "List From"
+#. BSSuE
+#: sc/uiconfig/scalc/ui/colorrowdialog.ui:172
+msgctxt "extended_tip|ColOrRowDialog"
+msgid "Allows you to copy marked cells to a sort list."
+msgstr "Allows you to copy marked cells to a sort list."
+
#. ZnGGB
#: sc/uiconfig/scalc/ui/colwidthdialog.ui:8
msgctxt "colwidthdialog|ColWidthDialog"
@@ -21620,6 +21638,12 @@ msgctxt "formulacalculationoptions|label3"
msgid "Contents to Numbers"
msgstr "Contents to Numbers"
+#. FY66D
+#: sc/uiconfig/scalc/ui/formulacalculationoptions.ui:219
+msgctxt "extended_tip|FormulaCalculationOptions"
+msgid "Sets the rules for conversion from strings values to numeric values, string values to cell references, and strings values to date and time values. This affects built-in functions such as INDIRECT that takes a reference as a string value or date and time functions that takes arguments as string values in local or ISO 8601 formats."
+msgstr "Sets the rules for conversion from strings values to numeric values, string values to cell references, and strings values to date and time values. This affects built-in functions such as INDIRECT that takes a reference as a string value or date and time functions that takes arguments as string values in local or ISO 8601 formats."
+
#. qUwp9
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:15
msgctxt "fourieranalysisdialog|FourierAnalysisDialog"
@@ -24196,174 +24220,294 @@ msgctxt "optcalculatepage|case|tooltip_text"
msgid "Disable case sensitivity for interoperability with Microsoft Excel"
msgstr "Disable case-sensitivity for interoperability with Microsoft Excel"
+#. fGMgy
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:110
+msgctxt "extended_tip|case"
+msgid "Specifies whether to distinguish between upper and lower case in texts when comparing cell contents."
+msgstr "Specifies whether to distinguish between upper- and lower-case in text strings when comparing cell content."
+
#. 9W56L
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:116
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:121
msgctxt "optcalculatepage|calc"
msgid "_Precision as shown"
msgstr "_Precision as shown"
+#. YGAFd
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:130
+msgctxt "extended_tip|calc"
+msgid "Specifies whether to make calculations using the rounded values displayed in the sheet. Charts will be shown with the displayed values. If the Precision as shown option is not marked, the displayed numbers are rounded, but they are calculated internally using the non-rounded number."
+msgstr "Specifies whether to make calculations using the rounded values displayed in the sheet. Charts will be shown with the displayed values. If the Precision as shown option is not marked, the displayed numbers are rounded, but they are calculated internally using the non-rounded number."
+
#. BiDg6
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:131
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:141
msgctxt "optcalculatepage|match"
msgid "Search criteria = and <> must apply to _whole cells"
msgstr "Search criteria = and <> must apply to _whole cells"
#. d3ZgB
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:135
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:145
msgctxt "optcalculatepage|match|tooltip_text"
msgid "Enable this for interoperability with Microsoft Excel"
msgstr "Enable this for interoperability with Microsoft Excel"
+#. APEQn
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:151
+msgctxt "extended_tip|match"
+msgid "Specifies that the search criteria you set for the Calc database functions must match the whole cell exactly. When both, the Search criteria = and <> must apply to whole cells box and the Enable wildcards in formulas box are marked, %PRODUCTNAME Calc behaves exactly as Microsoft Excel when searching cells in the database functions."
+msgstr "Specifies that the search criteria you set for the Calc database functions must match the whole cell exactly. When both, the Search criteria = and <> must apply to whole cells box and the Enable wildcards in formulas box are marked, %PRODUCTNAME Calc behaves exactly as Microsoft Excel when searching cells in the database functions."
+
#. 5Wn8V
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:147
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:162
msgctxt "optcalculatepage|lookup"
msgid "_Automatically find column and row labels"
msgstr "_Automatically find column and row labels"
+#. XVS3t
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:171
+msgctxt "extended_tip|lookup"
+msgid "Specifies that you can use the text in any cell as a label for the column below the text or the row to the right of the text. The text must consist of at least one word and must not contain any operators."
+msgstr "Specifies that you can use the text in any cell as a label for the column below the text or the row to the right of the text. The text must consist of at least one word and must not contain any operators."
+
#. DwExc
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:162
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:182
msgctxt "optcalculatepage|generalprec"
msgid "_Limit decimals for general number format"
msgstr "_Limit decimals for general number format"
+#. hufmT
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:191
+msgctxt "extended_tip|generalprec"
+msgid "You can specify the maximum number of decimal places that are shown by default for cells with General number format. If not enabled, cells with General number format show as many decimal places as the column width allows."
+msgstr "You can specify the maximum number of decimal places that are shown by default for cells with General number format. If not enabled, cells with General number format show as many decimal places as the column width allows."
+
#. buc6F
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:189
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:214
msgctxt "optcalculatepage|precft"
msgid "_Decimal places:"
msgstr "_Decimal places:"
+#. riZoc
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:232
+msgctxt "extended_tip|prec"
+msgid "Defines the number of decimals to be displayed for numbers with the General number format. The numbers are displayed as rounded numbers, but are not saved as rounded numbers."
+msgstr "Defines the number of decimals to be displayed for numbers with the General number format. The numbers are displayed as rounded numbers, but are not saved as rounded numbers."
+
#. tnj5y
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:228
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:258
msgctxt "optcalculatepage|label1"
msgid "General Calculations"
msgstr "General Calculations"
#. p2vT9
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:261
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:291
msgctxt "optcalculatepage|iterate"
msgid "_Iterations"
msgstr "_Iterations"
+#. pBKcn
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:300
+msgctxt "extended_tip|iterate"
+msgid "Specifies whether formulas with iterative references (formulas that are continuously repeated until the problem is solved) are calculated after a specific number of repetitions."
+msgstr "Specifies whether formulae with iterative references (formulae that are continuously repeated until the problem is solved) are calculated after a specific number of repetitions."
+
#. S6iwg
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:290
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:325
msgctxt "optcalculatepage|stepsft"
msgid "_Steps:"
msgstr "_Steps:"
#. aJT9u
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:304
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:339
msgctxt "optcalculatepage|minchangeft"
msgid "_Minimum change:"
msgstr "_Minimum change:"
+#. GmKgv
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:357
+msgctxt "extended_tip|steps"
+msgid "Sets the maximum number of iteration steps."
+msgstr "Sets the maximum number of iteration steps."
+
+#. ZekEF
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:374
+msgctxt "extended_tip|minchange"
+msgid "Specifies the difference between two consecutive iteration step results. If the result of the iteration is lower than the minimum change value, then the iteration will stop."
+msgstr "Specifies the difference between two consecutive iteration step results. If the result of the iteration is lower than the minimum change value, then the iteration will stop."
+
#. UoUqA
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:355
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:400
msgctxt "optcalculatepage|label2"
msgid "Iterative References"
msgstr "Iterative References"
#. BA74j
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:386
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:431
msgctxt "optcalculatepage|datestd"
msgid "12/30/1899 (defa_ult)"
msgstr "30/12/1899 (defa_ult)"
#. ApqYV
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:390
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:435
msgctxt "optcalculatepage|datestd|tooltip_text"
msgid "Value 0 corresponds to 12/30/1899"
msgstr "Value 0 corresponds to 1899-12-30"
+#. SCewx
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:442
+msgctxt "extended_tip|datestd"
+msgid "Sets 12/30/1899 as day zero."
+msgstr "Sets 1899-12-30 as day zero."
+
#. mznb9
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:403
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:453
msgctxt "optcalculatepage|datesc10"
msgid "01/01/1900 (Star_Calc 1.0)"
msgstr "01/01/1900 (Star_Calc 1.0)"
#. etLCb
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:407
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:457
msgctxt "optcalculatepage|datesc10|tooltip_text"
msgid "Value 0 corresponds to 01/01/1900"
msgstr "Value 0 corresponds to 1900-01-01"
+#. LEunE
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:464
+msgctxt "extended_tip|datesc10"
+msgid "Sets 1/1/1900 as day zero. Use this setting for StarCalc 1.0 spreadsheets containing date entries."
+msgstr "Sets 1900-01-01 as day zero. Use this setting for StarCalc 1.0 spreadsheets containing date entries."
+
#. J9ECM
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:420
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:475
msgctxt "optcalculatepage|date1904"
msgid "_01/01/1904"
msgstr "_01/01/1904"
#. aBzk5
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:424
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:479
msgctxt "optcalculatepage|date1904|tooltip_text"
msgid "0 corresponds to 01/01/1904"
msgstr "0 corresponds to 1904-01-01"
+#. EkAYW
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:486
+msgctxt "extended_tip|date1904"
+msgid "Sets 1/1/1904 as day zero. Use this setting for spreadsheets that are imported in a foreign format."
+msgstr "Sets 1904-01-01 as day zero. Use this setting for spreadsheets that are imported in a foreign format."
+
#. ggkEL
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:443
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:503
msgctxt "optcalculatepage|label3"
msgid "Date"
msgstr "Date"
#. Hd6CV
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:473
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:533
msgctxt "optcalculatepage|formulawildcards"
msgid "Enable w_ildcards in formulas"
msgstr "Enable w_ildcards in formulae"
#. BKAzW
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:477
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:537
msgctxt "optcalculatepage|formulawildcards|tooltip_text"
msgid "Enable wildcards for interoperability with Microsoft Excel"
msgstr "Enable wildcards for interoperability with Microsoft Excel"
+#. KXxjQ
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:544
+msgctxt "extended_tip|formulawildcards"
+msgid "Specifies that wildcards are enabled when searching and also for character string comparisons."
+msgstr "Specifies that wildcards are enabled when searching and also for character string comparisons."
+
#. Gghyb
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:490
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:555
msgctxt "optcalculatepage|formularegex"
msgid "Enable r_egular expressions in formulas"
msgstr "Enable r_egular expressions in formulae"
+#. D9B3G
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:565
+msgctxt "extended_tip|formularegex"
+msgid "Specifies that regular expressions instead of simple wildcards are enabled when searching and also for character string comparisons."
+msgstr "Specifies that regular expressions instead of simple wildcards are enabled when searching and also for character string comparisons."
+
#. gg3Am
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:506
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:576
msgctxt "optcalculatepage|formulaliteral"
msgid "No wildcards or regular expressions in formulas"
msgstr "No wildcards or regular expressions in formulae"
+#. BwEWx
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:586
+msgctxt "extended_tip|formulaliteral"
+msgid "Specifies that only literal strings are used when searching and also for character string comparisons."
+msgstr "Specifies that only literal strings are used when searching and also for character string comparisons."
+
#. 7QXFg
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:528
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:603
msgctxt "optcalculatepage|label5"
msgid "Formulas wildcards"
msgstr "Formulae wildcards"
#. Umdv5
-#: sc/uiconfig/scalc/ui/optchangespage.ui:37
+#: sc/uiconfig/scalc/ui/optchangespage.ui:36
msgctxt "optchangespage|label2"
msgid "Chan_ges:"
msgstr "Chan_ges:"
#. yrmgC
-#: sc/uiconfig/scalc/ui/optchangespage.ui:51
+#: sc/uiconfig/scalc/ui/optchangespage.ui:50
msgctxt "optchangespage|label3"
msgid "_Deletions:"
msgstr "_Deletions:"
#. bJb2E
-#: sc/uiconfig/scalc/ui/optchangespage.ui:65
+#: sc/uiconfig/scalc/ui/optchangespage.ui:64
msgctxt "optchangespage|label4"
msgid "_Insertions:"
msgstr "_Insertions:"
#. ikfvj
-#: sc/uiconfig/scalc/ui/optchangespage.ui:79
+#: sc/uiconfig/scalc/ui/optchangespage.ui:78
msgctxt "optchangespage|label5"
msgid "_Moved entries:"
msgstr "_Moved entries:"
+#. BiCsr
+#: sc/uiconfig/scalc/ui/optchangespage.ui:101
+msgctxt "extended_tip|changes"
+msgid "Specifies the color for changes of cell contents."
+msgstr "Specifies the colour for changes of cell contents."
+
+#. NGpxf
+#: sc/uiconfig/scalc/ui/optchangespage.ui:123
+msgctxt "extended_tip|deletions"
+msgid "Specifies the color to highlight deletions in a document."
+msgstr "Specifies the colour to highlight deletions in a document."
+
+#. XXK7D
+#: sc/uiconfig/scalc/ui/optchangespage.ui:145
+msgctxt "extended_tip|entries"
+msgid "Specifies the color to highlight moved cell contents."
+msgstr "Specifies the colour to highlight moved cell contents."
+
+#. 67CPn
+#: sc/uiconfig/scalc/ui/optchangespage.ui:167
+msgctxt "extended_tip|insertions"
+msgid "Specifies the color to highlight insertions in a document."
+msgstr "Specifies the colour to highlight insertions in a document."
+
#. AYxhD
-#: sc/uiconfig/scalc/ui/optchangespage.ui:152
+#: sc/uiconfig/scalc/ui/optchangespage.ui:184
msgctxt "optchangespage|label1"
msgid "Colors for Changes"
msgstr "Colours for Changes"
+#. GyGpz
+#: sc/uiconfig/scalc/ui/optchangespage.ui:199
+msgctxt "extended_tip|OptChangesPage"
+msgid "The Changes dialog specifies various options for highlighting recorded changes in documents."
+msgstr "The Changes dialogue box specifies various options for highlighting recorded changes in documents."
+
#. CrAWh
#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:41
msgctxt "optcompatibilitypage|label2"
@@ -24388,6 +24532,12 @@ msgctxt "optcompatibilitypage|label1"
msgid "Key Bindings"
msgstr "Key Bindings"
+#. Z7mEE
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:93
+msgctxt "extended_tip|OptCompatibilityPage"
+msgid "Defines compatibility options for %PRODUCTNAME Calc."
+msgstr "Defines compatibility options for %PRODUCTNAME Calc."
+
#. Jcvih
#: sc/uiconfig/scalc/ui/optdefaultpage.ui:39
msgctxt "optdefaultpage|textsheetsnumber"
@@ -24412,36 +24562,60 @@ msgctxt "optdefaultpage|label1"
msgid "New Spreadsheet"
msgstr "New Spreadsheet"
-#. gbrKD
-#: sc/uiconfig/scalc/ui/optdlg.ui:30
-msgctxt "optdlg|suppressCB"
-msgid "_Suppress output of empty pages"
-msgstr "_Suppress output of empty pages"
+#. Ap57D
+#: sc/uiconfig/scalc/ui/optdefaultpage.ui:126
+msgctxt "extended_tip|OptDefaultPage"
+msgid "Defines default settings for new spreadsheet documents."
+msgstr "Defines default settings for new spreadsheet documents."
#. TueVT
-#: sc/uiconfig/scalc/ui/optdlg.ui:46
+#: sc/uiconfig/scalc/ui/optdlg.ui:31
msgctxt "optdlg|forceBreaksCB"
msgid "_Always apply manual breaks"
msgstr "_Always apply manual breaks"
+#. gbrKD
+#: sc/uiconfig/scalc/ui/optdlg.ui:47
+msgctxt "optdlg|suppressCB"
+msgid "_Suppress output of empty pages"
+msgstr "_Suppress output of empty pages"
+
+#. 6chh5
+#: sc/uiconfig/scalc/ui/optdlg.ui:56
+msgctxt "extended_tip|suppressCB"
+msgid "Specifies that empty pages that have no cell contents or draw objects are not printed."
+msgstr "Specifies that empty pages that have no cell contents or draw objects are not printed."
+
#. udgBk
-#: sc/uiconfig/scalc/ui/optdlg.ui:68
+#: sc/uiconfig/scalc/ui/optdlg.ui:74
msgctxt "optdlg|label1"
msgid "Pages"
msgstr "Pages"
#. nfmkw
-#: sc/uiconfig/scalc/ui/optdlg.ui:101
+#: sc/uiconfig/scalc/ui/optdlg.ui:107
msgctxt "optdlg|printCB"
msgid "_Print only selected sheets"
msgstr "_Print only selected sheets"
+#. Cqsrk
+#: sc/uiconfig/scalc/ui/optdlg.ui:116
+msgctxt "extended_tip|printCB"
+msgid "Specifies that only contents from selected sheets are printed, even if you specify a wider range in the File - Print dialog or in the Format - Print Ranges dialog. Contents from sheets that are not selected will not be printed."
+msgstr "Specifies that only contents from selected sheets are printed, even if you specify a wider range in the File - Print dialogue box or in the Format - Print Ranges dialogue box. Contents from sheets that are not selected will not be printed."
+
#. wT6PN
-#: sc/uiconfig/scalc/ui/optdlg.ui:124
+#: sc/uiconfig/scalc/ui/optdlg.ui:134
msgctxt "optdlg|label2"
msgid "Sheets"
msgstr "Sheets"
+#. JptgQ
+#: sc/uiconfig/scalc/ui/optdlg.ui:150
+msgctxt "extended_tip|optCalcPrintPage"
+msgid "Determines the printer settings for spreadsheets."
+msgstr "Determines the printer settings for spreadsheets."
+
#. nQBpo
#: sc/uiconfig/scalc/ui/optformula.ui:30
msgctxt "optformula|englishfuncname"
@@ -24568,6 +24742,12 @@ msgctxt "optformula|label3"
msgid "Separators"
msgstr "Separators"
+#. Pk6nr
+#: sc/uiconfig/scalc/ui/optformula.ui:440
+msgctxt "extended_tip|OptFormula"
+msgid "Defines formula syntax options and loading options for %PRODUCTNAME Calc."
+msgstr "Defines formula syntax options and loading options for %PRODUCTNAME Calc."
+
#. cCfAk
#: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:8
msgctxt "optimalcolwidthdialog|OptimalColWidthDialog"
@@ -24610,54 +24790,96 @@ msgctxt "optsortlists|copy"
msgid "_Copy"
msgstr "_Copy"
+#. FprUE
+#: sc/uiconfig/scalc/ui/optsortlists.ui:37
+msgctxt "extended_tip|copy"
+msgid "Copies the contents of the cells in the Copy list from box. If you select a reference to related rows and columns, the Copy List dialog appears after clicking the button. You can use this dialog to define if the reference is converted to sort lists by row or by column."
+msgstr "Copies the contents of the cells in the Copy list from box. If you select a reference to related rows and columns, the Copy List dialogue box appears after clicking the button. You can use this dialogue box to define if the reference is converted to sort lists by row or by column."
+
#. jG3HS
-#: sc/uiconfig/scalc/ui/optsortlists.ui:51
+#: sc/uiconfig/scalc/ui/optsortlists.ui:56
msgctxt "optsortlists|copyfromlabel"
msgid "Copy list _from:"
msgstr "Copy list _from:"
+#. QEyMs
+#: sc/uiconfig/scalc/ui/optsortlists.ui:75
+msgctxt "extended_tip|copyfrom"
+msgid "Defines the spreadsheet and the cells to copy, in order to include them in the Lists box. The currently selected range in the spreadsheet is the default."
+msgstr "Defines the spreadsheet and the cells to copy, in order to include them in the Lists box. The currently selected range in the spreadsheet is the default."
+
#. iCaLd
-#: sc/uiconfig/scalc/ui/optsortlists.ui:94
+#: sc/uiconfig/scalc/ui/optsortlists.ui:104
msgctxt "optsortlists|listslabel"
msgid "_Lists"
msgstr "_Lists"
#. EBMmZ
-#: sc/uiconfig/scalc/ui/optsortlists.ui:108
+#: sc/uiconfig/scalc/ui/optsortlists.ui:118
msgctxt "optsortlists|entrieslabel"
msgid "_Entries"
msgstr "_Entries"
+#. qqKLe
+#: sc/uiconfig/scalc/ui/optsortlists.ui:160
+msgctxt "extended_tip|lists"
+msgid "Displays all the available lists. These lists can be selected for editing."
+msgstr "Displays all the available lists. These lists can be selected for editing."
+
+#. esSFN
+#: sc/uiconfig/scalc/ui/optsortlists.ui:184
+msgctxt "extended_tip|entries"
+msgid "Displays the content of the currently selected list. This content can be edited."
+msgstr "Displays the content of the currently selected list. This content can be edited."
+
#. GcE5C
-#: sc/uiconfig/scalc/ui/optsortlists.ui:190
+#: sc/uiconfig/scalc/ui/optsortlists.ui:210
msgctxt "optsortlists|new"
msgid "_New"
msgstr "_New"
+#. uH79F
+#: sc/uiconfig/scalc/ui/optsortlists.ui:217
+msgctxt "extended_tip|new"
+msgid "Enters the contents of a new list into the Entries box."
+msgstr "Enters the contents of a new list into the Entries box."
+
#. wETY5
-#: sc/uiconfig/scalc/ui/optsortlists.ui:204
+#: sc/uiconfig/scalc/ui/optsortlists.ui:229
msgctxt "optsortlists|discard"
msgid "_Discard"
msgstr "_Discard"
#. KiBRx
-#: sc/uiconfig/scalc/ui/optsortlists.ui:218
+#: sc/uiconfig/scalc/ui/optsortlists.ui:243
msgctxt "optsortlists|add"
msgid "_Add"
msgstr "_Add"
+#. pZWBh
+#: sc/uiconfig/scalc/ui/optsortlists.ui:250
+msgctxt "extended_tip|add"
+msgid "Adds a new list into the Lists box."
+msgstr "Adds a new list into the Lists box."
+
#. yADBm
-#: sc/uiconfig/scalc/ui/optsortlists.ui:232
+#: sc/uiconfig/scalc/ui/optsortlists.ui:262
msgctxt "optsortlists|modify"
msgid "Modif_y"
msgstr "Modif_y"
#. yN2Fo
-#: sc/uiconfig/scalc/ui/optsortlists.ui:246
+#: sc/uiconfig/scalc/ui/optsortlists.ui:276
msgctxt "optsortlists|delete"
msgid "_Delete"
msgstr "_Delete"
+#. L7EBD
+#: sc/uiconfig/scalc/ui/optsortlists.ui:303
+msgctxt "extended_tip|OptSortLists"
+msgid "All user-defined lists are displayed in the Sort Lists dialog. You can also define and edit your own lists. Only text can be used as sort lists, no numbers."
+msgstr "All user-defined lists are displayed in the Sort Lists dialogue box. You can also define and edit your own lists. Only text can be used as sort lists, no numbers."
+
#. U2gkF
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:8
msgctxt "pagetemplatedialog|PageTemplateDialog"
@@ -25924,116 +26146,182 @@ msgctxt "scgeneralpage|label5"
msgid "_Tab stops:"
msgstr "_Tab stops:"
+#. akEMb
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:72
+msgctxt "extended_tip|tabmf"
+msgid "Defines the tab stops distance."
+msgstr "Defines the tab stops distance."
+
+#. iwwhu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:87
+msgctxt "extended_tip|unitlb"
+msgid "Defines the unit of measure in spreadsheets."
+msgstr "Defines the unit of measure in spreadsheets."
+
#. zzQpA
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:94
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:104
msgctxt "scgeneralpage|label1"
msgid "Metrics"
msgstr "Metrics"
#. ZbcRD
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:127
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:137
msgctxt "scgeneralpage|alwaysrb"
msgid "_Always (from trusted locations)"
msgstr "_Always (from trusted locations)"
#. 3baZU
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:144
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:154
msgctxt "scgeneralpage|requestrb"
msgid "_On request"
msgstr "_On request"
#. AESok
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:162
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:172
msgctxt "scgeneralpage|neverrb"
msgid "_Never"
msgstr "_Never"
#. GDxLR
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:186
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:196
msgctxt "scgeneralpage|label6"
msgid "Update links when opening"
msgstr "Update links when opening"
#. GGhDQ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:220
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:230
msgctxt "scgeneralpage|editmodecb"
msgid "Press Enter to switch to _edit mode"
msgstr "Press Enter to switch to _edit mode"
+#. qVJpA
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:239
+msgctxt "extended_tip|editmodecb"
+msgid "Allows you to immediately edit the selected cell after pressing the Enter key."
+msgstr "Allows you to immediately edit the selected cell after pressing the Enter key."
+
#. zzFGH
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:236
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:251
msgctxt "scgeneralpage|formatcb"
msgid "Expand _formatting"
msgstr "Expand _formatting"
+#. 8fqgH
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:260
+msgctxt "extended_tip|formatcb"
+msgid "Specifies whether to automatically apply the formatting attributes of the selected cell to the empty adjacent cells."
+msgstr "Specifies whether to automatically apply the formatting attributes of the selected cell to the empty adjacent cells."
+
#. AzkVC
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:252
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:272
msgctxt "scgeneralpage|exprefcb"
msgid "Expand _references when new columns/rows are inserted"
msgstr "Expand _references when new columns/rows are inserted"
+#. yybGX
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:281
+msgctxt "extended_tip|exprefcb"
+msgid "Specifies whether to expand references when inserting columns or rows adjacent to the reference range. This is only possible if the reference range, where the column or row is inserted, originally spanned at least two cells in the desired direction."
+msgstr "Specifies whether to expand references when inserting columns or rows adjacent to the reference range. This is only possible if the reference range, where the column or row is inserted, originally spanned at least two cells in the desired direction."
+
#. 6oRpB
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:273
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:298
msgctxt "scgeneralpage|alignlb"
msgid "Down"
msgstr "Down"
#. tC8Do
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:274
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:299
msgctxt "scgeneralpage|alignlb"
msgid "Right"
msgstr "Right"
#. AAUJ2
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:275
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:300
msgctxt "scgeneralpage|alignlb"
msgid "Up"
msgstr "Up"
#. p9JAq
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:276
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:301
msgctxt "scgeneralpage|alignlb"
msgid "Left"
msgstr "Left"
+#. 2dTCJ
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:305
+msgctxt "extended_tip|alignlb"
+msgid "Determines the direction that the cursor in the spreadsheet will move after you press the Enter key."
+msgstr "Determines the direction that the cursor in the spreadsheet will move after you press the Enter key."
+
#. dnDdz
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:286
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:316
msgctxt "scgeneralpage|aligncb"
msgid "Press Enter to _move selection"
msgstr "Press Enter to _move selection"
#. UStnu
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:301
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:331
msgctxt "scgeneralpage|legacy_cell_selection_cb"
msgid "Position cell reference with selection"
msgstr "Position cell reference with selection"
+#. zwsR4
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:340
+msgctxt "extended_tip|legacy_cell_selection_cb"
+msgid ""
+"With the option set, expanding a selection (with Command\n"
+" Ctrl +Shift+Down/Up) jumps to the end of the range in the column that was added as last to the initial selection.\n"
+" When the option is not set, expanding a selection (with CommandCtrl+Shift\n"
+" +Down/Up) jumps to the end of the range in the column where selecting the cell range was started.\n"
+" The same of course applies when extending a selection on rows, with CommandCtrl+\n"
+" Shift+Left/Right."
+msgstr ""
+
#. S2fGF
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:317
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:357
msgctxt "scgeneralpage|replwarncb"
msgid "Show overwrite _warning when pasting data"
msgstr "Show overwrite _warning when pasting data"
+#. yDGPC
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:366
+msgctxt "extended_tip|replwarncb"
+msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
+msgstr "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
+
#. LFenu
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:333
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:378
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Use printer metrics for text formatting"
+#. ECUd7
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:386
+msgctxt "extended_tip|textfmtcb"
+msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
+msgstr "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
+
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:348
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:398
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Highlight sele_ction in column/row headers"
+#. payBv
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:407
+msgctxt "extended_tip|markhdrcb"
+msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
+msgstr "Specifies whether to highlight column and row headers in the selected columns or rows."
+
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:364
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:419
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Update references when sorting range of cells"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:385
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:440
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Input Settings"
@@ -28240,210 +28528,336 @@ msgctxt "tpviewpage|formula"
msgid "_Formulas"
msgstr "_Formulae"
+#. NZfqW
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:42
+msgctxt "extended_tip|formula"
+msgid "Specifies whether to show formulas instead of results in the cells."
+msgstr "Specifies whether to show formulae instead of results in the cells."
+
#. a9dGg
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:48
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:53
msgctxt "tpviewpage|nil"
msgid "Zero val_ues"
msgstr "Zero val_ues"
+#. p3GbC
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:62
+msgctxt "extended_tip|nil"
+msgid "Specifies whether to show numbers with the value of 0."
+msgstr "Specifies whether to show numbers with the value of 0."
+
#. CVAZD
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:63
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:73
msgctxt "tpviewpage|annot"
msgid "_Comment indicator"
msgstr "_Comment indicator"
+#. gbz6Y
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:82
+msgctxt "extended_tip|annot"
+msgid "Specifies that a small rectangle in the top right corner of the cell indicates that a comment exists. The comment will be shown only when you enable tips under %PRODUCTNAME - General in the Options dialog box."
+msgstr "Specifies that a small rectangle in the top right corner of the cell indicates that a comment exists. The comment will be shown only when you enable tips under %PRODUCTNAME - General in the Options dialogue box."
+
#. G6GjE
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:78
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:93
msgctxt "tpviewpage|value"
msgid "Value h_ighlighting"
msgstr "Value h_ighlighting"
+#. Ve6Bg
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:102
+msgctxt "extended_tip|value"
+msgid "Mark the Value highlighting box to show the cell contents in different colors, depending on type. Text cells are formatted in black, formulas in green, number cells in blue, and protected cells are shown with light grey background, no matter how their display is formatted."
+msgstr "Mark the Value highlighting box to show the cell contents in different colours, depending on type. Text cells are formatted in black, formulas in green, number cells in blue, and protected cells are shown with light grey background, no matter how their display is formatted."
+
#. ah84V
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:93
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:113
msgctxt "tpviewpage|anchor"
msgid "_Anchor"
msgstr "_Anchor"
+#. B5SJi
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:122
+msgctxt "extended_tip|anchor"
+msgid "Specifies whether the anchor icon is displayed when an inserted object, such as a graphic, is selected."
+msgstr "Specifies whether the anchor icon is displayed when an inserted object, such as a graphic, is selected."
+
#. XBGqd
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:108
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:133
msgctxt "tpviewpage|clipmark"
msgid "Te_xt overflow"
msgstr "Te_xt overflow"
+#. qSy8Z
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:142
+msgctxt "extended_tip|clipmark"
+msgid "If a cell contains text that is wider than the width of the cell, the text is displayed over empty neighboring cells in the same row. If there is no empty neighboring cell, a small triangle at the cell border indicates that the text continues."
+msgstr "If a cell contains text that is wider than the width of the cell, the text is displayed over empty neighbouring cells in the same row. If there is no empty neighbouring cell, a small triangle at the cell border indicates that the text continues."
+
#. aqEWS
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:123
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:153
msgctxt "tpviewpage|rangefind"
msgid "_Show references in color"
msgstr "_Show references in colour"
+#. hSxKG
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:162
+msgctxt "extended_tip|rangefind"
+msgid "Specifies that each reference is highlighted in color in the formula. The cell range is also enclosed by a colored border as soon as the cell containing the reference is selected for editing."
+msgstr "Specifies that each reference is highlighted in colour in the formula. The cell range is also enclosed by a coloured border as soon as the cell containing the reference is selected for editing."
+
#. qtccR
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:144
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:179
msgctxt "tpviewpage|label4"
msgid "Display"
msgstr "Display"
#. oCEpm
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:174
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:209
msgctxt "tpviewpage|rowcolheader"
msgid "Colu_mn/row headers"
msgstr "Colu_mn/row headers"
+#. sF7Bk
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:218
+msgctxt "extended_tip|rowcolheader"
+msgid "Specifies whether to display row and column headers."
+msgstr "Specifies whether to display row and column headers."
+
#. WAwjG
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:189
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:229
msgctxt "tpviewpage|hscroll"
msgid "Hori_zontal scroll bar"
msgstr "Hori_zontal scroll bar"
+#. EpixW
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:238
+msgctxt "extended_tip|hscroll"
+msgid "Specifies whether to display a horizontal scrollbar at the bottom of the document window."
+msgstr "Specifies whether to display a horizontal scrollbar at the bottom of the document window."
+
#. PZvCk
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:204
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:249
msgctxt "tpviewpage|vscroll"
msgid "_Vertical scroll bar"
msgstr "_Vertical scroll bar"
+#. yhyGB
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:258
+msgctxt "extended_tip|vscroll"
+msgid "Specifies whether to display a vertical scrollbar at the right of the document window."
+msgstr "Specifies whether to display a vertical scrollbar at the right of the document window."
+
#. rPmMd
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:219
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:269
msgctxt "tpviewpage|tblreg"
msgid "Sh_eet tabs"
msgstr "Sh_eet tabs"
+#. aBrX6
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:278
+msgctxt "extended_tip|tblreg"
+msgid "Specifies whether to display the sheet tabs at the bottom of the spreadsheet document."
+msgstr "Specifies whether to display the sheet tabs at the bottom of the spreadsheet document."
+
#. WJSnC
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:234
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Outline symbols"
+#. hhB5n
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:298
+msgctxt "extended_tip|outline"
+msgid "If you have defined an outline, the Outline symbols option specifies whether to view the outline symbols at the border of the sheet."
+msgstr "If you have defined an outline, the Outline symbols option specifies whether to view the outline symbols at the border of the sheet."
+
#. jJ4uB
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:249
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:309
msgctxt "tpviewpage|summary"
msgid "Summary o_n search"
msgstr "Summary o_n search"
#. Ws4Ev
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:271
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:331
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Window"
#. g4FQY
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:297
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:357
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_ynchronise sheets"
+#. C5GAq
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:366
+msgctxt "extended_tip|synczoom"
+msgid "If checked, all sheets are shown with the same zoom factor. If not checked, each sheet can have its own zoom factor."
+msgstr "If marked, all sheets are shown with the same zoom factor. If not marked, each sheet can have its own zoom factor."
+
#. pEFjC
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:312
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:377
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoom"
+#. yajBD
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:424
+msgctxt "extended_tip|color"
+msgid "Specifies a color for the grid lines in the current document."
+msgstr "Specifies a colour for the grid lines in the current document."
+
#. bF3Yr
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:368
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:437
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Grid lines:"
#. E2U6D
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:451
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Colour:"
#. BUibB
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:397
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:466
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Show"
#. GXPYd
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:398
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:467
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Show on coloured cells"
#. ucTDZ
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:468
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Hide"
+#. vFtNT
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:472
+msgctxt "extended_tip|grid"
+msgid "Specifies when grid lines will be displayed. Default is to display grid lines only on cells that do not have a background color. You can choose to also display grid lines on cells with background color, or to hide them."
+msgstr "Specifies when grid lines will be displayed. Default is to display grid lines only on cells that do not have a background colour. You can choose to also display grid lines on cells with background colour, or to hide them."
+
#. ShHLd
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:415
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:489
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Page breaks"
+#. Vc5tW
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:498
+msgctxt "extended_tip|break"
+msgid "Specifies whether to view the page breaks within a defined print area."
+msgstr "Specifies whether to view the page breaks within a defined print area."
+
#. xkuBL
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:430
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:509
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Helplines _while moving"
+#. KGEQG
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
+msgctxt "extended_tip|guideline"
+msgid "Specifies whether to view guides when moving drawings, frames, graphics and other objects."
+msgstr "Specifies whether to view guides when moving drawings, frames, graphics and other objects."
+
#. Cb4AM
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:451
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:535
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Visual Aids"
#. Qd5Rp
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:485
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:569
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jects/Images:"
#. BCaDn
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:499
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Cha_rts:"
#. q544D
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:513
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:597
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Drawing objects:"
#. mpELg
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:528
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:612
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Show"
#. Kx6yJ
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:529
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:613
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Hide"
+#. oKpbX
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
+msgctxt "extended_tip|objgrf"
+msgid "Defines if objects and graphics are shown or hidden."
+msgstr "Defines if objects and graphics are shown or hidden."
+
#. wFBeZ
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:542
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:631
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Show"
#. H7MAB
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:543
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:632
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Hide"
+#. oVE9C
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:636
+msgctxt "extended_tip|diagram"
+msgid "Defines if charts in your document are shown or hidden."
+msgstr "Defines if charts in your document are shown or hidden."
+
#. YaiTQ
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:556
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:650
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Show"
#. DST5a
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:557
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:651
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Hide"
+#. FDGKD
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:655
+msgctxt "extended_tip|draw"
+msgid "Defines if drawing objects in your document are shown or hidden."
+msgstr "Defines if drawing objects in your document are shown or hidden."
+
#. E6GxC
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:573
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:672
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objects"
+#. aFAnX
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:696
+msgctxt "extended_tip|TpViewPage"
+msgid "Defines which elements of the %PRODUCTNAME Calc main window are displayed. You can also show or hide highlighting of values in tables."
+msgstr "Defines which elements of the %PRODUCTNAME Calc main window are displayed. You can also show or hide highlighting of values in tables."
+
#. AnLEa
#: sc/uiconfig/scalc/ui/ttestdialog.ui:102
msgctxt "ttestdialog|variable1-range-label"
diff --git a/source/en-GB/sd/messages.po b/source/en-GB/sd/messages.po
index 3ba5eea1d17..e39aa30d125 100644
--- a/source/en-GB/sd/messages.po
+++ b/source/en-GB/sd/messages.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-07-21 11:19+0200\n"
+"POT-Creation-Date: 2020-08-21 17:59+0200\n"
"PO-Revision-Date: 2020-08-07 21:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/en_GB/>\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 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562933451.000000\n"
#. WDjkB
@@ -6851,132 +6851,216 @@ msgctxt "optimpressgeneralpage|startwithwizard"
msgid "Start with _Template Selection"
msgstr "Start with _Template Selection"
+#. L97gv
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:68
+msgctxt "extended_tip|startwithwizard"
+msgid "Specifies whether to activate the Select a Template window when opening a presentation with File - New - Presentation."
+msgstr "Specifies whether to activate the Select a Template window when opening a presentation with File - New - Presentation."
+
#. 5DjoQ
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:80
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:85
msgctxt "optimpressgeneralpage|newdoclbl"
msgid "New Document"
msgstr "New Document"
#. JGppH
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:113
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:118
msgctxt "optimpressgeneralpage|qickedit"
msgid "Allow quick editing"
msgstr "Allow quick editing"
+#. vmsrU
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:127
+msgctxt "extended_tip|qickedit"
+msgid "If on, you can edit text immediately after clicking a text object. If off, you must double-click to edit text."
+msgstr "If on, you can edit text immediately after clicking a text object. If off, you must double-click to edit text."
+
#. dn7AQ
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:128
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:138
msgctxt "optimpressgeneralpage|textselected"
msgid "Only text area selectable"
msgstr "Only text area selectable"
+#. EQqRZ
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:148
+msgctxt "extended_tip|textselected"
+msgid "Specifies whether to select a text box by clicking the text."
+msgstr ""
+
#. 9SB2g
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:150
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:165
msgctxt "optimpressgeneralpage|label2"
msgid "Text Objects"
msgstr "Text Objects"
#. fWbDG
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:184
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:199
msgctxt "optimpressgeneralpage|copywhenmove"
msgid "Copy when moving"
msgstr "Copy when moving"
+#. a92dE
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:208
+msgctxt "extended_tip|copywhenmove"
+msgid "If enabled, a copy is created when you move an object while holding down the Ctrl key."
+msgstr "If enabled, a copy is created when you move an object while holding down the Ctrl key."
+
#. QdHNF
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:206
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:226
msgctxt "optimpressgeneralpage|label6"
msgid "Unit of _measurement:"
msgstr "Unit of _measurement:"
-#. S8VMD
+#. vhiR2
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:243
+msgctxt "extended_tip|units"
+msgid "Determines the Unit of measurement for presentations."
+msgstr "Determines the Unit of measurement for presentations."
+
+#. S8VMD
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:268
msgctxt "optimpressgeneralpage|tapstoplabel"
msgid "Ta_b stops:"
msgstr "Ta_b stops:"
+#. WQBqF
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:289
+msgctxt "extended_tip|metricFields"
+msgid "Defines the spacing between tab stops."
+msgstr "Defines the spacing between tab stops."
+
#. oSmuC
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:276
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:306
msgctxt "optimpressgeneralpage|objalwymov"
msgid "Objects always moveable"
msgstr "Objects always moveable"
+#. cXLAT
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:315
+msgctxt "extended_tip|objalwymov"
+msgid "Specifies that you want to move an object with the Rotate tool enabled. If Object always moveable is not marked, the Rotate tool can only be used to rotate an object."
+msgstr "Specifies that you want to move an object with the Rotate tool enabled. If Object always moveable is not marked, the Rotate tool can only be used to rotate an object."
+
#. 8cyDE
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:291
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:326
msgctxt "optimpressgeneralpage|distortcb"
msgid "Do not distort objects in curve"
msgstr "Do not distort objects in curve"
#. TDrpy
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:307
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:342
msgctxt "optimpressgeneralpage|backgroundback"
msgid "Use background cache"
msgstr "Use background cache"
+#. Di3Vo
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:351
+msgctxt "extended_tip|backgroundback"
+msgid "Specifies whether to use the cache for displaying objects on the master slide."
+msgstr "Specifies whether to use the cache for displaying objects on the master slide."
+
#. psubE
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:329
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:369
msgctxt "optimpressgeneralpage|label4"
msgid "Settings"
msgstr "Settings"
#. CrRmE
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:366
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:406
msgctxt "optimpressgeneralpage|label8"
msgid "_Drawing scale:"
msgstr "_Drawing scale:"
#. j7n3M
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:380
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:420
msgctxt "optimpressgeneralpage|widthlbl"
msgid "Page _width:"
msgstr "Page _width:"
#. Aay7y
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:394
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:434
msgctxt "optimpressgeneralpage|heightlbl"
msgid "Page _height:"
msgstr "Page _height:"
+#. HVKhs
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:535
+msgctxt "extended_tip|scaleBox"
+msgid "Determines the drawing scale on the rulers."
+msgstr "Determines the drawing scale on the rulers."
+
#. E2cEn
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:513
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:558
msgctxt "optimpressgeneralpage|label5"
msgid "Scale"
msgstr "Scale"
#. 3BkYq
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:546
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:591
msgctxt "optimpressgeneralpage|printermetrics"
msgid "Us_e printer metrics for document formatting"
msgstr "Us_e printer metrics for document formatting"
+#. mTuAd
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:600
+msgctxt "extended_tip|printermetrics"
+msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen. If this box is not checked, a printer independent layout will be used for screen display and printing."
+msgstr "Specifies that printer metrics are applied for printing and also for formatting the display on the screen. If this box is not checked, a printer independent layout will be used for screen display and printing."
+
#. VVZZf
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:561
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:611
msgctxt "optimpressgeneralpage|cbCompatibility"
msgid "Add _spacing between paragraphs and tables"
msgstr "Add _spacing between paragraphs and tables"
+#. 285BX
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:620
+msgctxt "extended_tip|cbCompatibility"
+msgid "Specifies that %PRODUCTNAME Impress calculates the paragraph spacing exactly like Microsoft PowerPoint."
+msgstr "Specifies that %PRODUCTNAME Impress calculates the paragraph spacing exactly like Microsoft PowerPoint."
+
#. PaYjQ
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:582
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:637
msgctxt "optimpressgeneralpage|label1"
msgid "Compatibility"
msgstr "Compatibility"
#. qimBE
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:617
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:672
msgctxt "optimpressgeneralpage|enremotcont"
msgid "Enable remote control"
msgstr "Enable remote control"
+#. 7iTJt
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:681
+msgctxt "extended_tip|enremotcont"
+msgid "Specifies that you want to enable Bluetooth remote control while Impress is running."
+msgstr "Specifies that you want to enable Bluetooth remote control while Impress is running."
+
#. EE26t
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:632
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:692
msgctxt "optimpressgeneralpage|enprsntcons"
msgid "Enable Presenter Console"
msgstr "Enable Presenter Console"
+#. dAFGz
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:701
+msgctxt "extended_tip|enprsntcons"
+msgid "Specifies that you want to enable the Presenter Console during slideshows."
+msgstr "Specifies that you want to enable the Presenter Console during slideshows."
+
#. txHfw
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:653
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:718
msgctxt "optimpressgeneralpage|label7"
msgid "Presentation"
msgstr "Presentation"
+#. 67gzU
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:735
+msgctxt "extended_tip|OptSavePage"
+msgid "Defines the general options for drawing or presentation documents."
+msgstr "Defines the general options for drawing or presentation documents."
+
#. sGCUC
#: sd/uiconfig/simpress/ui/photoalbum.ui:16
msgctxt "photoalbum|PhotoAlbumCreatorDialog"
@@ -7223,132 +7307,222 @@ msgctxt "prntopts|pagedefaultrb"
msgid "Default"
msgstr "Default"
+#. hajt3
+#: sd/uiconfig/simpress/ui/prntopts.ui:46
+msgctxt "extended_tip|pagedefaultrb"
+msgid "Specifies that you do not want to further scale pages when printing."
+msgstr "Specifies that you do not want to further scale pages when printing."
+
#. Azbxx
-#: sd/uiconfig/simpress/ui/prntopts.ui:52
+#: sd/uiconfig/simpress/ui/prntopts.ui:57
msgctxt "prntopts|fittopgrb"
msgid "_Fit to page"
msgstr "_Fit to page"
+#. BY9Lo
+#: sd/uiconfig/simpress/ui/prntopts.ui:67
+msgctxt "extended_tip|fittopgrb"
+msgid "Specifies whether to scale down objects that are beyond the margins of the current printer, so that they fit on the paper in the printer."
+msgstr "Specifies whether to scale down objects that are beyond the margins of the current printer, so that they fit on the paper in the printer."
+
#. 7Jqsg
-#: sd/uiconfig/simpress/ui/prntopts.ui:68
+#: sd/uiconfig/simpress/ui/prntopts.ui:78
msgctxt "prntopts|tilepgrb"
msgid "_Tile pages"
msgstr "_Tile pages"
+#. XVA4W
+#: sd/uiconfig/simpress/ui/prntopts.ui:88
+msgctxt "extended_tip|tilepgrb"
+msgid "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, several pages or slides will be printed on one page of paper."
+msgstr "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, several pages or slides will be printed on one page of paper."
+
#. DRu9w
-#: sd/uiconfig/simpress/ui/prntopts.ui:84
+#: sd/uiconfig/simpress/ui/prntopts.ui:99
msgctxt "prntopts|papertryfrmprntrcb"
msgid "Paper tray from printer s_ettings"
msgstr "Paper tray from printer s_ettings"
+#. KFsSk
+#: sd/uiconfig/simpress/ui/prntopts.ui:108
+msgctxt "extended_tip|papertryfrmprntrcb"
+msgid "Determines that the paper tray to be used is the one defined in the printer setup."
+msgstr "Determines that the paper tray to be used is the one defined in the printer setup."
+
#. LXUhA
-#: sd/uiconfig/simpress/ui/prntopts.ui:99
+#: sd/uiconfig/simpress/ui/prntopts.ui:119
msgctxt "prntopts|brouchrb"
msgid "B_rochure"
msgstr "B_rochure"
+#. 96Suw
+#: sd/uiconfig/simpress/ui/prntopts.ui:129
+msgctxt "extended_tip|brouchrb"
+msgid "Select the Brochure option to print the document in brochure format."
+msgstr "Select the Brochure option to print the document in brochure format."
+
#. QiBFz
-#: sd/uiconfig/simpress/ui/prntopts.ui:126
+#: sd/uiconfig/simpress/ui/prntopts.ui:151
msgctxt "prntopts|frontcb"
msgid "Fr_ont"
msgstr "Fr_ont"
+#. afFiH
+#: sd/uiconfig/simpress/ui/prntopts.ui:163
+msgctxt "extended_tip|frontcb"
+msgid "Select Front to print the front of a brochure."
+msgstr "Select Front to print the front of a brochure."
+
#. RmDFe
-#: sd/uiconfig/simpress/ui/prntopts.ui:145
+#: sd/uiconfig/simpress/ui/prntopts.ui:175
msgctxt "prntopts|backcb"
msgid "Ba_ck"
msgstr "Ba_ck"
+#. B3z27
+#: sd/uiconfig/simpress/ui/prntopts.ui:187
+msgctxt "extended_tip|backcb"
+msgid "Select Back to print the back of a brochure."
+msgstr "Select Back to print the back of a brochure."
+
#. NsWL6
-#: sd/uiconfig/simpress/ui/prntopts.ui:178
+#: sd/uiconfig/simpress/ui/prntopts.ui:213
msgctxt "prntopts|label3"
msgid "Page Options"
msgstr "Page Options"
#. Cwizr
-#: sd/uiconfig/simpress/ui/prntopts.ui:211
+#: sd/uiconfig/simpress/ui/prntopts.ui:246
msgctxt "prntopts|pagenmcb"
msgid "_Page name"
msgstr "_Page name"
+#. tFJRe
+#: sd/uiconfig/simpress/ui/prntopts.ui:255
+msgctxt "extended_tip|pagenmcb"
+msgid "Specifies whether to print the page name."
+msgstr "Specifies whether to print the page name."
+
#. XeD9w
-#: sd/uiconfig/simpress/ui/prntopts.ui:226
+#: sd/uiconfig/simpress/ui/prntopts.ui:266
msgctxt "prntopts|datecb"
msgid "D_ate"
msgstr "D_ate"
+#. RFT4B
+#: sd/uiconfig/simpress/ui/prntopts.ui:275
+msgctxt "extended_tip|datecb"
+msgid "Specifies whether to print the current date."
+msgstr "Specifies whether to print the current date."
+
#. 4Dm6A
-#: sd/uiconfig/simpress/ui/prntopts.ui:241
+#: sd/uiconfig/simpress/ui/prntopts.ui:286
msgctxt "prntopts|timecb"
msgid "Ti_me"
msgstr "Ti_me"
+#. aPHPX
+#: sd/uiconfig/simpress/ui/prntopts.ui:295
+msgctxt "extended_tip|timecb"
+msgid "Specifies whether to print the current time."
+msgstr "Specifies whether to print the current time."
+
#. dBXeA
-#: sd/uiconfig/simpress/ui/prntopts.ui:256
+#: sd/uiconfig/simpress/ui/prntopts.ui:306
msgctxt "prntopts|hiddenpgcb"
msgid "H_idden pages"
msgstr "H_idden pages"
+#. rS3jY
+#: sd/uiconfig/simpress/ui/prntopts.ui:315
+msgctxt "extended_tip|hiddenpgcb"
+msgid "Specifies whether to print the pages that are currently hidden from the presentation."
+msgstr "Specifies whether to print the pages that are currently hidden from the presentation."
+
#. XuHA2
-#: sd/uiconfig/simpress/ui/prntopts.ui:277
+#: sd/uiconfig/simpress/ui/prntopts.ui:332
msgctxt "prntopts|printlbl"
msgid "Print"
msgstr "Print"
#. 2psp5
-#: sd/uiconfig/simpress/ui/prntopts.ui:321
+#: sd/uiconfig/simpress/ui/prntopts.ui:376
msgctxt "prntopts|defaultrb"
msgid "Default"
msgstr "Default"
+#. pjmw3
+#: sd/uiconfig/simpress/ui/prntopts.ui:386
+msgctxt "extended_tip|defaultrb"
+msgid "Specifies that you want to print in original colors."
+msgstr "Specifies that you want to print in original colours."
+
#. sFK9C
-#: sd/uiconfig/simpress/ui/prntopts.ui:337
+#: sd/uiconfig/simpress/ui/prntopts.ui:397
msgctxt "prntopts|grayscalerb"
msgid "Gra_yscale"
msgstr "Gre_yscale"
+#. 85Da5
+#: sd/uiconfig/simpress/ui/prntopts.ui:407
+msgctxt "extended_tip|grayscalerb"
+msgid "Specifies that you want to print colors as grayscale."
+msgstr "Specifies that you want to print colours as greyscale."
+
#. ibjkX
-#: sd/uiconfig/simpress/ui/prntopts.ui:353
+#: sd/uiconfig/simpress/ui/prntopts.ui:418
msgctxt "prntopts|blackwhiterb"
msgid "Black & _white"
msgstr "Black & _white"
+#. CcezY
+#: sd/uiconfig/simpress/ui/prntopts.ui:428
+msgctxt "extended_tip|blackwhiterb"
+msgid "Specifies that you want to print the document in black and white."
+msgstr "Specifies that you want to print the document in black and white."
+
#. PUgsP
-#: sd/uiconfig/simpress/ui/prntopts.ui:375
+#: sd/uiconfig/simpress/ui/prntopts.ui:445
msgctxt "prntopts|label2"
msgid "Quality"
msgstr "Quality"
#. AEqGw
-#: sd/uiconfig/simpress/ui/prntopts.ui:408
+#: sd/uiconfig/simpress/ui/prntopts.ui:478
msgctxt "prntopts|drawingcb"
msgid "Drawing"
msgstr "Drawing"
#. rQT7U
-#: sd/uiconfig/simpress/ui/prntopts.ui:423
+#: sd/uiconfig/simpress/ui/prntopts.ui:493
msgctxt "prntopts|notecb"
msgid "Notes"
msgstr "Notes"
#. CvxXM
-#: sd/uiconfig/simpress/ui/prntopts.ui:438
+#: sd/uiconfig/simpress/ui/prntopts.ui:508
msgctxt "prntopts|handoutcb"
msgid "Handouts"
msgstr "Handouts"
#. sGvpE
-#: sd/uiconfig/simpress/ui/prntopts.ui:453
+#: sd/uiconfig/simpress/ui/prntopts.ui:523
msgctxt "prntopts|outlinecb"
msgid "Outline"
msgstr "Outline"
#. AjCQi
-#: sd/uiconfig/simpress/ui/prntopts.ui:474
+#: sd/uiconfig/simpress/ui/prntopts.ui:544
msgctxt "prntopts|contentlbl"
msgid "Content"
msgstr "Content"
+#. XxPhN
+#: sd/uiconfig/simpress/ui/prntopts.ui:566
+msgctxt "extended_tip|prntopts"
+msgid "Specifies print settings within a drawing or presentation document."
+msgstr "Specifies print settings within a drawing or presentation document."
+
#. QRYoE
#: sd/uiconfig/simpress/ui/publishingdialog.ui:21
msgctxt "publishingdialog|PublishingDialog"
@@ -7793,30 +7967,60 @@ msgctxt "sdviewpage|ruler"
msgid "_Rulers visible"
msgstr "_Rulers visible"
+#. mUwRB
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:35
+msgctxt "extended_tip|ruler"
+msgid "Specifies whether to display the rulers at the top and to the left of the work area."
+msgstr "Specifies whether to display the rulers at the top and to the left of the work area."
+
#. RPDaD
-#: sd/uiconfig/simpress/ui/sdviewpage.ui:42
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:47
msgctxt "sdviewpage|dragstripes"
msgid "_Helplines while moving"
msgstr "_Helplines while moving"
+#. B2eHZ
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:56
+msgctxt "extended_tip|dragstripes"
+msgid "Specifies whether to display guides when moving an object."
+msgstr "Specifies whether to display guides when moving an object."
+
#. Grues
-#: sd/uiconfig/simpress/ui/sdviewpage.ui:58
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:68
msgctxt "sdviewpage|handlesbezier"
msgid "_All control points in Bézier editor"
msgstr "_All control points in Bézier editor"
+#. rRDtR
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:77
+msgctxt "extended_tip|handlesbezier"
+msgid "Displays the control points of all Bézier points if you have previously selected a Bézier curve. If the All control points in Bézier editor option is not marked, only the control points of the selected Bézier points will be visible."
+msgstr "Displays the control points of all Bézier points if you have previously selected a Bézier curve. If the All control points in Bézier editor option is not marked, only the control points of the selected Bézier points will be visible."
+
#. hz6x7
-#: sd/uiconfig/simpress/ui/sdviewpage.ui:74
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:89
msgctxt "sdviewpage|moveoutline"
msgid "_Contour of each individual object"
msgstr "_Contour of each individual object"
+#. fWu42
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:98
+msgctxt "extended_tip|moveoutline"
+msgid "%PRODUCTNAME displays the contour line of each individual object when moving this object."
+msgstr "%PRODUCTNAME displays the contour line of each individual object when moving this object."
+
#. kJGzf
-#: sd/uiconfig/simpress/ui/sdviewpage.ui:96
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:116
msgctxt "sdviewpage|label1"
msgid "Display"
msgstr "Display"
+#. peBce
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:124
+msgctxt "extended_tip|SdViewPage"
+msgid "Specifies the available display modes."
+msgstr "Specifies the available display modes."
+
#. 7DgNY
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:36
msgctxt "sidebarslidebackground|label2"
diff --git a/source/en-GB/sfx2/messages.po b/source/en-GB/sfx2/messages.po
index 904249b3c02..5766ee26020 100644
--- a/source/en-GB/sfx2/messages.po
+++ b/source/en-GB/sfx2/messages.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-08-17 12:39+0200\n"
+"POT-Creation-Date: 2020-08-21 17:59+0200\n"
"PO-Revision-Date: 2020-08-07 21:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/en_GB/>\n"
@@ -3259,180 +3259,306 @@ msgctxt "optprintpage|printer"
msgid "_Printer"
msgstr "_Printer"
+#. PUG9y
+#: sfx2/uiconfig/ui/optprintpage.ui:47
+msgctxt "extended_tip|printer"
+msgid "Specifies whether the print settings apply to direct printing or to printing to a file."
+msgstr "Specifies whether the print settings apply to direct printing or to printing to a file."
+
#. Eyv8g
-#: sfx2/uiconfig/ui/optprintpage.ui:53
+#: sfx2/uiconfig/ui/optprintpage.ui:58
msgctxt "optprintpage|file"
msgid "Print to _file"
msgstr "Print to _file"
+#. TMHvE
+#: sfx2/uiconfig/ui/optprintpage.ui:68
+msgctxt "extended_tip|file"
+msgid "Specifies whether the print settings apply to direct printing or to printing to a file."
+msgstr "Specifies whether the print settings apply to direct printing or to printing to a file."
+
#. C8jvp
-#: sfx2/uiconfig/ui/optprintpage.ui:75
+#: sfx2/uiconfig/ui/optprintpage.ui:85
msgctxt "optprintpage|label4"
msgid "Settings for"
msgstr "Settings for"
#. 2T5Af
-#: sfx2/uiconfig/ui/optprintpage.ui:108
+#: sfx2/uiconfig/ui/optprintpage.ui:118
msgctxt "optprintpage|papersize"
msgid "P_aper size"
msgstr "P_aper size"
+#. yj4DA
+#: sfx2/uiconfig/ui/optprintpage.ui:127
+msgctxt "extended_tip|papersize"
+msgid "Mark this check box if a certain paper size is needed for printing the current document."
+msgstr "Mark this check box if a certain paper size is needed for printing the current document."
+
#. stDFq
-#: sfx2/uiconfig/ui/optprintpage.ui:123
+#: sfx2/uiconfig/ui/optprintpage.ui:138
msgctxt "optprintpage|paperorient"
msgid "Pap_er orientation"
msgstr "Pap_er orientation"
+#. FdFNk
+#: sfx2/uiconfig/ui/optprintpage.ui:147
+msgctxt "extended_tip|paperorient"
+msgid "Mark this check box if you need a certain paper orientation for printing the current document."
+msgstr "Mark this check box if you need a certain paper orientation for printing the current document."
+
#. L6rtF
-#: sfx2/uiconfig/ui/optprintpage.ui:138
+#: sfx2/uiconfig/ui/optprintpage.ui:158
msgctxt "optprintpage|trans"
msgid "_Transparency"
msgstr "_Transparency"
+#. F6nF9
+#: sfx2/uiconfig/ui/optprintpage.ui:167
+msgctxt "extended_tip|trans"
+msgid "Mark this check box if you always want to be warned if transparent objects are contained in the document."
+msgstr "Mark this check box if you always want to be warned if transparent objects are contained in the document."
+
#. C5jZN
-#: sfx2/uiconfig/ui/optprintpage.ui:159
+#: sfx2/uiconfig/ui/optprintpage.ui:184
msgctxt "optprintpage|label2"
msgid "Warnings"
msgstr "Warnings"
#. PJFLE
-#: sfx2/uiconfig/ui/optprintpage.ui:190
+#: sfx2/uiconfig/ui/optprintpage.ui:215
msgctxt "optprintpage|reducegrad"
msgid "Reduce _gradient"
msgstr "Reduce _gradient"
+#. GC8dk
+#: sfx2/uiconfig/ui/optprintpage.ui:224
+msgctxt "extended_tip|reducegrad"
+msgid "If this field is marked, gradients are printed with reduced quality."
+msgstr "If this field is marked, gradients are printed with reduced quality."
+
#. skDME
-#: sfx2/uiconfig/ui/optprintpage.ui:220
+#: sfx2/uiconfig/ui/optprintpage.ui:250
msgctxt "optprintpage|reducegradstripes"
msgid "Gradient _stripes:"
msgstr "Gradient _stripes:"
+#. k8zh7
+#: sfx2/uiconfig/ui/optprintpage.ui:260
+msgctxt "extended_tip|reducegradstripes"
+msgid "Specifies the maximum number of gradient stripes for printing."
+msgstr "Specifies the maximum number of gradient stripes for printing."
+
+#. 5HCxT
+#: sfx2/uiconfig/ui/optprintpage.ui:277
+msgctxt "extended_tip|reducegradstep"
+msgid "Specifies the maximum number of gradient stripes for printing."
+msgstr "Specifies the maximum number of gradient stripes for printing."
+
#. W8LE7
-#: sfx2/uiconfig/ui/optprintpage.ui:254
+#: sfx2/uiconfig/ui/optprintpage.ui:294
msgctxt "optprintpage|reducegradcolor"
msgid "Intermediate _color"
msgstr "Intermediate _colour"
+#. TUbxx
+#: sfx2/uiconfig/ui/optprintpage.ui:304
+msgctxt "extended_tip|reducegradcolor"
+msgid "Specifies that gradients are only printed in a single intermediate color."
+msgstr "Specifies that gradients are only printed in a single intermediate colour."
+
#. myMLR
-#: sfx2/uiconfig/ui/optprintpage.ui:284
+#: sfx2/uiconfig/ui/optprintpage.ui:329
msgctxt "optprintpage|label1"
msgid "Reduce Gradient"
msgstr "Reduce Gradient"
+#. abbre
+#: sfx2/uiconfig/ui/optprintpage.ui:337
+msgctxt "extended_tip|frame2"
+msgid "Defines which warnings appear before printing begins."
+msgstr "Defines which warnings appear before printing begins."
+
#. qF2KM
-#: sfx2/uiconfig/ui/optprintpage.ui:325
+#: sfx2/uiconfig/ui/optprintpage.ui:375
msgctxt "optprintpage|reducebitmapnormal"
msgid "N_ormal print quality"
msgstr "N_ormal print quality"
+#. i5T3j
+#: sfx2/uiconfig/ui/optprintpage.ui:385
+msgctxt "extended_tip|reducebitmapnormal"
+msgid "High print quality corresponds to a resolution of 300dpi. Normal print quality corresponds to a resolution of 200dpi. "
+msgstr "High print quality corresponds to a resolution of 300dpi. Normal print quality corresponds to a resolution of 200dpi. "
+
#. EZGK5
-#: sfx2/uiconfig/ui/optprintpage.ui:346
+#: sfx2/uiconfig/ui/optprintpage.ui:401
msgctxt "optprintpage|reducebitmapresol"
msgid "Reso_lution:"
msgstr "Reso_lution:"
+#. q3aJL
+#: sfx2/uiconfig/ui/optprintpage.ui:411
+msgctxt "extended_tip|reducebitmapresol"
+msgid "Specifies the maximum print quality in dpi. The resolution can only be reduced and not increased."
+msgstr "Specifies the maximum print quality in dpi. The resolution can only be reduced and not increased."
+
#. 6ALtE
-#: sfx2/uiconfig/ui/optprintpage.ui:365
+#: sfx2/uiconfig/ui/optprintpage.ui:425
msgctxt "optprintpage|reducebitmapdpi"
msgid "72 DPI"
msgstr "72 DPI"
#. FgpJ3
-#: sfx2/uiconfig/ui/optprintpage.ui:366
+#: sfx2/uiconfig/ui/optprintpage.ui:426
msgctxt "optprintpage|reducebitmapdpi"
msgid "96 DPI"
msgstr "96 DPI"
#. d7BqR
-#: sfx2/uiconfig/ui/optprintpage.ui:367
+#: sfx2/uiconfig/ui/optprintpage.ui:427
msgctxt "optprintpage|reducebitmapdpi"
msgid "150 DPI (Fax)"
msgstr "150 DPI (Fax)"
#. 46imh
-#: sfx2/uiconfig/ui/optprintpage.ui:368
+#: sfx2/uiconfig/ui/optprintpage.ui:428
msgctxt "optprintpage|reducebitmapdpi"
msgid "200 DPI (default)"
msgstr "200 DPI (default)"
#. AsLSp
-#: sfx2/uiconfig/ui/optprintpage.ui:369
+#: sfx2/uiconfig/ui/optprintpage.ui:429
msgctxt "optprintpage|reducebitmapdpi"
msgid "300 DPI"
msgstr "300 DPI"
#. qZJg5
-#: sfx2/uiconfig/ui/optprintpage.ui:370
+#: sfx2/uiconfig/ui/optprintpage.ui:430
msgctxt "optprintpage|reducebitmapdpi"
msgid "600 DPI"
msgstr "600 DPI"
+#. 8KFUc
+#: sfx2/uiconfig/ui/optprintpage.ui:434
+msgctxt "extended_tip|reducebitmapdpi"
+msgid "Specifies the maximum print quality in dpi. The resolution can only be reduced and not increased."
+msgstr "Specifies the maximum print quality in dpi. The resolution can only be reduced and not increased."
+
#. YXTXc
-#: sfx2/uiconfig/ui/optprintpage.ui:386
+#: sfx2/uiconfig/ui/optprintpage.ui:451
msgctxt "optprintpage|reducebitmapoptimal"
msgid "_High print quality"
msgstr "_High print quality"
+#. BdCpv
+#: sfx2/uiconfig/ui/optprintpage.ui:461
+msgctxt "extended_tip|reducebitmapoptimal"
+msgid "High print quality corresponds to a resolution of 300dpi. Normal print quality corresponds to a resolution of 200dpi. "
+msgstr "High print quality corresponds to a resolution of 300dpi. Normal print quality corresponds to a resolution of 200dpi. "
+
#. ySmQe
-#: sfx2/uiconfig/ui/optprintpage.ui:410
+#: sfx2/uiconfig/ui/optprintpage.ui:480
msgctxt "optprintpage|reducebitmap"
msgid "Reduce _bitmaps"
msgstr "Reduce _bitmaps"
+#. nNjfk
+#: sfx2/uiconfig/ui/optprintpage.ui:489
+msgctxt "extended_tip|reducebitmap"
+msgid "Specifies that bitmaps are printed with reduced quality. The resolution can only be reduced and not increased."
+msgstr "Specifies that bitmaps are printed with reduced quality. The resolution can only be reduced and not increased."
+
#. YxX2s
-#: sfx2/uiconfig/ui/optprintpage.ui:431
+#: sfx2/uiconfig/ui/optprintpage.ui:506
msgctxt "optprintpage|label1"
msgid "Reduce Bitmaps"
msgstr "Reduce Bitmaps"
#. B4C76
-#: sfx2/uiconfig/ui/optprintpage.ui:472
+#: sfx2/uiconfig/ui/optprintpage.ui:547
msgctxt "optprintpage|reducetransauto"
msgid "Auto_matically"
msgstr "Auto_matically"
+#. ehRjn
+#: sfx2/uiconfig/ui/optprintpage.ui:557
+msgctxt "extended_tip|reducetransauto"
+msgid "Specifies that the transparency is only printed if the transparent area covers less than a quarter of the entire page."
+msgstr "Specifies that the transparency is only printed if the transparent area covers less than a quarter of the entire page."
+
#. K7P4C
-#: sfx2/uiconfig/ui/optprintpage.ui:488
+#: sfx2/uiconfig/ui/optprintpage.ui:568
msgctxt "optprintpage|reducetransnone"
msgid "_No transparency"
msgstr "_No transparency"
+#. ZuLVY
+#: sfx2/uiconfig/ui/optprintpage.ui:578
+msgctxt "extended_tip|reducetransnone"
+msgid "With this option transparency is never printed."
+msgstr "With this option transparency is never printed."
+
#. 5qQBR
-#: sfx2/uiconfig/ui/optprintpage.ui:512
+#: sfx2/uiconfig/ui/optprintpage.ui:597
msgctxt "optprintpage|reducetrans"
msgid "_Reduce transparency"
msgstr "_Reduce transparency"
+#. yDstT
+#: sfx2/uiconfig/ui/optprintpage.ui:606
+msgctxt "extended_tip|reducetrans"
+msgid "If you mark this field the transparent objects will be printed like normal, non-transparent objects, depending on your selection in the following two option buttons."
+msgstr "If you mark this field the transparent objects will be printed like normal, non-transparent objects, depending on your selection in the following two option buttons."
+
#. B5Cpd
-#: sfx2/uiconfig/ui/optprintpage.ui:533
+#: sfx2/uiconfig/ui/optprintpage.ui:623
msgctxt "optprintpage|label1"
msgid "Reduce Transparency"
msgstr "Reduce Transparency"
#. GAFzh
-#: sfx2/uiconfig/ui/optprintpage.ui:564
+#: sfx2/uiconfig/ui/optprintpage.ui:654
msgctxt "optprintpage|pdf"
msgid "_PDF as standard print job format"
msgstr "_PDF as standard print job format"
#. wm7C7
-#: sfx2/uiconfig/ui/optprintpage.ui:579
+#: sfx2/uiconfig/ui/optprintpage.ui:669
msgctxt "optprintpage|converttogray"
msgid "Con_vert colors to grayscale"
msgstr "Con_vert colours to greyscale"
+#. UNSqH
+#: sfx2/uiconfig/ui/optprintpage.ui:678
+msgctxt "extended_tip|converttogray"
+msgid "Specifies that all colors are printed only as grayscale."
+msgstr "Specifies that all colours are printed only as greyscale."
+
#. CrFLq
-#: sfx2/uiconfig/ui/optprintpage.ui:594
+#: sfx2/uiconfig/ui/optprintpage.ui:689
msgctxt "optprintpage|reducebitmaptrans"
msgid "Include transparent objects"
msgstr "Include transparent objects"
+#. FFAFJ
+#: sfx2/uiconfig/ui/optprintpage.ui:698
+msgctxt "extended_tip|reducebitmaptrans"
+msgid "If this field is marked, the reduction in print quality for bitmaps also applies to the transparent areas of objects."
+msgstr "If this field is marked, the reduction in print quality for bitmaps also applies to the transparent areas of objects."
+
#. bWPko
-#: sfx2/uiconfig/ui/optprintpage.ui:615
+#: sfx2/uiconfig/ui/optprintpage.ui:715
msgctxt "optprintpage|label4"
msgid "Defaults"
msgstr "Defaults"
+#. mMKbc
+#: sfx2/uiconfig/ui/optprintpage.ui:737
+msgctxt "extended_tip|OptPrintPage"
+msgid "Specifies the print setting options."
+msgstr "Specifies the print setting options."
+
#. QrtGb
#: sfx2/uiconfig/ui/password.ui:8
msgctxt "password|PasswordDialog"
diff --git a/source/en-GB/starmath/messages.po b/source/en-GB/starmath/messages.po
index 9b5e7610b41..bd7382882c6 100644
--- a/source/en-GB/starmath/messages.po
+++ b/source/en-GB/starmath/messages.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-07-21 11:20+0200\n"
+"POT-Creation-Date: 2020-08-21 17:59+0200\n"
"PO-Revision-Date: 2020-08-07 21:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/en_GB/>\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 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562933340.000000\n"
#. GrDhX
@@ -2398,30 +2398,60 @@ msgctxt "alignmentdialog|default"
msgid "_Default"
msgstr "_Default"
+#. RK3fb
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:30
+msgctxt "alignmentdialog|extended_tip|default"
+msgid "Click here to save your changes as the default settings for new formulas."
+msgstr "Click here to save your changes as the default settings for new formulae."
+
#. kGsuJ
-#: starmath/uiconfig/smath/ui/alignmentdialog.ui:112
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:117
msgctxt "alignmentdialog|left"
msgid "_Left"
msgstr "_Left"
+#. emVv4
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:127
+msgctxt "alignmentdialog|extended_tip|left"
+msgid "Aligns the selected elements of a formula to the left."
+msgstr "Aligns the selected elements of a formula to the left."
+
#. v8DVF
-#: starmath/uiconfig/smath/ui/alignmentdialog.ui:129
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:139
msgctxt "alignmentdialog|center"
msgid "_Centered"
msgstr "_Centred"
+#. Cppmw
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:149
+msgctxt "alignmentdialog|extended_tip|center"
+msgid "Aligns the elements of a formula to the center."
+msgstr "Aligns the elements of a formula to the centre."
+
#. 5TgYZ
-#: starmath/uiconfig/smath/ui/alignmentdialog.ui:146
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:161
msgctxt "alignmentdialog|right"
msgid "_Right"
msgstr "_Right"
+#. atNoc
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:171
+msgctxt "alignmentdialog|extended_tip|right"
+msgid "Aligns the elements of a formula to the right."
+msgstr "Aligns the elements of a formula to the right."
+
#. LbzHM
-#: starmath/uiconfig/smath/ui/alignmentdialog.ui:169
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:189
msgctxt "alignmentdialog|label1"
msgid "Horizontal"
msgstr "Horizontal"
+#. qV2H7
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:215
+msgctxt "alignmentdialog|extended_tip|AlignmentDialog"
+msgid "You can define the alignment of multi-line formulas as well as formulas with several elements in one line."
+msgstr "You can define the alignment of multi-line formulae as well as formulae with several elements in one line."
+
#. NqNaF
#: starmath/uiconfig/smath/ui/catalogdialog.ui:8
msgctxt "catalogdialog|CatalogDialog"
@@ -2434,24 +2464,42 @@ msgctxt "catalogdialog|edit"
msgid "_Edit..."
msgstr "_Edit..."
+#. TZoCR
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:31
+msgctxt "catalogdialog|extended_tip|edit"
+msgid "Click here to open the Edit Symbols dialog."
+msgstr "Click here to open the Edit Symbols dialogue box."
+
#. F86fN
-#: starmath/uiconfig/smath/ui/catalogdialog.ui:38
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:43
msgctxt "catalogdialog|insert"
msgid "_Insert"
msgstr "_Insert"
#. zzUYb
-#: starmath/uiconfig/smath/ui/catalogdialog.ui:103
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:108
msgctxt "catalogdialog|label1"
msgid "_Symbol set:"
msgstr "_Symbol set:"
+#. UA5cZ
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:124
+msgctxt "catalogdialog|extended_tip|symbolset"
+msgid "All symbols are organized into symbol sets. Select the desired symbol set from the list box. The corresponding group of symbols appear in the field below."
+msgstr "All symbols are organised into symbol sets. Select the desired symbol set from the list box. The corresponding group of symbols appear in the field below."
+
#. Gu3DC
-#: starmath/uiconfig/smath/ui/catalogdialog.ui:127
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:137
msgctxt "catalogdialog|symbolname"
msgid "Unknown"
msgstr "Unknown"
+#. DSYgZ
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:236
+msgctxt "catalogdialog|extended_tip|CatalogDialog"
+msgid "Opens the Symbols dialog, in which you can select a symbol to insert in the formula."
+msgstr "Opens the Symbols dialogue box, in which you can select a symbol to insert in the formula."
+
#. P3rFo
#: starmath/uiconfig/smath/ui/dockingelements.ui:16
msgctxt "dockingelements|ElementCategories|tooltip_text"
@@ -2464,30 +2512,54 @@ msgctxt "fontdialog|FontDialog"
msgid "Fonts"
msgstr "Fonts"
+#. x7cHX
+#: starmath/uiconfig/smath/ui/fontdialog.ui:157
+msgctxt "fontdialog|extended_tip|font"
+msgid "Select a font from the list."
+msgstr "Select a font from the list."
+
#. eepux
-#: starmath/uiconfig/smath/ui/fontdialog.ui:172
+#: starmath/uiconfig/smath/ui/fontdialog.ui:174
msgctxt "fontdialog|formulaL"
msgid "Font"
msgstr "Font"
#. rEsKd
-#: starmath/uiconfig/smath/ui/fontdialog.ui:208
+#: starmath/uiconfig/smath/ui/fontdialog.ui:210
msgctxt "fontdialog|bold"
msgid "_Bold"
msgstr "_Bold"
+#. XACty
+#: starmath/uiconfig/smath/ui/fontdialog.ui:219
+msgctxt "fontdialog|extended_tip|bold"
+msgid "Check this box to assign the bold attribute to the font."
+msgstr "Mark this check box to assign the bold attribute to the font."
+
#. mBw2w
-#: starmath/uiconfig/smath/ui/fontdialog.ui:223
+#: starmath/uiconfig/smath/ui/fontdialog.ui:230
msgctxt "fontdialog|italic"
msgid "_Italic"
msgstr "_Italic"
+#. W4VUL
+#: starmath/uiconfig/smath/ui/fontdialog.ui:239
+msgctxt "fontdialog|extended_tip|italic"
+msgid "Check this box to assign the italic attribute to the font."
+msgstr "Mark this check box to assign the italic attribute to the font."
+
#. uvvT5
-#: starmath/uiconfig/smath/ui/fontdialog.ui:244
+#: starmath/uiconfig/smath/ui/fontdialog.ui:256
msgctxt "fontdialog|formulaL1"
msgid "Attributes"
msgstr "Attributes"
+#. pwqjH
+#: starmath/uiconfig/smath/ui/fontdialog.ui:316
+msgctxt "fontdialog|extended_tip|FontDialog"
+msgid "Use this dialog to select the font for the respective category in the Fonts dialog."
+msgstr "Use this dialogue box to select the font for the respective category in the Fonts dialogue box."
+
#. AhkAD
#: starmath/uiconfig/smath/ui/fontsizedialog.ui:44
msgctxt "fontsizedialog|FontSizeDialog"
@@ -2500,48 +2572,96 @@ msgctxt "fontsizedialog|default"
msgid "_Default"
msgstr "_Default"
+#. BywFC
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:68
+msgctxt "fontsizedialog|extended_tip|default"
+msgid "Click this button to save your changes as a default for all new formulas."
+msgstr "Click this button to save your changes as a default for all new formulae."
+
#. xePRa
-#: starmath/uiconfig/smath/ui/fontsizedialog.ui:148
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:153
msgctxt "fontsizedialog|label4"
msgid "Base _size:"
msgstr "Base _size:"
+#. TEGqP
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:173
+msgctxt "fontsizedialog|extended_tip|spinB_baseSize"
+msgid "All elements of a formula are proportionally scaled to the base size. To change the base size, select or type in the desired point (pt) size. You can also use other units of measure or other metrics, which are then automatically converted to points."
+msgstr "All elements of a formula are proportionally scaled to the base size. To change the base size, select or type in the desired point (pt) size. You can also use other units of measure or other metrics, which are then automatically converted to points."
+
+#. RtP4G
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:222
+msgctxt "fontsizedialog|extended_tip|spinB_function"
+msgid "Select the relative size for names and other function elements in a formula in proportion to the base size."
+msgstr "Select the relative size for names and other function elements in a formula in proportion to the base size."
+
#. AfHYB
-#: starmath/uiconfig/smath/ui/fontsizedialog.ui:220
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:235
msgctxt "fontsizedialog|label2"
msgid "_Operators:"
msgstr "_Operators:"
#. 3zJD3
-#: starmath/uiconfig/smath/ui/fontsizedialog.ui:234
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:249
msgctxt "fontsizedialog|label3"
msgid "_Limits:"
msgstr "_Limits:"
+#. FCfRf
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:268
+msgctxt "fontsizedialog|extended_tip|spinB_operator"
+msgid "Select the relative size of the mathematical operators in a formula in proportion to the base size."
+msgstr "Select the relative size of the mathematical operators in a formula in proportion to the base size."
+
+#. gK2LX
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:286
+msgctxt "fontsizedialog|extended_tip|spinB_limit"
+msgid "Select the relative size for the limits in a formula in proportion to the base size."
+msgstr "Select the relative size for the limits in a formula in proportion to the base size."
+
#. Dxb8V
-#: starmath/uiconfig/smath/ui/fontsizedialog.ui:274
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:299
msgctxt "fontsizedialog|label5"
msgid "_Text:"
msgstr "_Text:"
#. NydaV
-#: starmath/uiconfig/smath/ui/fontsizedialog.ui:288
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:313
msgctxt "fontsizedialog|label7"
msgid "_Functions:"
msgstr "_Functions:"
#. nPkA2
-#: starmath/uiconfig/smath/ui/fontsizedialog.ui:302
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:327
msgctxt "fontsizedialog|label6"
msgid "_Indexes:"
msgstr "_Indexes:"
-#. Gj8QQ
+#. 2bdgv
#: starmath/uiconfig/smath/ui/fontsizedialog.ui:346
+msgctxt "fontsizedialog|extended_tip|spinB_text"
+msgid "Select the size for text in a formula relative to the base size."
+msgstr "Select the size for text in a formula relative to the base size."
+
+#. AqFSQ
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:364
+msgctxt "fontsizedialog|extended_tip|spinB_index"
+msgid "Select the relative size for the indexes in a formula in proportion to the base size."
+msgstr "Select the relative size for the indices in a formula in proportion to the base size."
+
+#. Gj8QQ
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:381
msgctxt "fontsizedialog|label1"
msgid "Relative Sizes"
msgstr "Relative Sizes"
+#. 5Tw56
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:413
+msgctxt "fontsizedialog|extended_tip|FontSizeDialog"
+msgid "Use this dialog to specify the font sizes for your formula. Select a base size and all elements of the formula will be scaled in relation to this base."
+msgstr "Use this dialogue box to specify the font sizes for your formula. Select a base size and all elements of the formula will be scaled in relation to this base."
+
#. Ahejh
#: starmath/uiconfig/smath/ui/fonttypedialog.ui:12
msgctxt "fonttypedialog|menuitem1"
@@ -2591,71 +2711,131 @@ msgid "Fonts"
msgstr "Fonts"
#. p43oF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:83
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:98
msgctxt "fonttypedialog|modify"
msgid "_Modify"
msgstr "_Modify"
+#. uQCNw
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:111
+msgctxt "fonttypedialog|extended_tip|modify"
+msgid "Click one of the choices from this pop-up menu to access the Fonts dialog, where you can define the font and attributes for the respective formula and for custom fonts."
+msgstr "Click one of the choices from this pop-up menu to access the Fonts dialogue box, in which you can define the font and attributes for the respective formula and for custom fonts."
+
#. sdTfG
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:118
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:123
msgctxt "fonttypedialog|default"
msgid "_Default"
msgstr "_Default"
+#. gAvNx
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:130
+msgctxt "fonttypedialog|extended_tip|default"
+msgid "Click this button to save your changes as the default for all new formulas."
+msgstr "Click this button to save your changes as the default for all new formulae."
+
#. EhoBp
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:200
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:210
msgctxt "fonttypedialog|label1"
msgid "_Variables:"
msgstr "_Variables:"
#. BCVC9
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:217
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:227
msgctxt "fonttypedialog|label2"
msgid "_Functions:"
msgstr "_Functions:"
#. zFooF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:234
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:244
msgctxt "fonttypedialog|label3"
msgid "_Numbers:"
msgstr "_Numbers:"
#. bYvD9
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:251
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:261
msgctxt "fonttypedialog|label4"
msgid "_Text:"
msgstr "_Text:"
+#. WCsoh
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:281
+msgctxt "fonttypedialog|extended_tip|variableCB"
+msgid "You can select the fonts for the variables in your formula."
+msgstr "You can select the fonts for the variables in your formula."
+
+#. gGFop
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:297
+msgctxt "fonttypedialog|extended_tip|functionCB"
+msgid "Select the fonts for names and properties of functions."
+msgstr "Select the fonts for names and properties of functions."
+
+#. NAw7A
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:313
+msgctxt "fonttypedialog|extended_tip|numberCB"
+msgid "You can select the fonts for the numbers in your formula."
+msgstr "You can select the fonts for the numbers in your formula."
+
+#. WiP2E
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:329
+msgctxt "fonttypedialog|extended_tip|textCB"
+msgid "Define the fonts for the text in your formula here."
+msgstr "Define the fonts for the text in your formula here."
+
#. PEDax
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:316
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:346
msgctxt "fonttypedialog|formulaL"
msgid "Formula Fonts"
msgstr "Formula Fonts"
#. FZyFB
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:353
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:383
msgctxt "fonttypedialog|label5"
msgid "_Serif:"
msgstr "_Serif:"
#. TAgaq
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:370
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:400
msgctxt "fonttypedialog|label6"
msgid "S_ans-serif:"
msgstr "S_ans-serif:"
#. qzEea
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:387
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:417
msgctxt "fonttypedialog|label7"
msgid "F_ixed-width:"
msgstr "F_ixed-width:"
+#. mHEyL
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:437
+msgctxt "fonttypedialog|extended_tip|serifCB"
+msgid "You can specify the font to be used for the font serif format."
+msgstr "You can specify the font to be used for the font serif format."
+
+#. obFF5
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:453
+msgctxt "fonttypedialog|extended_tip|sansCB"
+msgid "You can specify the font to be used for sans font formatting."
+msgstr "You can specify the font to be used for sans font formatting."
+
+#. bqAxu
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:469
+msgctxt "fonttypedialog|extended_tip|fixedCB"
+msgid "You can specify the font to be used for fixed font formatting."
+msgstr "You can specify the font to be used for fixed font formatting."
+
#. PgQfV
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:441
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:486
msgctxt "fonttypedialog|customL"
msgid "Custom Fonts"
msgstr "Custom Fonts"
+#. gXDAz
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:518
+msgctxt "fonttypedialog|extended_tip|FontsDialog"
+msgid "Defines the fonts that can be applied to formula elements."
+msgstr "Defines the fonts that can be applied to formula elements."
+
#. LBpEX
#: starmath/uiconfig/smath/ui/printeroptions.ui:39
msgctxt "printeroptions|title"
@@ -2728,72 +2908,126 @@ msgctxt "smathsettings|title"
msgid "_Title row"
msgstr "_Title row"
+#. C2ppj
+#: starmath/uiconfig/smath/ui/smathsettings.ui:48
+msgctxt "extended_tip|title"
+msgid "Specifies whether you want the name of the document to be included in the printout."
+msgstr "Specifies whether you want the name of the document to be included in the printout."
+
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:60
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "_Formula text"
+#. MkGvA
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
+msgctxt "extended_tip|text"
+msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
+msgstr "Specifies whether to include the contents of the Commands window at the bottom of the printout."
+
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:71
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "B_order"
+#. EYcyA
+#: starmath/uiconfig/smath/ui/smathsettings.ui:90
+msgctxt "extended_tip|frame"
+msgid "Applies a thin border to the formula area in the printout."
+msgstr "Applies a thin border to the formula area in the printout."
+
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:93
+#: starmath/uiconfig/smath/ui/smathsettings.ui:108
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "Print Options"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:127
+#: starmath/uiconfig/smath/ui/smathsettings.ui:142
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "O_riginal size"
+#. sDAYF
+#: starmath/uiconfig/smath/ui/smathsettings.ui:152
+msgctxt "extended_tip|sizenormal"
+msgid "Prints the formula without adjusting the current font size."
+msgstr "Prints the formula without adjusting the current font size."
+
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:144
+#: starmath/uiconfig/smath/ui/smathsettings.ui:164
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "Fit to _page"
+#. zhmgc
+#: starmath/uiconfig/smath/ui/smathsettings.ui:174
+msgctxt "extended_tip|sizescaled"
+msgid "Adjusts the formula to the page format used in the printout."
+msgstr "Adjusts the formula to the page format used in the printout."
+
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:166
+#: starmath/uiconfig/smath/ui/smathsettings.ui:191
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "_Scaling:"
+#. vFT2d
+#: starmath/uiconfig/smath/ui/smathsettings.ui:214
+msgctxt "extended_tip|zoom"
+msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
+msgstr "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
+
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:209
+#: starmath/uiconfig/smath/ui/smathsettings.ui:239
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "Print Format"
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:242
+#: starmath/uiconfig/smath/ui/smathsettings.ui:272
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr "Ig_nore ~~ and ' at the end of the line"
+#. VjvrA
+#: starmath/uiconfig/smath/ui/smathsettings.ui:281
+msgctxt "extended_tip|norightspaces"
+msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
+msgstr "Specifies that these space wildcards will be removed if they are at the end of a line."
+
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:258
+#: starmath/uiconfig/smath/ui/smathsettings.ui:293
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr "Embed only used symbols (smaller file size)"
+#. BkZLa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:302
+msgctxt "extended_tip|saveonlyusedsymbols"
+msgid "Saves only those symbols with each formula that are used in that formula."
+msgstr "Saves only those symbols which each formula that are used in that formula."
+
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:274
+#: starmath/uiconfig/smath/ui/smathsettings.ui:314
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr "Auto close brackets, parentheses and braces"
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:296
+#: starmath/uiconfig/smath/ui/smathsettings.ui:336
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "Miscellaneous Options"
+#. BZ6a3
+#: starmath/uiconfig/smath/ui/smathsettings.ui:351
+msgctxt "extended_tip|SmathSettings"
+msgid "Defines formula settings that will be valid for all documents."
+msgstr "Defines formula settings that will be valid for all documents."
+
#. AQFsm
#: starmath/uiconfig/smath/ui/spacingdialog.ui:28
msgctxt "spacingdialog|menuitem1"
@@ -3095,49 +3329,115 @@ msgid "Edit Symbols"
msgstr "Edit Symbols"
#. GV4Ah
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:102
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:99
msgctxt "symdefinedialog|oldSymbolSetText"
msgid "O_ld symbol set:"
msgstr "O_ld symbol set:"
+#. JxmGU
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:123
+msgctxt "symdefinedialog|extended_tip|oldSymbolSets"
+msgid "This list box contains the name of the current symbol set. If you want, you can also select a different symbol set."
+msgstr "This list box contains the name of the current symbol set. If you want, you can also select a different symbol set."
+
#. WTEBG
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:148
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:150
msgctxt "symdefinedialog|oldSymbolText"
msgid "_Old symbol:"
msgstr "_Old symbol:"
-#. CGCTr
+#. xKmjs
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:174
+msgctxt "symdefinedialog|extended_tip|oldSymbols"
+msgid "Select the name of the current symbol."
+msgstr "Select the name of the current symbol."
+
+#. zhpVT
#: starmath/uiconfig/smath/ui/symdefinedialog.ui:247
+msgctxt "symdefinedialog|extended_tip|add"
+msgid "Click this button to add the symbol shown in the right preview window to the current symbol set."
+msgstr "Click this button to add the symbol shown in the right preview window to the current symbol set."
+
+#. CGCTr
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:259
msgctxt "symdefinedialog|modify"
msgid "_Modify"
msgstr "_Modify"
+#. 7FFzu
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:266
+msgctxt "symdefinedialog|extended_tip|modify"
+msgid "Click this button to replace the name of the symbol shown in the left preview window (the old name is displayed in the Old symbol list box) with the new name you have entered in the Symbol list box."
+msgstr "Click this button to replace the name of the symbol shown in the left preview window (the old name is displayed in the Old symbol list box) with the new name you have entered in the Symbol list box."
+
+#. 3GfeR
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:285
+msgctxt "symdefinedialog|extended_tip|delete"
+msgid "Click to remove the symbol shown in the left preview window from the current symbol set."
+msgstr "Click to remove the symbol shown in the left preview window from the current symbol set."
+
#. jwzjd
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:302
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:324
msgctxt "symdefinedialog|symbolText"
msgid "_Symbol:"
msgstr "_Symbol:"
#. 9WqPA
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:316
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:338
msgctxt "symdefinedialog|symbolSetText"
msgid "Symbol s_et:"
msgstr "Symbol s_et:"
#. G4GCV
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:330
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:352
msgctxt "symdefinedialog|fontText"
msgid "_Font:"
msgstr "_Font:"
#. wTEhB
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:344
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:366
msgctxt "symdefinedialog|styleText"
msgid "S_tyle:"
msgstr "S_tyle:"
#. TENFM
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:358
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:380
msgctxt "symdefinedialog|fontsSubsetFT"
msgid "S_ubset:"
msgstr "S_ubset:"
+
+#. jS9Ny
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:398
+msgctxt "symdefinedialog|extended_tip|fonts"
+msgid "Displays the name of the current font and enables you to select a different font."
+msgstr "Displays the name of the current font and enables you to select a different font."
+
+#. UEdYh
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:415
+msgctxt "symdefinedialog|extended_tip|fontsSubsetLB"
+msgid "If you selected a non-symbol font in the Font list box, you can select a Unicode subset in which to place your new or edited symbol. When a subset has been selected, all symbols belonging to this subset of the current symbol set are displayed in the symbols list above."
+msgstr "If you selected a non-symbol font in the Font list box, you can select a Unicode subset in which to place your new or edited symbol. When a subset has been selected, all symbols belonging to this subset of the current symbol set are displayed in the symbols list above."
+
+#. 8XjkA
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:439
+msgctxt "symdefinedialog|extended_tip|symbols"
+msgid "Lists the names for the symbols in the current symbol set. Select a name from the list or type a name for a newly added symbol."
+msgstr "Lists the names for the symbols in the current symbol set. Select a name from the list or type a name for a newly added symbol."
+
+#. G8wv3
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:463
+msgctxt "symdefinedialog|extended_tip|symbolSets"
+msgid "The Symbol set list box contains the names of all existing symbol sets. You can modify a symbol set or create a new one."
+msgstr "The Symbol set list box contains the names of all existing symbol sets. You can modify a symbol set or create a new one."
+
+#. BG98q
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:480
+msgctxt "symdefinedialog|extended_tip|styles"
+msgid "The current typeface is displayed. You can change the typeface by selecting one from the list box."
+msgstr "The current typeface is displayed. You can change the typeface by selecting one from the list box."
+
+#. zBbJC
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:635
+msgctxt "symdefinedialog|extended_tip|EditSymbols"
+msgid "Use this dialog to add symbols to a symbol set, to edit symbol sets, or to modify symbol notations."
+msgstr "Use this dialogue box to add symbols to a symbol set, to edit symbol sets, or to modify symbol notations."
diff --git a/source/en-GB/svtools/messages.po b/source/en-GB/svtools/messages.po
index 516783e835b..c4a279e3bfb 100644
--- a/source/en-GB/svtools/messages.po
+++ b/source/en-GB/svtools/messages.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-07-21 11:19+0200\n"
+"POT-Creation-Date: 2020-08-21 14:00+0200\n"
"PO-Revision-Date: 2020-08-07 21:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/en_GB/>\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 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560274278.000000\n"
#. fLdeV
@@ -4891,78 +4891,6 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sundanese"
msgstr "Sundanese"
-#. Fsz7D
-#: svtools/inc/templwin.hrc:41
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Title"
-msgstr "Title"
-
-#. zo57j
-#: svtools/inc/templwin.hrc:42
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "By"
-msgstr "By"
-
-#. Zh8Ni
-#: svtools/inc/templwin.hrc:43
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Date"
-msgstr "Date"
-
-#. eHFA4
-#: svtools/inc/templwin.hrc:44
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Keywords"
-msgstr "Keywords"
-
-#. eYGnQ
-#: svtools/inc/templwin.hrc:45
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Description"
-msgstr "Description"
-
-#. Eg2eG
-#: svtools/inc/templwin.hrc:46
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Type"
-msgstr "Type"
-
-#. hokZy
-#: svtools/inc/templwin.hrc:47
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Modified on"
-msgstr "Modified on"
-
-#. XMEJb
-#: svtools/inc/templwin.hrc:48
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Modified by"
-msgstr "Modified by"
-
-#. MWkd5
-#: svtools/inc/templwin.hrc:49
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Printed on"
-msgstr "Printed on"
-
-#. BBEEC
-#: svtools/inc/templwin.hrc:50
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Printed by"
-msgstr "Printed by"
-
-#. VCGe3
-#: svtools/inc/templwin.hrc:51
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Subject"
-msgstr "Subject"
-
-#. HVYdE
-#: svtools/inc/templwin.hrc:52
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Size"
-msgstr "Size"
-
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
msgctxt "addresstemplatedialog|AddressTemplateDialog"
diff --git a/source/en-GB/svx/messages.po b/source/en-GB/svx/messages.po
index 8643516337b..d48a4365f38 100644
--- a/source/en-GB/svx/messages.po
+++ b/source/en-GB/svx/messages.po