Adding upstream version 0.9.0+20150806.
Signed-off-by: Andrew Lee (李健秋) <ajqlee@debian.org>
This commit is contained in:
parent
cd4f0df87c
commit
368b5c25aa
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +0,0 @@
|
||||
build
|
@ -1,15 +1,16 @@
|
||||
cmake_minimum_required(VERSION 2.8.11)
|
||||
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
|
||||
|
||||
project(lxqt-config)
|
||||
|
||||
option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF)
|
||||
|
||||
# Set default installation paths
|
||||
set(LIB_INSTALL_DIR "lib${LIB_SUFFIX}" CACHE PATH "Installation path for libraries")
|
||||
include(GNUInstallDirs)
|
||||
|
||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
set(CMAKE_AUTOUIC ON)
|
||||
set(CMAKE_AUTORCC ON)
|
||||
|
||||
find_package(Qt5Widgets REQUIRED QUIET)
|
||||
find_package(Qt5DBus REQUIRED QUIET)
|
||||
@ -18,12 +19,8 @@ find_package(Qt5Concurrent REQUIRED QUIET)
|
||||
find_package(Qt5X11Extras REQUIRED QUIET)
|
||||
find_package(Qt5LinguistTools REQUIRED QUIET)
|
||||
find_package(lxqt REQUIRED QUIET)
|
||||
find_package(qt5xdg REQUIRED)
|
||||
find_package(KF5WindowSystem REQUIRED QUIET)
|
||||
|
||||
include(${LXQT_USE_FILE})
|
||||
include(${QTXDG_USE_FILE})
|
||||
|
||||
include(LXQtCompilerSettings NO_POLICY_SCOPE)
|
||||
include(LXQtTranslate)
|
||||
|
||||
add_subdirectory(src)
|
||||
|
@ -8,9 +8,7 @@ include_directories(${XCB_INCLUDE_DIRS})
|
||||
link_libraries(${XCB_LIBRARIES})
|
||||
|
||||
include_directories (
|
||||
"${CMAKE_CURRENT_BINARY_DIR}"
|
||||
${X11_INCLUDE_DIR}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/xcr
|
||||
)
|
||||
|
||||
@ -38,14 +36,12 @@ set(lxqt-config-cursor_SRCS
|
||||
)
|
||||
|
||||
set(lxqt-config-cursor_UIS
|
||||
ui/selectwnd.ui
|
||||
ui/warninglabel.ui
|
||||
selectwnd.ui
|
||||
warninglabel.ui
|
||||
)
|
||||
|
||||
find_package(ZLIB REQUIRED)
|
||||
|
||||
qt5_wrap_ui(lxqt-config-cursor_CXX ${lxqt-config-cursor_UIS})
|
||||
|
||||
# Translations **********************************
|
||||
lxqt_translate_ts(QM_FILES
|
||||
UPDATE_TRANSLATIONS
|
||||
@ -65,8 +61,6 @@ lxqt_app_translation_loader(lxqt-config-cursor_QM_LOADER ${PROJECT_NAME})
|
||||
add_library(lxqt-config-cursor
|
||||
SHARED
|
||||
${lxqt-config-cursor_SRCS}
|
||||
${lxqt-config-cursor_CXX}
|
||||
${lxqt-config-cursor_MOCS}
|
||||
${DESKTOP_FILES}
|
||||
${QM_FILES}
|
||||
${lxqt-config-cursor_QM_LOADER}
|
||||
@ -78,12 +72,19 @@ target_link_libraries(lxqt-config-cursor
|
||||
Qt5::Xml
|
||||
${X11_X11_LIB}
|
||||
${X11_Xcursor_LIB}
|
||||
${LXQT_LIBRARIES}
|
||||
${QTXDG_LIBRARIES}
|
||||
lxqt
|
||||
${ZLIB_LIBRARY}
|
||||
${X11_Xfixes_LIB}
|
||||
)
|
||||
# not needed probably ${X11_Xfixes_LIB})
|
||||
|
||||
install(TARGETS lxqt-config-cursor DESTINATION ${LIB_INSTALL_DIR})
|
||||
install(FILES ${DESKTOP_FILES} DESTINATION "${CMAKE_INSTALL_PREFIX}/share/applications")
|
||||
install(TARGETS
|
||||
lxqt-config-cursor
|
||||
DESTINATION "${CMAKE_INSTALL_LIBDIR}"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
install(FILES
|
||||
${DESKTOP_FILES}
|
||||
DESTINATION "${CMAKE_INSTALL_DATAROOTDOR}/applications"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public
|
||||
* License version 2 or at your option version 3 as published
|
||||
* License version 2 or at your option version 3 as published
|
||||
* by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public
|
||||
* License version 2 or at your option version 3 as published
|
||||
* License version 2 or at your option version 3 as published
|
||||
* by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
@ -30,7 +30,7 @@ class QPainter;
|
||||
class ItemDelegate : public QAbstractItemDelegate
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
|
||||
public:
|
||||
ItemDelegate(QObject *parent = 0);
|
||||
~ItemDelegate();
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH lxqt-config-cursor "1" "September 2012" "LXQt\-qt\ 0.7.0" "LXQt\ Cursor settings"
|
||||
.TH lxqt-config-cursor "1" "September 2012" "LXQt\ 0.7.0" "LXQt\ Cursor settings"
|
||||
.SH NAME
|
||||
lxqt-config-cursor \- Application of \fBLXQt\fR: the faster and lighter QT Desktop Environment
|
||||
.SH SYNOPSIS
|
||||
@ -26,7 +26,7 @@ by hand but automatically, when choosing a \fBLXQt\-qt\fR session in the Display
|
||||
Manager.
|
||||
.P
|
||||
.SH "REPORTING BUGS"
|
||||
Report bugs to https://github.com/lxde/lxde-qt/issues
|
||||
Report bugs to https://github.com/lxde/lxqt/issues
|
||||
.SH "SEE ALSO"
|
||||
\fBLXQt\fR it has been tailored for users who value simplicity, speed, and
|
||||
an intuitive interface, also intended for less powerful machines. See also:
|
||||
|
@ -175,7 +175,7 @@ void SelectWnd::applyCurrent()
|
||||
mSettings->beginGroup("Mouse");
|
||||
mSettings->setValue("cursor_theme", theme->name());
|
||||
mSettings->endGroup();
|
||||
|
||||
|
||||
// The XCURSOR_THEME environment varialbe does not work sometimes.
|
||||
// Besides, XDefaults values are not used by Qt.
|
||||
// So, let's write the new theme name to ~/.icons/default/index.theme.
|
||||
|
@ -15,6 +15,7 @@
|
||||
|
||||
#include <QObject>
|
||||
#include <QWidget>
|
||||
#include <lxqtglobals.h>
|
||||
|
||||
namespace LxQt {
|
||||
class Settings;
|
||||
@ -23,7 +24,7 @@ namespace LxQt {
|
||||
class XCursorThemeModel;
|
||||
|
||||
#include "ui_selectwnd.h"
|
||||
class SelectWnd : public QWidget, private Ui_SelectWnd
|
||||
class LXQT_API SelectWnd : public QWidget, private Ui_SelectWnd
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
|
@ -4,22 +4,22 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -37,17 +37,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,18 +4,18 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>اعداد شكل فأرة سطح ريزر</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>اختر سكل المؤشِّر الذي تريد استخدامه (مرر المؤشِّر متخطيَّاً لمعاينته).
|
||||
<b>يجب إعادة تشغيل جلسة سطح ريزر بعد هذا التَّغيير</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>تث&بيت واجهةٍ شكليَّةٍ جديدةٍ...</translation>
|
||||
</message>
|
||||
@ -24,7 +24,7 @@
|
||||
<translation type="vanished">ت^عيين الواجهة الشَّكليَّة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>إ&زالة الواجهة الشَّكليَّة</translation>
|
||||
</message>
|
||||
@ -46,17 +46,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Nastavení motivu myši</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Vyberte motiv ukazovátka, jejž chcete používat (přejeďte myší nad náhledem kvůli vyzkoušení ukazovátka). <b>Sezení LXQt je potřeba po této změně spustit znovu</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>Na&instalovat nový motiv...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">&Nastavit motiv</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Odstranit motiv</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Nastavení motivu myši</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Vyberte motiv ukazovátka, jejž chcete používat (přejeďte myší nad náhledem kvůli vyzkoušení ukazovátka). <b>Sezení LXQt je potřeba po této změně spustit znovu</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>Na&instalovat nový motiv...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">&Nastavit motiv</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Odstranit motiv</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,18 +4,18 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>LXQt Musemarkør Tema Indstillinger</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Vælg det markør tema, du vil bruge (forhåndsvisning for at teste markør).
|
||||
<b> LXQt session skal genstartes efter denne ændring </ b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Installer Nyt Tema...</translation>
|
||||
</message>
|
||||
@ -24,7 +24,7 @@
|
||||
<translation type="vanished">&Sæt Tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Fjern Tema</translation>
|
||||
</message>
|
||||
@ -46,17 +46,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1,37 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="de">
|
||||
<TS version="2.1" language="de">
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>LXQt Mauszeigerdesign Konfiguration</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Wähle das gewünschte Mauszeigerdesign aus (zum Test Maus über Vorschau bewegen)
|
||||
<b>Die LXQt-Sitzung muss nach dieser Veränderung neu gestartet werden</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Neues Design installieren...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Set Theme</source>
|
||||
<translation>&Design festlegen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>D&esign entfernen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Close</source>
|
||||
<translation>&Schließen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../selectwnd.cpp" line="208"/>
|
||||
<source>XCurTheme error</source>
|
||||
@ -46,17 +38,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation>Dialogfenster</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation>LXQt konnte kein Mauszeigerdesign finden. Stattdessen wird das Default-Mauszeigerdesign von X11 verwendet. LXQt suchte in folgenden Verzeichnissen:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation>Anzeigen...</translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Διαμόρφωση θέματος ποντικιού LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Επιλέξτε το θέμα δείκτη που θέλετε να χρησιμοποιήσετε (κινηθείτε επάνω για προεπισκόπηση). <b>Χρειάζεται επανεκκίνηση της συνεδρίας LXQt μετά την αλλαγή</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Εγκατάσταση νέου θέματος...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">Ε&πιλογή θέματος</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Αφαίρεση θέματος</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Agordoj de etosoj de muso de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Elektu la etoson de kursoro, kiun vi volas uzi (ŝveba antaŭrigardo por testi kursoron). <b>Seanco de LXQt postulas restartigon post ol ĉi tiu ŝanĝo</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Instali novan etoson...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">Agordi eto&son</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>Fo&rigi etoson</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Configuración de LXQt para el Tema del Ratón</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Seleccione el tema del cursor que desea utilizar (pase el cursor para una vista previa). <b>LXQt necesita reiniciar la sesión después de este cambio </ b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Instalar Nuevo Tema...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">&Establecer Tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Quitar Tema</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Configuracion de tema de raton de LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Selecciona el cursor del raton que tu desees usar (colocalo encima para ver una previsualizacion) <b>La sesion de LXQt necesita reinicializarse despues de un cambio</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Instalar nuevo tema</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">A&Signar el tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Remover el tema</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>LXQt saguaren gaiaren konfigurazioa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Hautatu erabili nahi duzun kurtsore-gaia (nabarmendu aurrebista kurtsorea probatzeko). <b>LXQt saioa berrabiarazi behar da aldaketa honen ondoren</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Instalatu gai berria...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">&Ezarri gaia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Kendu gaia</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>LXQtin hiiriteeman asetukset</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Valitse haluamasi osoitinteema (käytä esikatselua testataksesi osoitinteemaa). <b>LXQt-istunto tulee käynnistää uudelleen tämän muutoksen jälkeen</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Asenna uusi teema...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">Aseta &teema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Poista teema</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,22 +4,22 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -41,17 +41,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
72
liblxqt-config-cursor/translations/lxqt-config-cursor_hu.ts
Normal file
72
liblxqt-config-cursor/translations/lxqt-config-cursor_hu.ts
Normal file
@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="hu_HU">
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>LXQt egértéma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>A kívánt kurzortéma (előzetesen látható). <b>Érvénybeléptetéshez az LXQt munkamenet újraindíttandó</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Új téma telepítése...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>Téma kiny&írása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Close</source>
|
||||
<translation type="vanished">&Bezárás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../selectwnd.cpp" line="208"/>
|
||||
<source>XCurTheme error</source>
|
||||
<translation>Témahiba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../selectwnd.cpp" line="209"/>
|
||||
<source>You can't remove active theme!</source>
|
||||
<translation>Az aktuális téma eltávolíthatatlan!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation>Ürlap</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation>Az LXQt nem lelt kurzor témát, az alapértelmezett lesz használva. Ezekben a mappákban kereste:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation>Mutat...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>XCursorThemeModel</name>
|
||||
<message>
|
||||
<location filename="../thememodel.cpp" line="61"/>
|
||||
<source>Name</source>
|
||||
<translation>Név</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../thememodel.cpp" line="62"/>
|
||||
<source>Description</source>
|
||||
<translation>Leírás</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -4,24 +4,24 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LXQt egértéma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>A kívánt kurzortéma (előzetesen látható). <b>Érvénybeléptetéshez az LXQt munkamenet újraindíttandó</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>&Új téma telepítése...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Téma kiny&írása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Close</source>
|
||||
@ -30,30 +30,30 @@
|
||||
<message>
|
||||
<location filename="../selectwnd.cpp" line="208"/>
|
||||
<source>XCurTheme error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Témahiba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../selectwnd.cpp" line="209"/>
|
||||
<source>You can't remove active theme!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Az aktuális téma eltávolíthatatlan!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Űrlap</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Az LXQt nem lelt kurzor témát, az alapértelmezett lesz használva. Ezekben a mappákban kereste:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Mutat...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -61,12 +61,12 @@
|
||||
<message>
|
||||
<location filename="../thememodel.cpp" line="61"/>
|
||||
<source>Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Név</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../thememodel.cpp" line="62"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Leírás</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
@ -4,29 +4,30 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Configurazione del tema del mouse di LXQt</translation>
|
||||
<translation>Configurazione del aspetto del cursore</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Seleziona il tema del cursore che vuoi utilizzare (passa sull'anteprima per provare il cursore).
|
||||
<b>La sessione di LXQt deve essere riavviata dopo questa modifica</b>:</translation>
|
||||
<translatorcomment>hover seems not working, and restart seems not necessary to take effect</translatorcomment>
|
||||
<translation>Seleziona il tema del cursore che vuoi utilizzare </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Installa un nuovo tema...</translation>
|
||||
<translatorcomment>& to remove in source</translatorcomment>
|
||||
<translation>Installa un nuovo tema...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Set Theme</source>
|
||||
<translation type="vanished">&Imposta il tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Rimuovi il tema</translation>
|
||||
<translation>Rimuovi il tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Close</source>
|
||||
@ -35,7 +36,7 @@
|
||||
<message>
|
||||
<location filename="../selectwnd.cpp" line="208"/>
|
||||
<source>XCurTheme error</source>
|
||||
<translation>Errore XCurTheme</translation>
|
||||
<translation>Errore tema X-cursore</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../selectwnd.cpp" line="209"/>
|
||||
@ -46,19 +47,19 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LXQt non ha trovato nessun tema per i cursori in queste directories: (Verrà usato il tema di default di X11):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Mostra...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -4,22 +4,22 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>LXQtマウステーマの設定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>使いたいカーソルテーマを選択 (プレビューをテストカーソルに合わせます). <b>LXQtセッションはこの変更後に再起動が必要です</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>新しいテーマのインストール...(&I)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>テーマの削除(&R)</translation>
|
||||
</message>
|
||||
@ -37,17 +37,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation>フォーム</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation>カーソルテーマを見つけられませんでした。代わりに、デフォルトのX11カーソルテーマが使われます。LXQtは以下のディレクトリーを検索しました:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation>表示</translation>
|
||||
</message>
|
||||
|
@ -4,22 +4,22 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -41,17 +41,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,22 +4,22 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -41,17 +41,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,27 +4,26 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Wygląd kursora</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Wybierz motyw kursora ( najedz kursorem na podgląd by przetestować): <b>
|
||||
Wymagane jest ponowne uruchomienie sesji </b>:</translation>
|
||||
<translation>Wybierz motyw kursora (najedz kursorem na podgląd by przetestować). <b>Wymagane jest ponowne uruchomienie sesji</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Zainstaluj Nowe Motywy</translation>
|
||||
<translation>&Zainstaluj Nowy Motyw...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Set Theme</source>
|
||||
<translation type="vanished">&Wybierz Motyw</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Usuń Motyw</translation>
|
||||
</message>
|
||||
@ -40,25 +39,25 @@ Wymagane jest ponowne uruchomienie sesji </b>:</translation>
|
||||
<message>
|
||||
<location filename="../selectwnd.cpp" line="209"/>
|
||||
<source>You can't remove active theme!</source>
|
||||
<translation>Nie możesz usunąć aktywnego motywu</translation>
|
||||
<translation>Nie możesz usunąć aktywnego motywu!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Uwaga</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Nie znaleziono żadnego motywu kursora. Zostanie użyty domyślny motyw kursora X11. LXQt wyszukiwało w następujących katalogach:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pokaż...</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Definições do tema de cursor do LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Escolha o tema de cursor a utilizar (passe com o rato para testar). <b>Tem que reiniciar o LXQt a sessão após a alteração</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Instalar novo tema...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">&Definir tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Remover tema</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation>Formulário</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation>O LxQt não encontrou quaisquer temas de cursor. Será utilizado o tema de cursor X11. O LxQt procurou nestes diretórios:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation>Mostrar...</translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Configuração Do Tema Do Mouse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Selecione o tema do cursor que você deseja usar (pairar visualização para testar o cursor). <b>A sessão LXQt precisa reiniciar após esta mudança</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Instalar Novo Tema...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">&Definir Tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Remover Tema</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Configurare temă maus LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Selectați tema de cursor pe care doriți să o utilizați (treceți peste cu mausul pentru a testa cursorul)</b>Sesiunea LXQt necesită o repornire după această modificare</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Instalează temă nouă...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">&Setează tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>Elimină tema</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,22 +4,22 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Настройка темы курсора LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Выберите тему курсора, которую вы хотите использовать (наведите курсор на область предварительного просмотра для проверки). <b>Сессию LXQt нужно перезапустить после изменений</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Установить новую тему…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Удалить тему</translation>
|
||||
</message>
|
||||
@ -37,17 +37,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation>LXQt не смог найти какую-нибудь тему курсора. Будет использована тема X11 по-умолчанию. LXQt искал в следующих папках:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation>Показать…</translation>
|
||||
</message>
|
||||
|
@ -4,22 +4,22 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Настройка темы курсора LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Выберите тему курсора, которую вы хотите использовать (наведите курсор на область предварительного просмотра для проверки). <b>Сессию LXQt нужно перезапустить после изменений</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Установить новую тему…</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&Удалить тему</translation>
|
||||
</message>
|
||||
@ -37,17 +37,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation>LXQt не смог найти какую-нибудь тему курсора. Будет использована тема X11 по-умолчанию. LXQt искал в следующих папках:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation>Показать…</translation>
|
||||
</message>
|
||||
|
@ -4,22 +4,22 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -41,17 +41,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>การตั้งค่าชุดตกแต่งเมาส์ LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>เลือกชุดตกแต่งเคอร์เซอร์ที่คุณต้องการจะใช้ (วางเคอร์เซอร์ไว้บนตัวอย่างเพื่อทดสอบมัน). <b>วาระงาน LXQt จำเป็นต้องเริ่มใหม่หลังการเปลี่ยนแปลงนี้</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>ติดตั้งชุด&ตกแต่ง...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">&ใช้เป็นชุดตกแต่ง</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>&ลบชุดตกแต่ง</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,22 +4,22 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -41,17 +41,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>Налаштування тем миші LXQt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>Оберіть тему курсорів, яку Ви бажаєте використовувати (наведіть на попереднй перегляд для перевірки курсору). <b>Сеанс LXQt потребує перезапуску щоб ці зміни подіяли</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>&Встановити нову тему...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">&Призначити тему</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>Вилу&чити тему</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,17 +4,17 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>LXQt 鼠标主题配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>选择要使用的游标主题(鼠标放到项目上可以预览)。<b>修改后需要重启LXQt 会话。</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>安装新主题(&I)...</translation>
|
||||
</message>
|
||||
@ -23,7 +23,7 @@
|
||||
<translation type="vanished">设置主题(&S)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>删除主题(&R)</translation>
|
||||
</message>
|
||||
@ -45,17 +45,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4,18 +4,18 @@
|
||||
<context>
|
||||
<name>SelectWnd</name>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="14"/>
|
||||
<location filename="../selectwnd.ui" line="14"/>
|
||||
<source>LXQt Mouse Theme Configuration</source>
|
||||
<translation>LXQt滑鼠游標主題設定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="20"/>
|
||||
<location filename="../selectwnd.ui" line="20"/>
|
||||
<source>Select the cursor theme you want to use (hover preview to test cursor). <b>LXQt session needs restart after this change</b>:</source>
|
||||
<translation>選擇您喜歡的游標主題 (檢視來回移動來測試游標) 。
|
||||
<b>套用改變需要重新啟動LXQt會話</b>:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="81"/>
|
||||
<location filename="../selectwnd.ui" line="81"/>
|
||||
<source>&Install New Theme...</source>
|
||||
<translation>安裝新主題...(&I)</translation>
|
||||
</message>
|
||||
@ -24,7 +24,7 @@
|
||||
<translation type="vanished">設為主題(&S)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/selectwnd.ui" line="88"/>
|
||||
<location filename="../selectwnd.ui" line="88"/>
|
||||
<source>&Remove Theme</source>
|
||||
<translation>移除主題(&R)</translation>
|
||||
</message>
|
||||
@ -46,17 +46,17 @@
|
||||
<context>
|
||||
<name>WarningLabel</name>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="14"/>
|
||||
<location filename="../warninglabel.ui" line="14"/>
|
||||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="44"/>
|
||||
<location filename="../warninglabel.ui" line="44"/>
|
||||
<source>LXQt could not find any cursor theme. The default X11 cursor theme will be used instead. LXQt looked in the following directories:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/warninglabel.ui" line="54"/>
|
||||
<location filename="../warninglabel.ui" line="54"/>
|
||||
<source>Show...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -34,7 +34,7 @@
|
||||
class WarningLabel : public QWidget, public Ui::WarningLabel
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
|
||||
public:
|
||||
WarningLabel (QWidget *parent=0);
|
||||
|
||||
|
@ -1,11 +1,9 @@
|
||||
project(lxqt-config-appearance)
|
||||
|
||||
include_directories(
|
||||
"${CMAKE_CURRENT_BINARY_DIR}"
|
||||
${LXQT_INCLUDE_DIRS}
|
||||
${QTXDG_INCLUDE_DIRS}
|
||||
"${CMAKE_SOURCE_DIR}/liblxqt-config-cursor"
|
||||
"${CMAKE_BINARY_DIR}/liblxqt-config-cursor"
|
||||
${Qt5Gui_PRIVATE_INCLUDE_DIRS}
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../liblxqt-config-cursor"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/../liblxqt-config-cursor"
|
||||
)
|
||||
|
||||
set(H_FILES
|
||||
@ -40,8 +38,7 @@ set(UI_FILES
|
||||
set(QRC_FILES "")
|
||||
|
||||
set(LIBRARIES
|
||||
${QTXDG_LIBRARIES}
|
||||
${LXQT_LIBRARIES}
|
||||
lxqt
|
||||
)
|
||||
|
||||
|
||||
@ -61,22 +58,16 @@ lxqt_translate_desktop(DESKTOP_FILES SOURCES ${PROJECT_NAME}.desktop.in)
|
||||
|
||||
#************************************************
|
||||
|
||||
qt5_wrap_ui(UI_HEADERS ${UI_FILES})
|
||||
qt5_add_resources(QRC_SOURCES ${QRC_FILES})
|
||||
|
||||
add_executable(${PROJECT_NAME}
|
||||
${CPP_FILES}
|
||||
${UI_FILES}
|
||||
${RESOURCES}
|
||||
${QRC_SOURCES}
|
||||
${QRC_FILES}
|
||||
${QM_FILES}
|
||||
${QM_LOADER}
|
||||
${MOC_SOURCES}
|
||||
${DESKTOP_FILES}
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
KF5::WindowSystem
|
||||
Qt5::Widgets
|
||||
Qt5::X11Extras
|
||||
Qt5::Xml
|
||||
@ -84,5 +75,13 @@ target_link_libraries(${PROJECT_NAME}
|
||||
lxqt-config-cursor
|
||||
)
|
||||
|
||||
install(TARGETS ${PROJECT_NAME} RUNTIME DESTINATION bin)
|
||||
install(FILES ${DESKTOP_FILES} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/applications)
|
||||
install(TARGETS
|
||||
${PROJECT_NAME}
|
||||
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
install(FILES
|
||||
${DESKTOP_FILES}
|
||||
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
|
@ -70,7 +70,7 @@ private Q_SLOTS:
|
||||
private:
|
||||
void load();
|
||||
void queueSave();
|
||||
|
||||
|
||||
private:
|
||||
bool mAntialias;
|
||||
bool mHinting;
|
||||
|
@ -55,7 +55,11 @@
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QSpinBox" name="fontSize"/>
|
||||
<widget class="QSpinBox" name="fontSize">
|
||||
<property name="minimum">
|
||||
<number>4</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QComboBox" name="fontStyle">
|
||||
|
@ -31,9 +31,13 @@
|
||||
#include <XdgIcon>
|
||||
#include <LXQt/Settings>
|
||||
#include <QStringList>
|
||||
#include <QStringBuilder>
|
||||
#include <QIcon>
|
||||
#include <QDebug>
|
||||
|
||||
#include <private/qtxdg/qiconloader_p.h>
|
||||
|
||||
using namespace QtXdg;
|
||||
|
||||
IconThemeConfig::IconThemeConfig(LxQt::Settings* settings, QWidget* parent):
|
||||
QWidget(parent),
|
||||
@ -55,7 +59,16 @@ void IconThemeConfig::initIconsThemes()
|
||||
{
|
||||
QStringList processed;
|
||||
QStringList baseDirs = QIcon::themeSearchPaths();
|
||||
static const QStringList iconNames = QStringList()
|
||||
<< QStringLiteral("document-open")
|
||||
<< QStringLiteral("document-new")
|
||||
<< QStringLiteral("edit-undo")
|
||||
<< QStringLiteral("media-playback-start");
|
||||
|
||||
const int iconNamesN = iconNames.size();
|
||||
iconThemeList->setColumnCount(iconNamesN + 2);
|
||||
|
||||
QList<QTreeWidgetItem *> items;
|
||||
foreach (QString baseDirName, baseDirs)
|
||||
{
|
||||
QDir baseDir(baseDirName);
|
||||
@ -72,22 +85,38 @@ void IconThemeConfig::initIconsThemes()
|
||||
IconThemeInfo theme(QDir(dir.canonicalFilePath()));
|
||||
if (theme.isValid() && (!theme.isHidden()))
|
||||
{
|
||||
QTreeWidgetItem *item = new QTreeWidgetItem(iconThemeList);
|
||||
QTreeWidgetItem *item = new QTreeWidgetItem((QTreeWidget*)0);
|
||||
item->setSizeHint(0, QSize(42,42)); // make icons non-cropped
|
||||
item->setData(0, Qt::UserRole, theme.name());
|
||||
|
||||
item->setIcon(0, theme.icon("document-open"));
|
||||
item->setIcon(1, theme.icon("document-new"));
|
||||
item->setIcon(2, theme.icon("edit-undo"));
|
||||
item->setIcon(3, theme.icon("media-playback-start"));
|
||||
const QVector<QIcon> icons = theme.icons(iconNames);
|
||||
|
||||
item->setText(4, theme.comment().isEmpty() ? theme.text() : theme.text() + " (" + theme.comment() + ")");
|
||||
const int K = icons.size();
|
||||
for (int i = 0; i < K; ++i)
|
||||
{
|
||||
item->setIcon(i, icons.at(i));
|
||||
}
|
||||
|
||||
QString themeDescription;
|
||||
if (theme.comment().isEmpty())
|
||||
{
|
||||
themeDescription = theme.text();
|
||||
}
|
||||
else
|
||||
{
|
||||
themeDescription = theme.text() % QStringLiteral(" (") % theme.comment() % QStringLiteral(")");
|
||||
}
|
||||
|
||||
item->setText(iconNamesN + 1, themeDescription);
|
||||
|
||||
items.append(item);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
QIconLoader::instance()->updateSystemTheme();
|
||||
|
||||
iconThemeList->setColumnCount(5);
|
||||
iconThemeList->insertTopLevelItems(0, items);
|
||||
for (int i=0; i<iconThemeList->header()->count()-1; ++i)
|
||||
{
|
||||
iconThemeList->resizeColumnToContents(i);
|
||||
@ -125,9 +154,12 @@ void IconThemeConfig::iconThemeSelected(QTreeWidgetItem *item, int column)
|
||||
if (!theme.isEmpty())
|
||||
{
|
||||
XdgIcon::setThemeName(theme);
|
||||
|
||||
// An hack to ensure that this widget also re loads it's own icons
|
||||
// from the selected icon theme.
|
||||
QIconLoader::instance()->setThemeName(QString());
|
||||
|
||||
m_settings->setValue("icon_theme", theme);
|
||||
m_settings->sync();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -7,6 +7,11 @@
|
||||
* Copyright: 2010-2011 Razor team
|
||||
* Authors:
|
||||
* Alexander Sokoloff <sokoloff.a@gmail.com>
|
||||
* Luis Pereira <luis.artur.pereira@gmail.com>
|
||||
*
|
||||
* The directoryMatchesSize() and thedirectorySizeDistance() functions were
|
||||
* taken from Qt5 qtbase/src/gui/image/qiconloader.cpp
|
||||
* Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
||||
*
|
||||
* This program or library is free software; you can redistribute it
|
||||
* and/or modify it under the terms of the GNU Lesser General Public
|
||||
@ -28,8 +33,66 @@
|
||||
#include "iconthemeinfo.h"
|
||||
#include <QDebug>
|
||||
|
||||
#include <private/qtxdg/qiconloader_p.h>
|
||||
|
||||
#include <QStringBuilder>
|
||||
|
||||
#define PREVIEW_ICON_SIZE 22
|
||||
|
||||
using namespace QtXdg;
|
||||
|
||||
/*
|
||||
* This algorithm is defined by the freedesktop spec:
|
||||
* http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html
|
||||
*/
|
||||
static bool directoryMatchesSize(const QIconDirInfo &dir, int iconsize)
|
||||
{
|
||||
if (dir.type == QIconDirInfo::Fixed) {
|
||||
return dir.size == iconsize;
|
||||
|
||||
} else if (dir.type == QIconDirInfo::Scalable) {
|
||||
return dir.size <= dir.maxSize &&
|
||||
iconsize >= dir.minSize;
|
||||
|
||||
} else if (dir.type == QIconDirInfo::Threshold) {
|
||||
return iconsize >= dir.size - dir.threshold &&
|
||||
iconsize <= dir.size + dir.threshold;
|
||||
}
|
||||
|
||||
Q_ASSERT(1); // Not a valid value
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* This algorithm is defined by the freedesktop spec:
|
||||
* http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html
|
||||
*/
|
||||
static int directorySizeDistance(const QIconDirInfo &dir, int iconsize)
|
||||
{
|
||||
if (dir.type == QIconDirInfo::Fixed) {
|
||||
return qAbs(dir.size - iconsize);
|
||||
|
||||
} else if (dir.type == QIconDirInfo::Scalable) {
|
||||
if (iconsize < dir.minSize)
|
||||
return dir.minSize - iconsize;
|
||||
else if (iconsize > dir.maxSize)
|
||||
return iconsize - dir.maxSize;
|
||||
else
|
||||
return 0;
|
||||
|
||||
} else if (dir.type == QIconDirInfo::Threshold) {
|
||||
if (iconsize < dir.size - dir.threshold)
|
||||
return dir.minSize - iconsize;
|
||||
else if (iconsize > dir.size + dir.threshold)
|
||||
return iconsize - dir.maxSize;
|
||||
else return 0;
|
||||
}
|
||||
|
||||
Q_ASSERT(1); // Not a valid value
|
||||
return INT_MAX;
|
||||
}
|
||||
|
||||
#define PRIVIEW_ICON_SIZE 22
|
||||
|
||||
|
||||
IconThemeInfo::IconThemeInfo(const QDir &dir):
|
||||
@ -37,8 +100,8 @@ IconThemeInfo::IconThemeInfo(const QDir &dir):
|
||||
mHidden(false)
|
||||
{
|
||||
mName = dir.dirName();
|
||||
if (dir.exists("index.theme"))
|
||||
load(dir.absoluteFilePath("index.theme"));
|
||||
if (dir.exists(QStringLiteral("index.theme")))
|
||||
load(dir.absoluteFilePath(QStringLiteral("index.theme")));
|
||||
}
|
||||
|
||||
|
||||
@ -50,56 +113,54 @@ void IconThemeInfo::load(const QString &fileName)
|
||||
if (file.status() != QSettings::NoError)
|
||||
return;
|
||||
|
||||
if (file.value("Icon Theme/Directories").toStringList().join("").isEmpty())
|
||||
if (file.value(QStringLiteral("Icon Theme/Directories")).toStringList().join(QLatin1Char(' ')).isEmpty())
|
||||
return;
|
||||
|
||||
mHidden = file.value("Icon Theme/Hidden", false).toBool();
|
||||
mText = file.value("Icon Theme/Name").toString();
|
||||
mComment = file.value("Icon Theme/Comment").toString();
|
||||
mHidden = file.value(QStringLiteral("Icon Theme/Hidden"), false).toBool();
|
||||
mText = file.value(QStringLiteral("Icon Theme/Name")).toString();
|
||||
mComment = file.value(QStringLiteral("Icon Theme/Comment")).toString();
|
||||
|
||||
mValid = true;
|
||||
loadDirsInfo(file, QFileInfo(mFileName).dir().canonicalPath());
|
||||
}
|
||||
|
||||
|
||||
void IconThemeInfo::loadDirsInfo(QSettings &file, const QString &path)
|
||||
QVector<QIcon> IconThemeInfo::icons(const QStringList &iconNames) const
|
||||
{
|
||||
foreach (QString i, file.value("Icon Theme/Directories", QStringList()).toStringList())
|
||||
{
|
||||
file.beginGroup(i);
|
||||
if (file.value("Size", 0).toInt() == PRIVIEW_ICON_SIZE &&
|
||||
file.value("Context").toString() == "Actions"
|
||||
)
|
||||
{
|
||||
mActionsDir = path + QDir::separator() + i;
|
||||
file.endGroup();
|
||||
return;
|
||||
QVector<QIcon> icons;
|
||||
|
||||
const QString currentThemeName = QIconLoader::instance()->themeName();
|
||||
QIconLoader::instance()->setThemeName(mName);
|
||||
foreach (const QString &i, iconNames) {
|
||||
QThemeIconInfo info = QIconLoader::instance()->loadIcon(i);
|
||||
if (!info.entries.isEmpty()) {
|
||||
const int numEntries = info.entries.size();
|
||||
|
||||
// Search for exact matches first
|
||||
bool found = false;
|
||||
for (int i = 0; i < numEntries; ++i) {
|
||||
QIconLoaderEngineEntry *entry = info.entries.at(i);
|
||||
icons.append(QIcon(entry->filename));
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
if (!found) { // No exact match. Search for an approximation
|
||||
// Find the minimum distance icon
|
||||
int minimalSize = INT_MAX;
|
||||
QIconLoaderEngineEntry *closestMatch = 0;
|
||||
for (int i = 0; i < numEntries; ++i) {
|
||||
QIconLoaderEngineEntry *entry = info.entries.at(i);
|
||||
int distance = directorySizeDistance(entry->dir, PREVIEW_ICON_SIZE);
|
||||
if (distance < minimalSize) {
|
||||
minimalSize = distance;
|
||||
closestMatch = entry;
|
||||
}
|
||||
}
|
||||
icons.append(QIcon(closestMatch->filename));
|
||||
}
|
||||
} else {
|
||||
icons.append(QIcon());
|
||||
}
|
||||
file.endGroup();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
QIcon IconThemeInfo::icon(const QString &iconName) const
|
||||
{
|
||||
QDir dir(mActionsDir);
|
||||
|
||||
if (dir.exists(iconName + ".png"))
|
||||
{
|
||||
QIcon icon(mActionsDir + QDir::separator() + iconName + ".png");
|
||||
return icon;
|
||||
}
|
||||
|
||||
if (dir.exists(iconName + ".svg"))
|
||||
{
|
||||
QIcon icon(mActionsDir + QDir::separator() + iconName + ".svg");
|
||||
return icon;
|
||||
}
|
||||
|
||||
if (dir.exists(iconName + ".xpm"))
|
||||
{
|
||||
QIcon icon(mActionsDir + QDir::separator() + iconName + ".xpm");
|
||||
return icon;
|
||||
}
|
||||
|
||||
return QIcon();
|
||||
QIconLoader::instance()->setThemeName(currentThemeName);
|
||||
return icons;
|
||||
}
|
||||
|
@ -29,9 +29,11 @@
|
||||
#define ICONTHEMEINFO_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
#include <QIcon>
|
||||
#include <QDir>
|
||||
#include <QSettings>
|
||||
#include <QVector>
|
||||
|
||||
class IconThemeInfo
|
||||
{
|
||||
@ -45,19 +47,18 @@ public:
|
||||
|
||||
bool isValid() const { return mValid; }
|
||||
bool isHidden() const { return mHidden; }
|
||||
QIcon icon(const QString &iconName) const;
|
||||
QVector<QIcon> icons(const QStringList &iconNames) const;
|
||||
|
||||
private:
|
||||
QString mFileName;
|
||||
QString mName;
|
||||
QString mText;
|
||||
QString mComment;
|
||||
QString mActionsDir;
|
||||
|
||||
bool mValid;
|
||||
bool mHidden;
|
||||
|
||||
void load(const QString &fileName);
|
||||
void loadDirsInfo(QSettings &file, const QString &path);
|
||||
};
|
||||
|
||||
|
||||
|
@ -42,6 +42,7 @@ int main (int argc, char **argv)
|
||||
{
|
||||
LxQt::SingleApplication app(argc, argv);
|
||||
LxQt::Settings* settings = new LxQt::Settings("lxqt");
|
||||
LxQt::Settings* sessionSettings = new LxQt::Settings("session");
|
||||
LxQt::ConfigDialog* dialog = new LxQt::ConfigDialog(QObject::tr("LXQt Appearance Configuration"), settings);
|
||||
|
||||
app.setActivationWindow(dialog);
|
||||
@ -63,7 +64,7 @@ int main (int argc, char **argv)
|
||||
dialog->addPage(fontsPage, QObject::tr("Font"), QStringList() << "preferences-desktop-font" << "preferences-desktop");
|
||||
QObject::connect(dialog, SIGNAL(reset()), fontsPage, SLOT(initControls()));
|
||||
|
||||
SelectWnd* cursorPage = new SelectWnd(settings, dialog);
|
||||
SelectWnd* cursorPage = new SelectWnd(sessionSettings, dialog);
|
||||
cursorPage->setCurrent();
|
||||
dialog->addPage(cursorPage, QObject::tr("Cursor"), QStringList() << "input-mouse" << "preferences-desktop");
|
||||
|
||||
|
@ -33,7 +33,7 @@ by hand but automatically, when choosing a \fBLXQt\-qt\fR session in the Display
|
||||
Manager.
|
||||
.P
|
||||
.SH "REPORTING BUGS"
|
||||
Report bugs to https://github.com/lxde/lxde-qt/issues
|
||||
Report bugs to https://github.com/lxde/lxqt/issues
|
||||
.SH "SEE ALSO"
|
||||
\fBLXQt\fR it has been tailored for users who value simplicity, speed, and
|
||||
an intuitive interface, also intended for less powerful machines. See also:
|
||||
|
@ -99,7 +99,7 @@ void StyleConfig::initControls()
|
||||
|
||||
// activate item views with single click
|
||||
ui->singleClickActivate->setChecked( mSettings->value("single_click_activate", false).toBool());
|
||||
|
||||
|
||||
update();
|
||||
}
|
||||
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1,4 +1,3 @@
|
||||
# Translations
|
||||
Name[de]=Erscheinungsbild
|
||||
GenericName[de]=Erscheinungsbild Einstellungen
|
||||
Comment[de]=Einstellungen zum Aussehen der LXQt Arbeitsfläche
|
||||
GenericName[de]=LXQt Erscheinungsbild Einstellungen
|
||||
Name[de]=LXQt Erscheinungsbild Einstellungen
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="de">
|
||||
<TS version="2.1" language="de">
|
||||
<context>
|
||||
<name>FontsConfig</name>
|
||||
<message>
|
||||
@ -29,98 +29,98 @@
|
||||
<translation>Punktgröße:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation>Normal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation>Fett</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation>Kursiv</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation>Fett und kursiv</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation>Folgende Einstellungen wirken nur auf neu gestartete Programme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation>Kantenglättung bei Schriften verwenden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation>Hinting-Stil:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation>Keine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation>Leicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation>Mittel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation>Vollständig</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation>Schrift-Hinting</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation>Auflösung (DPI):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation>Autohint</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation>Subpixel-Anordnung:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation>RGB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation>BGR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation>VRGB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation>VBGR</translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -6,123 +6,123 @@
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="23"/>
|
||||
<source>Font</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Betűtípus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="30"/>
|
||||
<source>Default font for user interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Felhasználói felület alapértelmezett betűtípusa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="36"/>
|
||||
<source>Font name:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Betűnév:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="46"/>
|
||||
<source>Style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Stílus:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="53"/>
|
||||
<source>Point size:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pontméret:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Normál</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kövér</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Dőlt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Dőlt kövér</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ezek a stílusok csak új indítású alkalmazásoknál láthatók</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Simított betűk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Betű mankó stílus:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Nincs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Enyhe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Közepes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Teljes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Betű mankó</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Felbontás (DPI):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Mankó</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Alképpont simítás:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -150,7 +150,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtthemeconfig.ui" line="23"/>
|
||||
<source>LXQt Theme</source>
|
||||
<translation type="unfinished">LXQt téma</translation>
|
||||
<translation>LXQt téma</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -158,12 +158,12 @@
|
||||
<message>
|
||||
<location filename="../main.cpp" line="45"/>
|
||||
<source>LXQt Appearance Configuration</source>
|
||||
<translation>Alkalmazásmenü</translation>
|
||||
<translation>LXQt megjelenésbeállító</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="51"/>
|
||||
<source>Widget Style</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Bigyótéma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="55"/>
|
||||
@ -178,12 +178,12 @@
|
||||
<message>
|
||||
<location filename="../main.cpp" line="63"/>
|
||||
<source>Font</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Betű</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="68"/>
|
||||
<source>Cursor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kurzor</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -191,42 +191,42 @@
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="23"/>
|
||||
<source>Widget Style</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Bigyótéma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="54"/>
|
||||
<source>Toolbar button style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Eszközsáv stílus:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="62"/>
|
||||
<source>Only display the icon</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Csak ikon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="67"/>
|
||||
<source>Only display the text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Csak szöveg</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="72"/>
|
||||
<source>The text appears beside the icon</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Szöveg az ikon mellett</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="77"/>
|
||||
<source>The text appears under the icon</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Szöveg az ikon alatt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="82"/>
|
||||
<source>Default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Alapértelmezett</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="90"/>
|
||||
<source>Activate item on single click</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Egykattintásos mód</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
@ -6,123 +6,123 @@
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="23"/>
|
||||
<source>Font</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Betűtípus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="30"/>
|
||||
<source>Default font for user interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Felhasználói felület alapértelmezett betűtípusa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="36"/>
|
||||
<source>Font name:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Betűnév:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="46"/>
|
||||
<source>Style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Stílus:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="53"/>
|
||||
<source>Point size:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pontméret:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Normál</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kövér</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Dőlt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Dőlt kövér</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ezek a stílusok csak új indítású alkalmazásoknál láthatók</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Simított betűk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Betű mankó stílus:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Nincs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Enyhe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Közepes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Teljes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Betű mankó</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Felbontás (DPI):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Mankó</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Alképpont simítás:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -130,12 +130,12 @@
|
||||
<message>
|
||||
<location filename="../iconthemeconfig.ui" line="14"/>
|
||||
<source>LXQt Appearance Configuration</source>
|
||||
<translation type="unfinished">LXQt megjelenésbeállító</translation>
|
||||
<translation>LXQt megjelenésbeállító</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../iconthemeconfig.ui" line="26"/>
|
||||
<source>Icons Theme</source>
|
||||
<translation type="unfinished">Ikontémák</translation>
|
||||
<translation>Ikontémák</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -143,7 +143,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtthemeconfig.ui" line="23"/>
|
||||
<source>LXQt Theme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LXQt téma</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -162,32 +162,32 @@
|
||||
<message>
|
||||
<location filename="../main.cpp" line="45"/>
|
||||
<source>LXQt Appearance Configuration</source>
|
||||
<translation type="unfinished">LXQt megjelenésbeállító</translation>
|
||||
<translation>LXQt megjelenésbeállító</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="51"/>
|
||||
<source>Widget Style</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Bigyótéma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="55"/>
|
||||
<source>Icons Theme</source>
|
||||
<translation type="unfinished">Ikontémák</translation>
|
||||
<translation>Ikontémák</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="59"/>
|
||||
<source>LXQt Theme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>LXQT téma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="63"/>
|
||||
<source>Font</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Betű</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="68"/>
|
||||
<source>Cursor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kurzor</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -195,42 +195,42 @@
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="23"/>
|
||||
<source>Widget Style</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Bigyótéma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="54"/>
|
||||
<source>Toolbar button style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Eszközsáv stílus:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="62"/>
|
||||
<source>Only display the icon</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Csak ikon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="67"/>
|
||||
<source>Only display the text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Csak szöveg</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="72"/>
|
||||
<source>The text appears beside the icon</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Szöveg az ikon mellett</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="77"/>
|
||||
<source>The text appears under the icon</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Szöveg az ikon alatt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="82"/>
|
||||
<source>Default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Alapértelmezett</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="90"/>
|
||||
<source>Activate item on single click</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Egykattintásos mód</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,99 +29,99 @@
|
||||
<translation>Dimensione:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation>Normale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation>Grassetto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation>Corsivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation>Grassetto corsivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation>Le impostazioni riguardano solo le applicazioni avviate nuovamente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation>Utilizza anti-aliasing per i caratteri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation>Stile di hinting</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation>Nessuno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation>Leggero</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation>Medio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation>Forte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation>Hinting caratteri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation>Resoluzione (DPI):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation>Hinting automatico</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translatorcomment>no idea how to translate that</translatorcomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -29,99 +29,99 @@
|
||||
<translation>Dimensione:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation>Normale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation>Grassetto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation>Corsivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation>Grassetto corsivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation>Le impostazioni riguardano solo le applicazioni avviate nuovamente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation>Utilizza anti-aliasing per i caratteri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation>Stile di hinting</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation>Nessuno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation>Leggero</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation>Medio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation>Forte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation>Hinting caratteri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation>Resoluzione (DPI):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation>Hinting automatico</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translatorcomment>no idea how to translate that</translatorcomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation>ポイントサイズ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation>ノーマル</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation>太字</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation>斜体</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation>太字・斜体</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation>以下の設定は、これから新たに実行されたアプリケーションに適用されます</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation>アンチエイリアスされたフォントを用いる</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation>フォントのヒンティング形式:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation>なし</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation>軽微</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation>中間</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation>完全</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation>フォントのヒンティング</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation>解像度 (DPI):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation>自動ヒンティング</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation>サブピクセルアンチエイリアス:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation>RGB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation>BGR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation>VRGB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation>VBGR</translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -6,123 +6,123 @@
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="23"/>
|
||||
<source>Font</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Czcionka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="30"/>
|
||||
<source>Default font for user interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Domyślna czcionka dla interfejsu użytkownika</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="36"/>
|
||||
<source>Font name:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Czcionka:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="46"/>
|
||||
<source>Style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Styl:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="53"/>
|
||||
<source>Point size:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Rozmiar:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Normalna</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pogrubiona</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kursywa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pogrubiona kursywa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Poniższe ustawienia dotyczą tylko nowo otwartych aplikacji</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Wygładzanie czcionek (antyaliasing)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Styl hintingu:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Brak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Delikatny</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Średni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Pełny</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Hinting czcionek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Rozdzielczość (DPI):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Autohinting</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Antyaliasing subpikselowy:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>RGB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>BGR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>VRGB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>VBGR</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -150,7 +150,7 @@
|
||||
<message>
|
||||
<location filename="../lxqtthemeconfig.ui" line="23"/>
|
||||
<source>LXQt Theme</source>
|
||||
<translation type="unfinished">Motyw LXQt</translation>
|
||||
<translation>Motyw LXQt</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -163,7 +163,7 @@
|
||||
<message>
|
||||
<location filename="../main.cpp" line="51"/>
|
||||
<source>Widget Style</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Widżety</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="55"/>
|
||||
@ -178,12 +178,12 @@
|
||||
<message>
|
||||
<location filename="../main.cpp" line="63"/>
|
||||
<source>Font</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Czcionka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../main.cpp" line="68"/>
|
||||
<source>Cursor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Kursor</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -191,42 +191,42 @@
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="23"/>
|
||||
<source>Widget Style</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Styl widżetów</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="54"/>
|
||||
<source>Toolbar button style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Styl paska narzędziowego:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="62"/>
|
||||
<source>Only display the icon</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Tylko ikony</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="67"/>
|
||||
<source>Only display the text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Tylko tekst</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="72"/>
|
||||
<source>The text appears beside the icon</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Tekst obok ikon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="77"/>
|
||||
<source>The text appears under the icon</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Tekst poniżej ikon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="82"/>
|
||||
<source>Default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Domyśłny</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../styleconfig.ui" line="90"/>
|
||||
<source>Activate item on single click</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Aktywacja pojedyńczym kliknięciem</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation>Кегль:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation>Нормальный</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation>Полужирный</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation>Наклонный</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation>Полужирный наклонный</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation>Следующие настройки подействуют только на вновь запущенные приложения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation>Использовать сглаживание шрифтов</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation>Стиль хинтинга шрифта:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation>Нет</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation>Слабое</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation>Среднее</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation>Полное</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation>Хинтинг шрифта</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation>Разрешение (DPI):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Автохинтинг</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation>Субпиксельное сглаживание:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation>RGB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation>BGR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation>VRGB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation>VBGR</translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation>Кегль:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation>Нормальный</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation>Полужирный</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation>Наклонный</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation>Полужирный наклонный</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation>Следующие настройки подействуют только на вновь запущенные приложения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation>Использовать сглаживание шрифтов</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation>Стиль хинтинга шрифта:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation>Нет</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation>Слабое</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation>Среднее</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation>Полное</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation>Хинтинг шрифта</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation>Разрешение (DPI):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Автохинтинг</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation>Субпиксельное сглаживание:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation>RGB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation>BGR</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation>VRGB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation>VBGR</translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -29,98 +29,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="64"/>
|
||||
<location filename="../fontsconfig.ui" line="68"/>
|
||||
<source>Normal</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="69"/>
|
||||
<location filename="../fontsconfig.ui" line="73"/>
|
||||
<source>Bold</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="74"/>
|
||||
<location filename="../fontsconfig.ui" line="78"/>
|
||||
<source>Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="79"/>
|
||||
<location filename="../fontsconfig.ui" line="83"/>
|
||||
<source>Bold Italic</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="90"/>
|
||||
<location filename="../fontsconfig.ui" line="94"/>
|
||||
<source>The following settings only affect newly started applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="96"/>
|
||||
<location filename="../fontsconfig.ui" line="100"/>
|
||||
<source>Use antialias fonts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="103"/>
|
||||
<location filename="../fontsconfig.ui" line="107"/>
|
||||
<source>Font hinting style:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="114"/>
|
||||
<location filename="../fontsconfig.ui" line="179"/>
|
||||
<location filename="../fontsconfig.ui" line="118"/>
|
||||
<location filename="../fontsconfig.ui" line="183"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="119"/>
|
||||
<location filename="../fontsconfig.ui" line="123"/>
|
||||
<source>Slight</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="124"/>
|
||||
<location filename="../fontsconfig.ui" line="128"/>
|
||||
<source>Medium</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="129"/>
|
||||
<location filename="../fontsconfig.ui" line="133"/>
|
||||
<source>Full</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="137"/>
|
||||
<location filename="../fontsconfig.ui" line="141"/>
|
||||
<source>Font hinting</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="144"/>
|
||||
<location filename="../fontsconfig.ui" line="148"/>
|
||||
<source>Resolution (DPI):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="151"/>
|
||||
<location filename="../fontsconfig.ui" line="155"/>
|
||||
<source>Autohint</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="168"/>
|
||||
<location filename="../fontsconfig.ui" line="172"/>
|
||||
<source>Subpixel antialiasing:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="184"/>
|
||||
<location filename="../fontsconfig.ui" line="188"/>
|
||||
<source>RGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="189"/>
|
||||
<location filename="../fontsconfig.ui" line="193"/>
|
||||
<source>BGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="194"/>
|
||||
<location filename="../fontsconfig.ui" line="198"/>
|
||||
<source>VRGB</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../fontsconfig.ui" line="199"/>
|
||||
<location filename="../fontsconfig.ui" line="203"/>
|
||||
<source>VBGR</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1,9 +1,5 @@
|
||||
project(lxqt-config-file-associations)
|
||||
|
||||
include_directories(
|
||||
"${CMAKE_CURRENT_BINARY_DIR}"
|
||||
)
|
||||
|
||||
set(H_FILES
|
||||
mimetypedata.h
|
||||
mimetypeviewer.h
|
||||
@ -31,8 +27,7 @@ set(UI_FILES
|
||||
set(QRC_FILES "")
|
||||
|
||||
set(LIBRARIES
|
||||
${QTXDG_LIBRARIES}
|
||||
${LXQT_LIBRARIES}
|
||||
lxqt
|
||||
)
|
||||
|
||||
# Translations **********************************
|
||||
@ -52,17 +47,12 @@ lxqt_translate_desktop(DESKTOP_FILES SOURCES ${PROJECT_NAME}.desktop.in)
|
||||
|
||||
#************************************************
|
||||
|
||||
qt5_wrap_ui(UI_HEADERS ${UI_FILES})
|
||||
qt5_add_resources(QRC_SOURCES ${QRC_FILES})
|
||||
|
||||
add_executable(${PROJECT_NAME}
|
||||
${CPP_FILES}
|
||||
${UI_FILES}
|
||||
${RESOURCES}
|
||||
${QRC_SOURCES}
|
||||
${QRC_FILES}
|
||||
${QM_FILES}
|
||||
${QM_LOADER}
|
||||
${MOC_SOURCES}
|
||||
${DESKTOP_FILES}
|
||||
)
|
||||
|
||||
@ -75,5 +65,13 @@ target_link_libraries(${PROJECT_NAME}
|
||||
${LIBRARIES}
|
||||
)
|
||||
|
||||
install(TARGETS ${PROJECT_NAME} RUNTIME DESTINATION bin)
|
||||
install(FILES ${DESKTOP_FILES} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/applications)
|
||||
install(TARGETS
|
||||
${PROJECT_NAME}
|
||||
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
install(FILES
|
||||
${DESKTOP_FILES}
|
||||
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
|
@ -88,6 +88,7 @@ void ApplicationChooser::updateAllIcons() {
|
||||
}
|
||||
}
|
||||
QCoreApplication::processEvents();
|
||||
QApplication::restoreOverrideCursor();
|
||||
}
|
||||
|
||||
void ApplicationChooser::fillApplicationListWidget()
|
||||
@ -130,7 +131,6 @@ void ApplicationChooser::fillApplicationListWidget()
|
||||
connect(widget.applicationTreeWidget, SIGNAL(currentItemChanged(QTreeWidgetItem*, QTreeWidgetItem*)), this, SLOT(selectionChanged()));
|
||||
widget.applicationTreeWidget->setFocus();
|
||||
|
||||
QApplication::restoreOverrideCursor();
|
||||
if (!applicationsThatHandleThisMimetype.isEmpty()) {
|
||||
widget.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
/*
|
||||
* File: MimetypeItemModel.cpp
|
||||
* Author: christian
|
||||
*
|
||||
*
|
||||
* Created on 5. maj 2013, 09:18
|
||||
*/
|
||||
#include <QObject>
|
||||
@ -12,17 +12,17 @@
|
||||
|
||||
/*
|
||||
* Implementation note:
|
||||
*
|
||||
*
|
||||
* MimetypeItemModel is an implementation of QAbstractItemModel with XdgMimeInfoCache as backing store.
|
||||
*
|
||||
* There are 2 levels of items in this model: mediatype ('application', 'audio', 'image' etc.) and
|
||||
*
|
||||
* There are 2 levels of items in this model: mediatype ('application', 'audio', 'image' etc.) and
|
||||
* subtype ('application/pdf' which is a child of 'application' or 'image/jpeg' which is a child of 'image'.
|
||||
*
|
||||
* A QModelIndex for a mediatype has a zero internal pointer.
|
||||
*
|
||||
* A QModelIndex for a subtype has an internal pointer to the XdgMimeInfo for that subtype - so the QModelIndex for
|
||||
*
|
||||
* A QModelIndex for a mediatype has a zero internal pointer.
|
||||
*
|
||||
* A QModelIndex for a subtype has an internal pointer to the XdgMimeInfo for that subtype - so the QModelIndex for
|
||||
* 'image/jpeg' has an internal pointer that points to the XdgMineInfo for 'image/jpeg' which is held in XdgMimeInfoCache.
|
||||
*
|
||||
*
|
||||
* QModelIndexes for mediatypes have no parents, and QModelIndexes for subtypes have no children.
|
||||
*/
|
||||
|
||||
@ -38,11 +38,11 @@ MimetypeItemModel::~MimetypeItemModel()
|
||||
|
||||
QVariant MimetypeItemModel::data(const QModelIndex& index, int role) const
|
||||
{
|
||||
if (!index.isValid())
|
||||
if (!index.isValid())
|
||||
{
|
||||
return QVariant();
|
||||
}
|
||||
|
||||
|
||||
XdgMimeInfo *mimeInfo = 0;
|
||||
QString text;
|
||||
|
||||
@ -51,7 +51,7 @@ QVariant MimetypeItemModel::data(const QModelIndex& index, int role) const
|
||||
mimeInfo = static_cast<XdgMimeInfo*>(index.internalPointer());
|
||||
text = mimeInfo->subType();
|
||||
}
|
||||
else
|
||||
else
|
||||
{
|
||||
text = XdgMimeInfoCache::mediatypes().value(index.row());
|
||||
}
|
||||
@ -70,27 +70,27 @@ QModelIndex MimetypeItemModel::index(int row, int column, const QModelIndex& par
|
||||
{
|
||||
return QModelIndex();
|
||||
}
|
||||
|
||||
|
||||
if (parent.isValid())
|
||||
{
|
||||
if (parent.row() >= XdgMimeInfoCache::mediatypes().size())
|
||||
if (parent.row() >= XdgMimeInfoCache::mediatypes().size())
|
||||
{
|
||||
return QModelIndex();
|
||||
}
|
||||
|
||||
QString mediatype = XdgMimeInfoCache::mediatypes().value(parent.row());
|
||||
|
||||
|
||||
if (row >= XdgMimeInfoCache::subtypes(mediatype).size())
|
||||
{
|
||||
return QModelIndex();
|
||||
}
|
||||
|
||||
|
||||
QString subtype = XdgMimeInfoCache::subtypes(mediatype).value(row);
|
||||
|
||||
|
||||
XdgMimeInfo* mimeInfo = XdgMimeInfoCache::xdgMimeInfo(mediatype, subtype);
|
||||
return createIndex(row, 0, mimeInfo);
|
||||
}
|
||||
else
|
||||
else
|
||||
{
|
||||
if (row >= XdgMimeInfoCache::mediatypes().size())
|
||||
{
|
||||
@ -106,11 +106,11 @@ QModelIndex MimetypeItemModel::parent(const QModelIndex& index) const
|
||||
if (index.isValid() && index.internalPointer())
|
||||
{
|
||||
XdgMimeInfo* mimeInfo = static_cast<XdgMimeInfo*>(index.internalPointer());
|
||||
|
||||
|
||||
int row = XdgMimeInfoCache::mediatypes().indexOf(mimeInfo->mediaType());
|
||||
return createIndex(row, 0);
|
||||
}
|
||||
else
|
||||
else
|
||||
{
|
||||
return QModelIndex();
|
||||
}
|
||||
@ -133,14 +133,14 @@ int MimetypeItemModel::rowCount(const QModelIndex& parent) const
|
||||
QString media = XdgMimeInfoCache::mediatypes().value(parent.row());
|
||||
return XdgMimeInfoCache::subtypes(media).size();
|
||||
}
|
||||
else
|
||||
else
|
||||
{
|
||||
return XdgMimeInfoCache::mediatypes().size();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
MimetypeFilterItemModel::MimetypeFilterItemModel(QObject* parent) :
|
||||
MimetypeFilterItemModel::MimetypeFilterItemModel(QObject* parent) :
|
||||
QSortFilterProxyModel(parent)
|
||||
{
|
||||
}
|
||||
@ -148,16 +148,16 @@ MimetypeFilterItemModel::MimetypeFilterItemModel(QObject* parent) :
|
||||
bool MimetypeFilterItemModel::filterAcceptsRow(int source_row, const QModelIndex& source_parent) const
|
||||
{
|
||||
QModelIndex index = sourceModel()->index(source_row, 0, source_parent);
|
||||
|
||||
if (source_parent.isValid())
|
||||
|
||||
if (source_parent.isValid())
|
||||
{
|
||||
return filterHelper(index);
|
||||
}
|
||||
else
|
||||
}
|
||||
else
|
||||
{
|
||||
for (int i = 0; i < sourceModel()->rowCount(index); i++)
|
||||
{
|
||||
if (filterAcceptsRow(i, index))
|
||||
if (filterAcceptsRow(i, index))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*
|
||||
/*
|
||||
* File: MimetypeItemModel.h
|
||||
* Author: christian
|
||||
*
|
||||
@ -19,7 +19,7 @@
|
||||
Q_DECLARE_METATYPE(XdgMimeInfo*)
|
||||
|
||||
/*!
|
||||
*
|
||||
*
|
||||
*/
|
||||
class MimetypeItemModel : public QAbstractItemModel
|
||||
{
|
||||
@ -31,14 +31,14 @@ public:
|
||||
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
|
||||
QModelIndex parent(const QModelIndex &index) const;
|
||||
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
||||
int columnCount(const QModelIndex &parent = QModelIndex()) const {return 1;}
|
||||
int columnCount(const QModelIndex &parent = QModelIndex()) const {return 1;}
|
||||
};
|
||||
|
||||
class MimetypeFilterItemModel : public QSortFilterProxyModel
|
||||
{
|
||||
public:
|
||||
MimetypeFilterItemModel(QObject *parent = 0);
|
||||
|
||||
|
||||
bool filterAcceptsRow(int source_row, const QModelIndex& source_parent) const;
|
||||
|
||||
bool filterHelper(QModelIndex& source_index) const;
|
||||
|
@ -33,17 +33,17 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../applicationchooser.ui" line="135"/>
|
||||
<location filename="../applicationchooser.cpp" line="85"/>
|
||||
<location filename="../applicationchooser.cpp" line="113"/>
|
||||
<source>Other applications</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../applicationchooser.cpp" line="86"/>
|
||||
<location filename="../applicationchooser.cpp" line="114"/>
|
||||
<source>Applications that handle %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../applicationchooser.cpp" line="114"/>
|
||||
<location filename="../applicationchooser.cpp" line="151"/>
|
||||
<source>No applications found</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="de">
|
||||
<TS version="2.1" language="de">
|
||||
<context>
|
||||
<name>ApplicationChooser</name>
|
||||
<message>
|
||||
@ -33,17 +33,17 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../applicationchooser.ui" line="135"/>
|
||||
<location filename="../applicationchooser.cpp" line="85"/>
|
||||
<location filename="../applicationchooser.cpp" line="113"/>
|
||||
<source>Other applications</source>
|
||||
<translation>Andere Anwendung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../applicationchooser.cpp" line="86"/>
|
||||
<location filename="../applicationchooser.cpp" line="114"/>
|
||||
<source>Applications that handle %1</source>
|
||||
<translation>Anwendungen die %1 verarbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../applicationchooser.cpp" line="114"/>
|
||||
<location filename="../applicationchooser.cpp" line="151"/>
|
||||
<source>No applications found</source>
|
||||
<translation>Keine Anwendung gefunden</translation>
|
||||
</message>
|
||||
|
@ -0,0 +1,4 @@
|
||||
# Translations
|
||||
Name[hu]=Fájlhozzárendelések
|
||||
GenericName[hu]=Fájltípusok hozzárendelése
|
||||
Comment[hu]=Fájltípusok hozzárandelése programokhoz
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user