Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / include / svtools / langhelp.hxx
blob1aa8bcb72a7834b28e41a198774e6f7c536d74fb
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #pragma once
12 #include <svtools/svtdllapi.h>
14 #include <com/sun/star/uno/Sequence.hxx>
16 #include <rtl/ustring.hxx>
18 /** Localize a URI to one of the foundation's webservices
20 @param io_rURI
21 URI to localize - depending on your UI locale, a country local
22 part is appended to the URI (like "en", or "fr", or "es")
24 SVT_DLLPUBLIC void localizeWebserviceURI( OUString& io_rURI );
26 OUString SVT_DLLPUBLIC getInstalledLocaleForLanguage(css::uno::Sequence<OUString> const & installed, OUString const & locale);
27 OUString SVT_DLLPUBLIC getInstalledLocaleForSystemUILanguage(css::uno::Sequence<OUString> const & installed, bool bRequestInstallIfMissing, const OUString& rPreferredLocale = OUString());
29 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */