├── AUTHORS ├── CHANGELOG ├── CMakeLists.txt ├── COPYING ├── README.md ├── autostart ├── CMakeLists.txt ├── lxqt-compton.desktop.in └── translations │ ├── lxqt-compton_cs.desktop │ ├── lxqt-compton_da.desktop │ ├── lxqt-compton_de.desktop │ ├── lxqt-compton_el.desktop │ ├── lxqt-compton_es.desktop │ ├── lxqt-compton_gl.desktop │ ├── lxqt-compton_ja.desktop │ ├── lxqt-compton_lt.desktop │ ├── lxqt-compton_pl.desktop │ ├── lxqt-compton_pt.desktop │ └── lxqt-compton_tr.desktop ├── compton-conf.cpp ├── compton-conf.desktop.in ├── compton-conf.h ├── compton.conf.example ├── maindialog.cpp ├── maindialog.h ├── maindialog.ui └── translations ├── CMakeLists.txt ├── compton-conf.ts ├── compton-conf_arn.ts ├── compton-conf_ast.ts ├── compton-conf_be.ts ├── compton-conf_ca.desktop ├── compton-conf_ca.ts ├── compton-conf_cs.desktop ├── compton-conf_cs.ts ├── compton-conf_cy.ts ├── compton-conf_da.desktop ├── compton-conf_da.ts ├── compton-conf_de.desktop ├── compton-conf_de.ts ├── compton-conf_el.ts ├── compton-conf_en_GB.ts ├── compton-conf_es.desktop ├── compton-conf_es.ts ├── compton-conf_eu.ts ├── compton-conf_fil.ts ├── compton-conf_fr.desktop ├── compton-conf_fr.ts ├── compton-conf_gl.desktop ├── compton-conf_gl.ts ├── compton-conf_he.ts ├── compton-conf_hi.ts ├── compton-conf_hu.desktop ├── compton-conf_hu.ts ├── compton-conf_id.ts ├── compton-conf_it.desktop ├── compton-conf_it.ts ├── compton-conf_ja.desktop ├── compton-conf_ja.ts ├── compton-conf_ko.ts ├── compton-conf_lt.desktop ├── compton-conf_lt.ts ├── compton-conf_lv.ts ├── compton-conf_nb_NO.ts ├── compton-conf_nl.ts ├── compton-conf_pl.desktop ├── compton-conf_pl.ts ├── compton-conf_pt.desktop ├── compton-conf_pt.ts ├── compton-conf_pt_BR.ts ├── compton-conf_pt_PT.ts ├── compton-conf_ru.desktop ├── compton-conf_ru.ts ├── compton-conf_sk_SK.ts ├── compton-conf_tr.desktop ├── compton-conf_tr.ts ├── compton-conf_uk.ts ├── compton-conf_vi.ts ├── compton-conf_zh_CN.desktop ├── compton-conf_zh_CN.ts └── compton-conf_zh_TW.desktop /AUTHORS: -------------------------------------------------------------------------------- 1 | Upstream Authors: 2 | LXQt team: https://lxqt.org 3 | Hong Jen Yee (PCMan) 4 | 5 | Copyright: 6 | Copyright (c) 2013-2018 LXQt team 7 | 8 | License: LGPL-2.1+ 9 | The full text of the licenses can be found in the 'COPYING' file. 10 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | compton-conf-0.16.0 / 2020-11-01 2 | ================================ 3 | 4 | * This is the last release, which includes some translation updates. compton-conf will receive no more updates. 5 | 6 | compton-conf-0.15.0 / 2020-04-25 7 | ================================ 8 | 9 | * Bumped version to 0.15.0. 10 | * Remove (duplicated) string casts definitions. 11 | 12 | compton-conf-0.14.1 / 2019-02-25 13 | ================================ 14 | 15 | * Bumped version to 0.14.1 16 | * Only translations was changed. 17 | 18 | compton-conf-0.14.0 / 2019-01-25 19 | ================================ 20 | 21 | * Bumped version to 0.14.0 22 | - the big bump was needed to prevent version conflicts 23 | with the merged back translations 24 | * Updated Translations 25 | * Improved cmake scripting 26 | - set cmake_minimum_required to 3.1.0 27 | - removed locale compile definitons 28 | - improved ldflags handling 29 | * Moved translations from lxqt-l10n back to compton-conf 30 | - removed obsolete translation fuctionality 31 | * Added translation state to README.md 32 | 33 | compton-conf-0.4.0 / 2018-05-21 34 | =============================== 35 | 36 | * Bumped minor version to 4 37 | * Spanish translation update 38 | * CMake: Prevent in-source builds 39 | * http -> https 40 | * Fixed repo pathes 41 | * Update zh_TW desktop entry 42 | * Add Traditional Chinese desktop entry 43 | * Add Simplified Chinese desktop entry 44 | * Drop Qt foreach 45 | * Fix FTBFS with Qt4 46 | * Add checkbox for option xinerama-shadow-crop 47 | * Remove categories for Gnome 48 | * Use default icon of compton for compton-conf 49 | * Add Categories for Xfce and Gnome 50 | * cmake: Handle CMP0071 51 | * cmake: Use LXQtCompilerSettings 52 | * cmake: Update minimum required version 53 | * Add Catalan translation 54 | * Add RadioButtons for setting the rendering backend 55 | * Don't export github templates 56 | 57 | 0.3.0 / 2017-09-24 58 | ================== 59 | 60 | * Release 0.3.0: Update changelog 61 | * .github added to .gitattributes 62 | * bump version to 0.3.0 and tools version to 0.4.0 63 | * Added *lt.desktop 64 | * Added Lithuanian language 65 | * liblxqt don't make sense here 66 | * Copied issue template 67 | * Fixed typo 68 | * set Qt::AA_UseHighDpiPixmaps to true 69 | * Added basic cli interface to compton-conf 70 | * Added default CMAKE_BUILD_TYPE and proper version 71 | * added *pl.desktop 72 | * Included LXQtConfigVars in CMakeLists.txt 73 | * Added subdirectory autostart (merged from lxqt-common) 74 | * Updated *_da.desktop files and removed *_da_DK.desktop files 75 | * Update Greek translation (el) Remove country variant from language code 76 | * CMake: Adds Runtime and Devel install COMPONENTs 77 | * Coding style changes 78 | * Updates the build system to use the Targets infrastructure 79 | * Drops hardcoded /etc/xdg paths 80 | * Updated german translation, replaced Qt4 by Qt in all xsession/translations 81 | * Portuguese update for .desktop files 82 | * Updates translations infrastructure 83 | * Update the required minimum cmake version 84 | * Add compton to autostart (turned off by default). 85 | * Support lxqt-session and add necessary xdg autostart desktop entry files. 86 | * Bump year 87 | * Added *da.desktop 88 | 89 | 0.2.1 / 2016-12-11 90 | ================== 91 | 92 | * Release 0.2.1: Update changelog 93 | * Created compton-conf_it.desktop, removed unused lines (#36) 94 | * Create compton-conf_fr.desktop 95 | * Use the new lxqt-build-tools package 96 | * Remove cpack (#34) 97 | 98 | 0.2.0 / 2016-09-24 99 | ================== 100 | 101 | * Release 0.2.0: Add changelog 102 | * Bump release to 0.2.0 (#33) 103 | * Set default opacity for active windows to 1 104 | * Extend README.md 105 | * Delete compton-conf_ru_RU.desktop 106 | * build: Use external translations 107 | * ts-files removal 108 | * bump years 109 | * Work around grep 2.23 new behaviour 110 | * compton-conf is LGPL only 111 | * don't track $IDE settings 112 | * Fix language tag 113 | * Update translations 114 | * Fix LICENSE file 115 | * Fix mixed indents 116 | * fixed Comment[ru_RU] -> Comment[hu] 117 | * Correctly include the CMake modules in intree/superbuild mode 118 | * Hungarian translation 119 | * .desktop: icon change 120 | * Make Qt5 default Change the option to USE_QT4, defaulting to No 121 | * CMakeLists.txt: do not completely overwrite CMAKE_CXX_FLAGS 122 | * Corrected language code (de_DE -> de) of german translation, marked translations as done. 123 | * README.md: fix download URL 124 | * Add Portuguese language to GUI 125 | * Added german translation. 126 | * i18n/i10n: Fixes mistakes in the documentation 127 | * lxqt_translate_desktop: pass -h instead of --no-filename to grep which is compatible with Busybox 128 | * Portuguese update fixed 129 | * add Japanese translation 130 | * lxqt_translate_desktop: Updates code to cope with the cmake-policy CMP0054 131 | * Replace colon : with semicolon ; in README.md 132 | * Adds .gitignore 133 | * Add Russian translation 134 | * Handles localization of .desktop files 135 | * Updates translations 136 | * Adds translations support 137 | * Updates path to README.md 138 | * Adds file-extension, screenshot & build instructios 139 | * Add Qt5 support. 140 | 141 | 0.1.0 / 2014-05-07 142 | ================== 143 | 144 | * Update desktop file 145 | * Update README/COPYING/AUTHORS 146 | * add desktop file for compron-conf 147 | * Add a basic about dialog. Try to load translation files. 148 | * Re-gain focus after reloading compton. 149 | * Support chaging shadow color. Set correct ranges on spiin buttons. 150 | * Add default configs, Implement saving config files. 151 | * Initial commit. 152 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR) 2 | # CMP0000: Call the cmake_minimum_required() command at the beginning of the top-level 3 | # CMakeLists.txt file even before calling the project() command. 4 | # The cmake_minimum_required(VERSION) command implicitly invokes the cmake_policy(VERSION) 5 | # command to specify that the current project code is written for the given range of CMake 6 | # versions. 7 | project(compton-conf) 8 | 9 | set(LXQTBT_MINIMUM_VERSION "0.8.0") 10 | set(QT_MINIMUM_VERSION "5.12.0") 11 | 12 | option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF) 13 | 14 | find_package(lxqt-build-tools ${LXQTBT_MINIMUM_VERSION} REQUIRED) 15 | 16 | set(COMPTONCONF_MAJOR_VERSION 0) 17 | set(COMPTONCONF_MINOR_VERSION 16) 18 | set(COMPTONCONF_PATCH_VERSION 0) 19 | set(COMPTONCONF_VERSION ${COMPTONCONF_MAJOR_VERSION}.${COMPTONCONF_MINOR_VERSION}.${COMPTONCONF_PATCH_VERSION}) 20 | add_definitions( 21 | "-DCOMPTONCONF_VERSION=\"${COMPTONCONF_VERSION}\"" 22 | ) 23 | 24 | include(LXQtPreventInSourceBuilds) 25 | include(LXQtConfigVars) 26 | include(LXQtTranslateTs) 27 | include(LXQtTranslateDesktop) 28 | 29 | set(CMAKE_INCLUDE_CURRENT_DIR ON) 30 | set(CMAKE_POSITION_INDEPENDENT_CODE ON) 31 | set(CMAKE_AUTOMOC ON) 32 | 33 | find_package(Qt5Widgets ${QT_MINIMUM_VERSION} REQUIRED) 34 | find_package(Qt5DBus ${QT_MINIMUM_VERSION} REQUIRED) 35 | find_package(Qt5LinguistTools ${QT_MINIMUM_VERSION} REQUIRED) 36 | message(STATUS "Building with Qt${Qt5Core_VERSION_STRING}") 37 | 38 | # libconfig using pkg-config 39 | find_package(PkgConfig REQUIRED) 40 | pkg_check_modules(LIBCONFIG REQUIRED 41 | libconfig 42 | ) 43 | 44 | include(GNUInstallDirs REQUIRED) 45 | include(LXQtCompilerSettings NO_POLICY_SCOPE) # must be after cmake_minimum_required() 46 | 47 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DQT_NO_KEYWORDS") 48 | 49 | set(QTX_INCLUDE_DIRS "") 50 | set(QTX_LIBRARIES Qt5::Widgets Qt5::DBus) 51 | 52 | include_directories( 53 | ${QTX_INCLUDE_DIRS} 54 | ${LIBCONFIG_INCLUDE_DIRS} 55 | ${CMAKE_CURRENT_BINARY_DIR} 56 | ) 57 | 58 | set(compton-conf_HS 59 | compton-conf.h 60 | maindialog.h 61 | ) 62 | 63 | set(compton-conf_SRCS 64 | maindialog.cpp 65 | compton-conf.cpp 66 | ) 67 | 68 | set(compton-conf_UIS 69 | maindialog.ui 70 | ) 71 | 72 | set(compton-conf_DESKTOP_FILES_IN 73 | compton-conf.desktop.in 74 | ) 75 | 76 | lxqt_translate_ts(compton-conf_QM_FILES 77 | UPDATE_TRANSLATIONS 78 | ${UPDATE_TRANSLATIONS} 79 | SOURCES 80 | ${compton-conf_HS} 81 | ${compton-conf_SRCS} 82 | ${compton-conf_UIS} 83 | INSTALL_DIR 84 | ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME}/translations 85 | ) 86 | 87 | lxqt_translate_desktop(compton-conf_DESKTOP_FILES SOURCES ${compton-conf_DESKTOP_FILES_IN}) 88 | 89 | qt5_wrap_ui(compton-conf_UI_H ${compton-conf_UIS}) 90 | 91 | set_property(SOURCE ${compton-conf_UI_H} PROPERTY SKIP_AUTOMOC ON) 92 | 93 | add_definitions( 94 | -DCOMPTON_CONF_DATA_DIR="${CMAKE_INSTALL_FULL_DATADIR}/compton-conf" 95 | ) 96 | 97 | add_executable(compton-conf 98 | ${compton-conf_SRCS} 99 | ${compton-conf_UI_H} 100 | ${compton-conf_QM_FILES} 101 | ${compton-conf_QM_LOADER} 102 | ${compton-conf_DESKTOP_FILES} 103 | ) 104 | 105 | target_link_libraries(compton-conf 106 | ${QTX_LIBRARIES} 107 | ${LIBCONFIG_LDFLAGS} 108 | ) 109 | 110 | install(TARGETS compton-conf RUNTIME DESTINATION bin) 111 | install(FILES compton.conf.example DESTINATION ${CMAKE_INSTALL_DATADIR}/compton-conf) 112 | install(FILES ${compton-conf_DESKTOP_FILES} DESTINATION ${CMAKE_INSTALL_DATADIR}/applications/) 113 | 114 | # merged from lxqt-common 115 | add_subdirectory(autostart) 116 | 117 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # compton-conf 2 | 3 | ## WARNING 4 | 5 | This repository is archived and will receive no further updates and should be considered deprecated. 6 | If you are looking for a configuration tool for the X composite manager, try [picom-conf](https://github.com/qtilities/picom-conf). 7 | 8 | ## Overview 9 | 10 | compton-conf is a configuration tool for X composite manager [Compton](https://github.com/chjj/compton). 11 | 12 | ![Screenshot of compton-conf running on awesome-wm](https://i.imgur.com/2fSiAx8.png) 13 | 14 | It is maintained by the LXQt project but can be used independently from this desktop environment. 15 | 16 | ## Installation 17 | 18 | ### Compiling source code 19 | 20 | Runtime dependencies are libconfig and qtbase. 21 | Additional build dependencies are CMake and [liblxqt](https://github.com/lxqt/liblxqt) as well as optionally 22 | Git to pull latest VCS checkouts. The localization files were outsourced to repository [lxqt-l10n](https://github.com/lxqt/lxqt-l10n) 23 | so the corresponding dependencies are needed, too. Please refer to this repository's `README.md` for further information. 24 | 25 | Code configuration is handled by CMake. CMake variable `CMAKE_INSTALL_PREFIX` has to be set to `/usr` on most operating systems. 26 | 27 | To build run `make`, to install `make install` which accepts variable `DESTDIR` as usual. 28 | 29 | ### Binary packages 30 | 31 | Official binary packages are available in Arch Linux, Debian (as of Debian stretch) and openSUSE (Leap 42.1 and Tumbleweed). 32 | The tool is missing in Fedora so far. 33 | 34 | 35 | ###Translations 36 | 37 | Translations can be done in [LXQt-Weblate](https://translate.lxqt-project.org/projects/lxqt-configuration/compton-conf/) 38 | 39 | 40 | Translation status 41 | 42 | 43 | -------------------------------------------------------------------------------- /autostart/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | file(GLOB DESKTOP_FILES_IN *.desktop.in) 2 | 3 | # Translations ********************************** 4 | lxqt_translate_desktop(DESKTOP_FILES 5 | SOURCES 6 | ${DESKTOP_FILES_IN} 7 | ) 8 | add_custom_target(autostart_desktop_files ALL DEPENDS ${DESKTOP_FILES}) 9 | #************************************************ 10 | 11 | install(FILES 12 | ${DESKTOP_FILES} 13 | DESTINATION "${LXQT_ETC_XDG_DIR}/autostart" 14 | COMPONENT Runtime 15 | ) 16 | -------------------------------------------------------------------------------- /autostart/lxqt-compton.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=Compton (X Compositor) 4 | GenericName=X compositor 5 | Comment=A X compositor 6 | TryExec=compton 7 | Exec=compton --dbus 8 | 9 | # turned off by default 10 | Hidden=true 11 | OnlyShowIn=LXQt; 12 | X-LXQt-Module=true 13 | -------------------------------------------------------------------------------- /autostart/translations/lxqt-compton_cs.desktop: -------------------------------------------------------------------------------- 1 | Name[cs]=Compton (kompozitor grafický X server) 2 | GenericName[cs]=Kompozitor grafický X server 3 | Comment[cs]=Kompozitor grafický X server 4 | -------------------------------------------------------------------------------- /autostart/translations/lxqt-compton_da.desktop: -------------------------------------------------------------------------------- 1 | # Translations 2 | Name[da]=Compton (X-compositor) 3 | Comment[da]=En X-compositor 4 | -------------------------------------------------------------------------------- /autostart/translations/lxqt-compton_de.desktop: -------------------------------------------------------------------------------- 1 | #TRANSLATIONS 2 | Name[de]=Compton (X11 Kompositionsmanager) 3 | GenericName[de]=X11 Kompositionsmanager 4 | Comment[de]=Kompositionsmanager für X11 5 | -------------------------------------------------------------------------------- /autostart/translations/lxqt-compton_el.desktop: -------------------------------------------------------------------------------- 1 | Name[el]=Compton (Συνθέτης X) 2 | GenericName[el]=Συνθέτης X 3 | Comment[el]=Ένας συνθέτης X 4 | -------------------------------------------------------------------------------- /autostart/translations/lxqt-compton_es.desktop: -------------------------------------------------------------------------------- 1 | Name[es]=Compton (Gestor de composición para X) 2 | GenericName[es]=Gestor de composición para X 3 | Comment[es]=Un gestor de composición para X 4 | -------------------------------------------------------------------------------- /autostart/translations/lxqt-compton_gl.desktop: -------------------------------------------------------------------------------- 1 | Name[gl]=Compton (Xestor de composición para X) 2 | GenericName[gl]=Xestor de composición para X 3 | Comment[gl]=Un xestor de composición para X 4 | -------------------------------------------------------------------------------- /autostart/translations/lxqt-compton_ja.desktop: -------------------------------------------------------------------------------- 1 | Name[ja]=Compton (X コンポジター) 2 | GenericName[ja]=X コンポジター 3 | Comment[ja]=コンポジット機能(ウィンドウに特殊効果)をつけます 4 | -------------------------------------------------------------------------------- /autostart/translations/lxqt-compton_lt.desktop: -------------------------------------------------------------------------------- 1 | #TRANSLATIONS 2 | Name[lt]=Compton (X tvarkytojas) 3 | GenericName[lt]=X tvarkytojas 4 | Comment[lt]=X tvarkytojas 5 | -------------------------------------------------------------------------------- /autostart/translations/lxqt-compton_pl.desktop: -------------------------------------------------------------------------------- 1 | #TRANSLATIONS 2 | Name[pl]=Menedżer kompozycji Compton 3 | GenericName[pl]=Menedżer kompozycji X11 4 | Comment[pl]=Menedżer kompozycji dla X11 5 | -------------------------------------------------------------------------------- /autostart/translations/lxqt-compton_pt.desktop: -------------------------------------------------------------------------------- 1 | #TRANSLATIONS 2 | Name[pt]=Compton (Compositor X) 3 | GenericName[pt]=Compositor X 4 | Comment[pt]=Compositor para o servidor X 5 | -------------------------------------------------------------------------------- /autostart/translations/lxqt-compton_tr.desktop: -------------------------------------------------------------------------------- 1 | #TRANSLATIONS 2 | Name[tr]=Compton (X Bileşikleştirici) 3 | GenericName[tr]=X bileşikleştirici 4 | Comment[tr]=Bir X bileşiklikleştiricisi 5 | -------------------------------------------------------------------------------- /compton-conf.cpp: -------------------------------------------------------------------------------- 1 | #include "compton-conf.h" 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include "maindialog.h" 8 | 9 | int main(int argc, char** argv) { 10 | QApplication app(argc, argv); 11 | app.setAttribute(Qt::AA_UseHighDpiPixmaps, true); 12 | 13 | QCommandLineParser parser; 14 | parser.setApplicationDescription(QStringLiteral("Compton Conf")); 15 | const QString VERINFO = QStringLiteral(COMPTONCONF_VERSION 16 | "\nQt " QT_VERSION_STR); 17 | app.setApplicationVersion(VERINFO); 18 | parser.addVersionOption(); 19 | parser.addHelpOption(); 20 | parser.process(app); 21 | 22 | // load translations 23 | QTranslator qtTranslator, translator; 24 | // install the translations built-into Qt itself 25 | qtTranslator.load(QStringLiteral("qt_") + QLocale::system().name(), QLibraryInfo::location(QLibraryInfo::TranslationsPath)); 26 | app.installTranslator(&qtTranslator); 27 | // install our own tranlations 28 | translator.load(QStringLiteral("compton-conf_") + QLocale::system().name(), QStringLiteral(COMPTON_CONF_DATA_DIR) + QStringLiteral("/translations")); 29 | app.installTranslator(&translator); 30 | 31 | MainDialog dlg; 32 | dlg.exec(); 33 | return 0; 34 | } 35 | -------------------------------------------------------------------------------- /compton-conf.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=Window Effects 4 | GenericName=Compton Configuration 5 | Comment=Configure Compton window effects 6 | TryExec=compton-conf 7 | Exec=compton-conf 8 | Icon=compton 9 | Categories=Settings;DesktopSettings;Qt;LXQt;X-XFCE-SettingsDialog;X-XFCE-PersonalSettings; 10 | 11 | #TRANSLATIONS_DIR=translations 12 | -------------------------------------------------------------------------------- /compton-conf.h: -------------------------------------------------------------------------------- 1 | #ifndef _COMPTON_CONF_H_ 2 | #define _COMPTON_CONF_H_ 3 | 4 | 5 | #endif // _COMPTON_CONF_H_ 6 | -------------------------------------------------------------------------------- /compton.conf.example: -------------------------------------------------------------------------------- 1 | # Shadow 2 | shadow = true; 3 | no-dnd-shadow = true; 4 | no-dock-shadow = true; 5 | clear-shadow = true; 6 | shadow-radius = 7; 7 | shadow-offset-x = -7; 8 | shadow-offset-y = -7; 9 | shadow-opacity = 0.7; 10 | shadow-red = 0.0; 11 | shadow-green = 0.0; 12 | shadow-blue = 0.0; 13 | shadow-exclude = [ "name = 'Notification'", "class_g = 'Conky'", "class_g ?= 'Notify-osd'", "class_g = 'Cairo-clock'" ]; 14 | # shadow-exclude = "n:e:Notification"; 15 | shadow-ignore-shaped = false; 16 | # shadow-exclude-reg = "x10+0+0"; 17 | xinerama-shadow-crop = false; 18 | 19 | # Opacity 20 | menu-opacity = 0.8; 21 | inactive-opacity = 0.8; 22 | active-opacity = 1.0; 23 | frame-opacity = 0.7; 24 | inactive-opacity-override = false; 25 | alpha-step = 0.06; 26 | inactive-dim = 0.0; 27 | # inactive-dim-fixed = true; 28 | # blur-background = true; 29 | # blur-background-frame = true; 30 | blur-kern = "3x3box" 31 | # blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1" 32 | # blur-background-fixed = true; 33 | blur-background-exclude = [ "window_type = 'dock'", "window_type = 'desktop'" ]; 34 | # opacity-rule = [ "80:class_g = 'URxvt'" ]; 35 | 36 | # Fading 37 | fading = true; 38 | # fade-delta = 30; 39 | fade-in-step = 0.03; 40 | fade-out-step = 0.03; 41 | # no-fading-openclose = true; 42 | fade-exclude = [ ]; 43 | 44 | # Other 45 | backend = "xrender" 46 | mark-wmwin-focused = true; 47 | mark-ovredir-focused = true; 48 | # use-ewmh-active-win = true; 49 | detect-rounded-corners = true; 50 | detect-client-opacity = true; 51 | refresh-rate = 0; 52 | vsync = "none"; 53 | dbe = false; 54 | paint-on-overlay = true; 55 | # sw-opti = true; 56 | # unredir-if-possible = true; 57 | # unredir-if-possible-delay = 5000; 58 | # unredir-if-possible-exclude = [ ]; 59 | focus-exclude = [ "class_g = 'Cairo-clock'" ]; 60 | detect-transient = true; 61 | detect-client-leader = true; 62 | invert-color-include = [ ]; 63 | # resize-damage = 1; 64 | 65 | # GLX backend 66 | # glx-no-stencil = true; 67 | glx-copy-from-front = false; 68 | # glx-use-copysubbuffermesa = true; 69 | # glx-no-rebind-pixmap = true; 70 | glx-swap-method = "undefined"; 71 | # glx-use-gpushader4 = true; 72 | 73 | # Window type settings 74 | wintypes: 75 | { 76 | tooltip = { fade = true; shadow = false; opacity = 0.75; focus = true; }; 77 | }; 78 | -------------------------------------------------------------------------------- /maindialog.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright (C) 2013 4 | * 5 | * This library is free software; you can redistribute it and/or 6 | * modify it under the terms of the GNU Lesser General Public 7 | * License as published by the Free Software Foundation; either 8 | * version 2.1 of the License, or (at your option) any later version. 9 | * 10 | * This library is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 | * Lesser General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU Lesser General Public 16 | * License along with this library; if not, write to the Free Software 17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 | * 19 | */ 20 | 21 | #ifndef MAINDIALOG_H 22 | #define MAINDIALOG_H 23 | 24 | #include 25 | #include 26 | 27 | namespace Ui 28 | { 29 | class MainDialog; 30 | } 31 | 32 | class QAbstractButton; 33 | 34 | class MainDialog : public QDialog 35 | { 36 | Q_OBJECT 37 | public: 38 | MainDialog(QString userConfigFile = QString()); 39 | ~MainDialog(); 40 | 41 | virtual void done(int res); 42 | 43 | private: 44 | void saveConfig(); 45 | void updateShadowColorButton(); 46 | 47 | void configSetInt(const char* key, int val); 48 | void configSetFloat(const char* key, double val); 49 | void configSetBool(const char* key, bool val); 50 | void configSetString(const char* key, const char* val); 51 | 52 | private Q_SLOTS: 53 | void onButtonToggled(bool checked); 54 | void onSpinValueChanged(double d); 55 | void onSpinValueChanged(int i); 56 | void onDialogButtonClicked(QAbstractButton* button); 57 | void onColorButtonClicked(); 58 | void onAboutButtonClicked(); 59 | void onRadioGroupToggled(bool checked); 60 | 61 | private: 62 | Ui::MainDialog* ui; 63 | config_t config_; 64 | QString userConfigFile_; 65 | QColor shadowColor_; 66 | }; 67 | 68 | #endif // MAINDIALOG_H 69 | -------------------------------------------------------------------------------- /translations/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(compton-conf) 2 | 3 | build_component("." "${CMAKE_INSTALL_FULL_DATADIR}/compton-conf/translations") 4 | -------------------------------------------------------------------------------- /translations/compton-conf.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | 10 | 11 | 12 | 13 | Shadow 14 | 15 | 16 | 17 | 18 | The blur radius for shadows 19 | 20 | 21 | 22 | 23 | The left offset for shadows 24 | 25 | 26 | 27 | 28 | The top offset for shadows 29 | 30 | 31 | 32 | 33 | The translucency for shadows 34 | 35 | 36 | 37 | 38 | Color of shadow 39 | 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | 75 | 76 | 77 | 78 | Opacity 79 | 80 | 81 | 82 | 83 | The opacity for menus 84 | 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | 90 | 91 | 92 | 93 | Default opacity for active windows 94 | 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | 106 | 107 | 108 | 109 | Dim inactive windows 110 | 111 | 112 | 113 | 114 | Do not let dimness adjust based on window opacity 115 | 116 | 117 | 118 | 119 | Blur background of transparent windows 120 | 121 | 122 | 123 | 124 | Blur background of opaque windows with transparent frames as well 125 | 126 | 127 | 128 | 129 | Do not let blur radius adjust based on window opacity 130 | 131 | 132 | 133 | 134 | Fade 135 | 136 | 137 | 138 | 139 | Fade windows during opacity changes 140 | 141 | 142 | 143 | 144 | The time between steps in a fade in milliseconds 145 | 146 | 147 | 148 | 149 | Opacity change between steps while fading in 150 | 151 | 152 | 153 | 154 | Opacity change between steps while fading out 155 | 156 | 157 | 158 | 159 | Avoid fade windows in/out when opening/closing 160 | 161 | 162 | 163 | 164 | Other 165 | 166 | 167 | 168 | 169 | Rendering backend 170 | 171 | 172 | 173 | 174 | X Render 175 | 176 | 177 | 178 | 179 | GLX (OpenGL) 180 | 181 | 182 | 183 | 184 | About 185 | 186 | 187 | 188 | 189 | About ComptonConf 190 | 191 | 192 | 193 | 194 | ComptonConf - configuration tool for compton 195 | 196 | Copyright (C) 2013 197 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 198 | 199 | 200 | 201 | 202 | -------------------------------------------------------------------------------- /translations/compton-conf_arn.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | 10 | 11 | 12 | 13 | Shadow 14 | 15 | 16 | 17 | 18 | The blur radius for shadows 19 | 20 | 21 | 22 | 23 | The left offset for shadows 24 | 25 | 26 | 27 | 28 | The top offset for shadows 29 | 30 | 31 | 32 | 33 | The translucency for shadows 34 | 35 | 36 | 37 | 38 | Color of shadow 39 | 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | 75 | 76 | 77 | 78 | Opacity 79 | 80 | 81 | 82 | 83 | The opacity for menus 84 | 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | 90 | 91 | 92 | 93 | Default opacity for active windows 94 | 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | 106 | 107 | 108 | 109 | Dim inactive windows 110 | 111 | 112 | 113 | 114 | Do not let dimness adjust based on window opacity 115 | 116 | 117 | 118 | 119 | Blur background of transparent windows 120 | 121 | 122 | 123 | 124 | Blur background of opaque windows with transparent frames as well 125 | 126 | 127 | 128 | 129 | Do not let blur radius adjust based on window opacity 130 | 131 | 132 | 133 | 134 | Fade 135 | 136 | 137 | 138 | 139 | Fade windows during opacity changes 140 | 141 | 142 | 143 | 144 | The time between steps in a fade in milliseconds 145 | 146 | 147 | 148 | 149 | Opacity change between steps while fading in 150 | 151 | 152 | 153 | 154 | Opacity change between steps while fading out 155 | 156 | 157 | 158 | 159 | Avoid fade windows in/out when opening/closing 160 | 161 | 162 | 163 | 164 | Other 165 | 166 | 167 | 168 | 169 | Rendering backend 170 | 171 | 172 | 173 | 174 | X Render 175 | 176 | 177 | 178 | 179 | GLX (OpenGL) 180 | 181 | 182 | 183 | 184 | About 185 | 186 | 187 | 188 | 189 | About ComptonConf 190 | 191 | 192 | 193 | 194 | ComptonConf - configuration tool for compton 195 | 196 | Copyright (C) 2013 197 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 198 | 199 | 200 | 201 | 202 | -------------------------------------------------------------------------------- /translations/compton-conf_ast.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | 10 | 11 | 12 | 13 | Shadow 14 | 15 | 16 | 17 | 18 | The blur radius for shadows 19 | 20 | 21 | 22 | 23 | The left offset for shadows 24 | 25 | 26 | 27 | 28 | The top offset for shadows 29 | 30 | 31 | 32 | 33 | The translucency for shadows 34 | 35 | 36 | 37 | 38 | Color of shadow 39 | 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | 75 | 76 | 77 | 78 | Opacity 79 | 80 | 81 | 82 | 83 | The opacity for menus 84 | 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | 90 | 91 | 92 | 93 | Default opacity for active windows 94 | 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | 106 | 107 | 108 | 109 | Dim inactive windows 110 | 111 | 112 | 113 | 114 | Do not let dimness adjust based on window opacity 115 | 116 | 117 | 118 | 119 | Blur background of transparent windows 120 | 121 | 122 | 123 | 124 | Blur background of opaque windows with transparent frames as well 125 | 126 | 127 | 128 | 129 | Do not let blur radius adjust based on window opacity 130 | 131 | 132 | 133 | 134 | Fade 135 | 136 | 137 | 138 | 139 | Fade windows during opacity changes 140 | 141 | 142 | 143 | 144 | The time between steps in a fade in milliseconds 145 | 146 | 147 | 148 | 149 | Opacity change between steps while fading in 150 | 151 | 152 | 153 | 154 | Opacity change between steps while fading out 155 | 156 | 157 | 158 | 159 | Avoid fade windows in/out when opening/closing 160 | 161 | 162 | 163 | 164 | Other 165 | 166 | 167 | 168 | 169 | Rendering backend 170 | 171 | 172 | 173 | 174 | X Render 175 | 176 | 177 | 178 | 179 | GLX (OpenGL) 180 | 181 | 182 | 183 | 184 | About 185 | 186 | 187 | 188 | 189 | About ComptonConf 190 | 191 | 192 | 193 | 194 | ComptonConf - configuration tool for compton 195 | 196 | Copyright (C) 2013 197 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 198 | 199 | 200 | 201 | 202 | -------------------------------------------------------------------------------- /translations/compton-conf_be.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | Налады эфектаў акон 10 | 11 | 12 | 13 | Shadow 14 | Цень 15 | 16 | 17 | 18 | The blur radius for shadows 19 | Радыус размыцця ценю 20 | 21 | 22 | 23 | The left offset for shadows 24 | Зрух ценю ўлева 25 | 26 | 27 | 28 | The top offset for shadows 29 | Зрух ценю ўверх 30 | 31 | 32 | 33 | The translucency for shadows 34 | Паўпразрыстасць ценю 35 | 36 | 37 | 38 | Color of shadow 39 | Колер ценю 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | Выправіць пэўныя супярэчнасці акон ARGB 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | Абнуліць частку маскі ценю за акном 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | Не адмалёўваць цень на вокнах перацягвання 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | Пазбягаць адмалёўкі ценяў на вокнах докаў/панэляў 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | Уключыць цені на вокнах на баку кліента 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | Пазбягаць адмалёўкі ценяў на ўсіх вокнах, што выкарыстоўваюць X Shape 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | Абразаць цені разгорнутых акон з іншых дысплеяў 75 | 76 | 77 | 78 | Opacity 79 | Непразрыстасць 80 | 81 | 82 | 83 | The opacity for menus 84 | Непразрыстасць меню 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | Прадвызначаная непразрыстасць неактыўных акон 90 | 91 | 92 | 93 | Default opacity for active windows 94 | Прадвызначаная непразрыстасць актыўных акон 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | Непразрыстасць загалоўка і межаў 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | Рухавік XRender: памер кроку для празрыстых выяў 106 | (Павелічэнне можа паменшыць выкарыстанне рэсурсаў X-серверам) 107 | 108 | 109 | 110 | Dim inactive windows 111 | Зацяняць неактыўныя вокны 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | Забараніць непразрыстасці ўплываць на зацяненне 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | Размываць фон празрыстага акна 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | Размываць фон непразрыстых акон з празрыстаю рамкаю 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | Забараніць непразрыстасці акон уплываць на радыус размыцця 132 | 133 | 134 | 135 | Fade 136 | Згасанне 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | Выкарыстоўваць згасанне пры змене празрыстасці акна 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | Прамежак часу паміж крокамі змены празрыстасці (мс) 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | Крок змены празрыстасці падчас паступовага з’яўлення акна 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | Крок змены празрыстасці падчас паступовага знікання акна 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | Не выкарыстоўваць паступовае з’яўленне (зніканне) акна падчас адкрыцця (закрыцця) 162 | 163 | 164 | 165 | Other 166 | Іншае 167 | 168 | 169 | 170 | Rendering backend 171 | Рухавік адмалёўкі 172 | 173 | 174 | 175 | X Render 176 | X Render 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | GLX (OpenGL) 182 | 183 | 184 | 185 | About 186 | Пра праграму 187 | 188 | 189 | 190 | About ComptonConf 191 | Пра ComptonConf 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | ComptonConf - інструмент для наладкі Compton 200 | 201 | Copyright (C) 2013 202 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /translations/compton-conf_ca.desktop: -------------------------------------------------------------------------------- 1 | Name[ca]=Efectes de les finestres 2 | GenericName[ca]=Configuració de Compton 3 | Comment[ca]=Configureu els efectes de les finestres de Compton 4 | -------------------------------------------------------------------------------- /translations/compton-conf_cs.desktop: -------------------------------------------------------------------------------- 1 | Name[cs]=Efekty oken 2 | GenericName[cs]=Nastavení kompozitoru Compton 3 | Comment[cs]=Nastavit Compton efekty oken 4 | -------------------------------------------------------------------------------- /translations/compton-conf_cy.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | 10 | 11 | 12 | 13 | Shadow 14 | 15 | 16 | 17 | 18 | The blur radius for shadows 19 | 20 | 21 | 22 | 23 | The left offset for shadows 24 | 25 | 26 | 27 | 28 | The top offset for shadows 29 | 30 | 31 | 32 | 33 | The translucency for shadows 34 | 35 | 36 | 37 | 38 | Color of shadow 39 | 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | 75 | 76 | 77 | 78 | Opacity 79 | 80 | 81 | 82 | 83 | The opacity for menus 84 | 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | 90 | 91 | 92 | 93 | Default opacity for active windows 94 | 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | 106 | 107 | 108 | 109 | Dim inactive windows 110 | 111 | 112 | 113 | 114 | Do not let dimness adjust based on window opacity 115 | 116 | 117 | 118 | 119 | Blur background of transparent windows 120 | 121 | 122 | 123 | 124 | Blur background of opaque windows with transparent frames as well 125 | 126 | 127 | 128 | 129 | Do not let blur radius adjust based on window opacity 130 | 131 | 132 | 133 | 134 | Fade 135 | 136 | 137 | 138 | 139 | Fade windows during opacity changes 140 | 141 | 142 | 143 | 144 | The time between steps in a fade in milliseconds 145 | 146 | 147 | 148 | 149 | Opacity change between steps while fading in 150 | 151 | 152 | 153 | 154 | Opacity change between steps while fading out 155 | 156 | 157 | 158 | 159 | Avoid fade windows in/out when opening/closing 160 | 161 | 162 | 163 | 164 | Other 165 | 166 | 167 | 168 | 169 | Rendering backend 170 | 171 | 172 | 173 | 174 | X Render 175 | 176 | 177 | 178 | 179 | GLX (OpenGL) 180 | 181 | 182 | 183 | 184 | About 185 | 186 | 187 | 188 | 189 | About ComptonConf 190 | 191 | 192 | 193 | 194 | ComptonConf - configuration tool for compton 195 | 196 | Copyright (C) 2013 197 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 198 | 199 | 200 | 201 | 202 | -------------------------------------------------------------------------------- /translations/compton-conf_da.desktop: -------------------------------------------------------------------------------- 1 | Name[da]=Vindueseffekter 2 | GenericName[da]=Compton-konfiguration 3 | Comment[da]=Konfigurér Compton's vindueseffekter 4 | -------------------------------------------------------------------------------- /translations/compton-conf_da.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | Indstillinger for specielle effekter 10 | 11 | 12 | 13 | Shadow 14 | Skygge 15 | 16 | 17 | 18 | The blur radius for shadows 19 | Sløringsradiusen af skygger 20 | 21 | 22 | 23 | The left offset for shadows 24 | Den venstre forskydning af skygger 25 | 26 | 27 | 28 | The top offset for shadows 29 | Den øverste forskydning af skygger 30 | 31 | 32 | 33 | The translucency for shadows 34 | Gennemsigtigheden af skygger 35 | 36 | 37 | 38 | Color of shadow 39 | Farve af skygge 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | Ret nogle særheder med ARGB-vinduer 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | Nulificér delen af skyggens maske bag vinduet 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | Tegn ikke skygger på DND-vinduer 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | Undlad at tegne skygger på dok-/panel-vinduer 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | Aktivér klient-side-skygger på vinduer 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | Undlad at tegne skygge på alle formede vinduet 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | Beskær skygger på maksimerede vinduer fra udvidede skærme 75 | 76 | 77 | 78 | Opacity 79 | Opacitet 80 | 81 | 82 | 83 | The opacity for menus 84 | Opacitet for menuer 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | Standardopacitet for inaktive vinduer 90 | 91 | 92 | 93 | Default opacity for active windows 94 | Standardopacitet for aktive vinduer 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | Opacitet af vinduers titellinjer og kanter 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | XRender-backend: trinstørrelse til alfa-billeder 106 | (forøgelse kan resultere i mindre forbrug af X-ressourcer) 107 | 108 | 109 | 110 | Dim inactive windows 111 | Ton inaktive vinduer 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | Tillad ikke justering af toning baseret på vinduets opacitet 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | Slør baggrunden af transparente vinduer 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | Slør også baggrunden af synlige vinduer med transparente rammer 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | Tillad ikke justering af sløringsradius baseret på vinduets opacitet 132 | 133 | 134 | 135 | Fade 136 | Ton 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | Ton vinduer under ændring af opacitet 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | Tiden mellem trin i en toning, i millisekunder 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | Ændring af opacitet mellem trin under indtoning 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | Ændring af opacitet mellem trin under udtoning 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | Undlad indtoning/udtoning af vinduer ved åbning/lukning 162 | 163 | 164 | 165 | Other 166 | Anden 167 | 168 | 169 | 170 | Rendering backend 171 | Renderingsbackend 172 | 173 | 174 | 175 | X Render 176 | X-render 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | GLX (OpenGL) 182 | 183 | 184 | 185 | About 186 | Om 187 | 188 | 189 | 190 | About ComptonConf 191 | Om ComptonConf 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | ComptonConf - konfigurationsværktøj til compton 200 | 201 | Ophavsret (C) 2013 202 | Forfatter: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /translations/compton-conf_de.desktop: -------------------------------------------------------------------------------- 1 | Name[de]=Fenstereffekte 2 | GenericName[de]=Compton Konfiguration 3 | Comment[de]=Konfiguriere Compton-Fenstereffekte 4 | -------------------------------------------------------------------------------- /translations/compton-conf_de.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | Spezialeffekt-Einstellungen 10 | 11 | 12 | 13 | Shadow 14 | Schatten 15 | 16 | 17 | 18 | The blur radius for shadows 19 | Unschärferadius für Schatten 20 | 21 | 22 | 23 | The left offset for shadows 24 | Linker Schattenversatz 25 | 26 | 27 | 28 | The top offset for shadows 29 | Oberer Schattenversatz 30 | 31 | 32 | 33 | The translucency for shadows 34 | Schattentransparenz 35 | 36 | 37 | 38 | Color of shadow 39 | Schattenfarbe 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | Korrekturen zu Besonderheiten von ARGB Fenstern 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | Schattenmaske hinter Fenstern abschalten 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | Keine Schatten bei Drag&Drop zeichnen 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | Keine Schatten an Dock/Panel-Fenstern zeichnen 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | Aktiviere clientseitige Fensterschatten 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | Keine Schatten an allen geformten Fenstern 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | Entferne Schatten maximierter Fenster von erweiterten Displays 75 | 76 | 77 | 78 | Opacity 79 | Deckkraft 80 | 81 | 82 | 83 | The opacity for menus 84 | Deckkraft von Menüs 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | Vorgabedeckkraft von inaktiven Fenstern 90 | 91 | 92 | 93 | Default opacity for active windows 94 | Vorgabedeckkraft von aktiven Fenstern 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | Deckkraft von Fenstertiteln und Rändern 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | XRender-Backend: Schrittweite für Bilder mit Transparenz 106 | (höhere Werte können zu ressourcenschonender X-Nutzung führen) 107 | 108 | 109 | 110 | Dim inactive windows 111 | Inaktive Fenster abdunkeln 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | Abdunklung ist von der Deckkraft der Fenster unabhängig 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | Hintergrund von transparenten Fenstern verwischen 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | Hintergrund von undurchsichtigen Fenstern mit transparenten Rahmen verwischen 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | Verwischungsradius ist von Deckkraft der Fenster unabhängig 132 | 133 | 134 | 135 | Fade 136 | Ausblenden 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | Blende Fenster bei Deckkraft-Änderungen aus 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | Zeit zwischen den Schritten eines Ein-/Ausblendvorgangs in ms 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | Deckkraftänderung pro Schritt beim Einblenden 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | Deckkraftänderung pro Schritt beim Ausblenden 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | Ein-/Ausblenden beim Öffnen/Schließen von Fenstern vermeiden 162 | 163 | 164 | 165 | Other 166 | Sonstiges 167 | 168 | 169 | 170 | Rendering backend 171 | Rendering-Backend 172 | 173 | 174 | 175 | X Render 176 | X-Render 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | GLX (OpenGL) 182 | 183 | 184 | 185 | About 186 | Über 187 | 188 | 189 | 190 | About ComptonConf 191 | Über ComptonConf 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | ComptonConf - Konfigurationswerkzeug für compton 200 | 201 | Urheberrecht (C) 2013 202 | Autor: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /translations/compton-conf_en_GB.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | 10 | 11 | 12 | 13 | Shadow 14 | 15 | 16 | 17 | 18 | The blur radius for shadows 19 | 20 | 21 | 22 | 23 | The left offset for shadows 24 | 25 | 26 | 27 | 28 | The top offset for shadows 29 | 30 | 31 | 32 | 33 | The translucency for shadows 34 | 35 | 36 | 37 | 38 | Color of shadow 39 | Colour of shadow 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | Crop shadows of maximised windows from extended displays 75 | 76 | 77 | 78 | Opacity 79 | 80 | 81 | 82 | 83 | The opacity for menus 84 | 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | 90 | 91 | 92 | 93 | Default opacity for active windows 94 | 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | Opacity of window title bars and borders 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | XRender back-end: Step size for alpha pictures 106 | (Increasing it may result in less X resource usage) 107 | 108 | 109 | 110 | Dim inactive windows 111 | 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | 132 | 133 | 134 | 135 | Fade 136 | 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | 162 | 163 | 164 | 165 | Other 166 | 167 | 168 | 169 | 170 | Rendering backend 171 | Rendering back-end 172 | 173 | 174 | 175 | X Render 176 | 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | 182 | 183 | 184 | 185 | About 186 | 187 | 188 | 189 | 190 | About ComptonConf 191 | 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | 200 | 201 | 202 | 203 | -------------------------------------------------------------------------------- /translations/compton-conf_es.desktop: -------------------------------------------------------------------------------- 1 | Name[es]=Efectos de ventana 2 | GenericName[es]=Configuración de Compton 3 | Comment[es]=Configura los efectos de ventana de Compton 4 | -------------------------------------------------------------------------------- /translations/compton-conf_eu.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | Eragin Berezien Ezarpenak 10 | 11 | 12 | 13 | Shadow 14 | Itzala 15 | 16 | 17 | 18 | The blur radius for shadows 19 | 20 | 21 | 22 | 23 | The left offset for shadows 24 | 25 | 26 | 27 | 28 | The top offset for shadows 29 | 30 | 31 | 32 | 33 | The translucency for shadows 34 | 35 | 36 | 37 | 38 | Color of shadow 39 | 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | 75 | 76 | 77 | 78 | Opacity 79 | 80 | 81 | 82 | 83 | The opacity for menus 84 | 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | 90 | 91 | 92 | 93 | Default opacity for active windows 94 | 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | 106 | 107 | 108 | 109 | Dim inactive windows 110 | 111 | 112 | 113 | 114 | Do not let dimness adjust based on window opacity 115 | 116 | 117 | 118 | 119 | Blur background of transparent windows 120 | 121 | 122 | 123 | 124 | Blur background of opaque windows with transparent frames as well 125 | 126 | 127 | 128 | 129 | Do not let blur radius adjust based on window opacity 130 | 131 | 132 | 133 | 134 | Fade 135 | 136 | 137 | 138 | 139 | Fade windows during opacity changes 140 | 141 | 142 | 143 | 144 | The time between steps in a fade in milliseconds 145 | 146 | 147 | 148 | 149 | Opacity change between steps while fading in 150 | 151 | 152 | 153 | 154 | Opacity change between steps while fading out 155 | 156 | 157 | 158 | 159 | Avoid fade windows in/out when opening/closing 160 | 161 | 162 | 163 | 164 | Other 165 | 166 | 167 | 168 | 169 | Rendering backend 170 | 171 | 172 | 173 | 174 | X Render 175 | 176 | 177 | 178 | 179 | GLX (OpenGL) 180 | 181 | 182 | 183 | 184 | About 185 | 186 | 187 | 188 | 189 | About ComptonConf 190 | 191 | 192 | 193 | 194 | ComptonConf - configuration tool for compton 195 | 196 | Copyright (C) 2013 197 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 198 | 199 | 200 | 201 | 202 | -------------------------------------------------------------------------------- /translations/compton-conf_fr.desktop: -------------------------------------------------------------------------------- 1 | Name[fr]=Effets des fenêtres 2 | GenericName[fr]=Paramétrage de Compton 3 | Comment[fr]=Paramétrage de Compton (effets des fenêtres) 4 | -------------------------------------------------------------------------------- /translations/compton-conf_gl.desktop: -------------------------------------------------------------------------------- 1 | Name[gl]=Efectos da xanela 2 | GenericName[gl]=Configuración do Compton 3 | Comment[gl]=Configura os efectos da xanela do Compton 4 | -------------------------------------------------------------------------------- /translations/compton-conf_he.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | הגדרות אפקטים מיוחדים 10 | 11 | 12 | 13 | Shadow 14 | צל 15 | 16 | 17 | 18 | The blur radius for shadows 19 | רדיוס הטשטוש של הצלליות 20 | 21 | 22 | 23 | The left offset for shadows 24 | ההיסט השמאלי לצלליות 25 | 26 | 27 | 28 | The top offset for shadows 29 | ההיסט העליון לצלליות 30 | 31 | 32 | 33 | The translucency for shadows 34 | שקיפות הצלליות 35 | 36 | 37 | 38 | Color of shadow 39 | צבע הצללית 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | תיקון התנהגות מוזרה בחלונות ARGB 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | לאפס את החלק של מסיכת ההצללה מאחורי החלון 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | לא לצייר צלליות בחלונות במצב לא להפריע 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | להימנע מציור צלליות על חלונות של מעגן/לוח 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | הפעלת צלליות בצד הלקוח על חלונות 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | להימנע מציור צללית על כל החלונות בעלי צורות שונות 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | חיתוך צלליות של חלונות מוגדלים ממסכים חיצוניים 75 | 76 | 77 | 78 | Opacity 79 | אטימות 80 | 81 | 82 | 83 | The opacity for menus 84 | אטימות לתפריטים 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | אטימות כבררת מחדל לחלונות בלתי פעילים 90 | 91 | 92 | 93 | Default opacity for active windows 94 | אטימות בררת מחדל לחלונות פעילים 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | אטימות של שורות כותרת וגבולות של חלונות 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | מנגנון XRender: גודל צעד לשקיפות תמונות 106 | (הגדלת הערך עשויה לצרוך פחות משאבי X) 107 | 108 | 109 | 110 | Dim inactive windows 111 | עמעום חלונות בלתי פעילים 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | לא לאפשר לעמעום להיקבע על בסיס אטימות החלון 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | טשטוש רקע של חלונות שקופים 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | טשטוש גם רקע של חלונות אטומים עם מסגרות שקופות 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | לא לאפשר לרדיוס הטשטוש להיקבע על בסיס אטימות חלון 132 | 133 | 134 | 135 | Fade 136 | דעיכה 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | דעיכת חלונות במהלך שינויי אטימות 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | פרק הזמן שבין שלבים בדעיכה במילישניות 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | שינוי אטימות בין שלבים בעת התחדשות 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | שינוי אטימות בין שלבים בעת דעיכה 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | להימנע מדעיכה/התחדשות בעת פתיחה/סגירה 162 | 163 | 164 | 165 | Other 166 | אחר 167 | 168 | 169 | 170 | Rendering backend 171 | מנגנון עיבוד 172 | 173 | 174 | 175 | X Render 176 | 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | 182 | 183 | 184 | 185 | About 186 | על אודות 187 | 188 | 189 | 190 | About ComptonConf 191 | על אודות ComptonConf 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | ComptonConf - כלי הגדרות ל־compton 200 | 201 | כל הזכויות שמורות (C) 2013 202 | יוצר: Hong Jen Yee (PCMan)‏ <pcman.tw@gmail.com> 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /translations/compton-conf_hi.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | विशेष प्रभाव सेटिंग्स 10 | 11 | 12 | 13 | Shadow 14 | परछाई 15 | 16 | 17 | 18 | The blur radius for shadows 19 | परछाइयों का ब्लर रेडियस 20 | 21 | 22 | 23 | The left offset for shadows 24 | परछाइयों का बायां ओफ़्सेट 25 | 26 | 27 | 28 | The top offset for shadows 29 | परछाइयों का ऊपरी ओफ़्सेट 30 | 31 | 32 | 33 | The translucency for shadows 34 | परछाइयों की पारभासकता 35 | 36 | 37 | 38 | Color of shadow 39 | परछाइयों का रंग 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | ARGB खिड़कियों में विचित्रता ठीक करें 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | परछाई के मास्क के पीछे की परछाई को शुन्य करें 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | DND खिडकियों पे परछाइयों को ड्रा न करें 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | Dock/panel खिड़कियों पर परछाइयों को ड्रा न करें 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | क्लाइंट-साइड परछाइयों को सक्षम करें 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | आकारिक खिड़कियों पर परछाइयां न बनाएं 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | विस्तारित डिस्प्ले की अधिकतम आकार वाली खिड़कियों की परछाइयों को क्रॉप करें 75 | 76 | 77 | 78 | Opacity 79 | अपारदर्शता 80 | 81 | 82 | 83 | The opacity for menus 84 | मेनू की अपारदर्शता 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | निष्क्रिय खिड़की की डिफ़ॉल्ट अपारदर्शता 90 | 91 | 92 | 93 | Default opacity for active windows 94 | सक्रिय खिड़की की डिफ़ॉल्ट अपारदर्शता 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | शीर्षक बार एवं बार्डर की अपारदर्शता 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | XRender बैकएंड: अल्फा पिक्चर की स्टेप साइज 106 | (इसे बढ़ने से X संसाधन उपयोग काम हो सकता है) 107 | 108 | 109 | 110 | Dim inactive windows 111 | निष्क्रिय खिड़कियों को मंद करें 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | खिड़की की पारदर्शिता अनुसार मंदता को एडजस्ट न होने दें 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | पारदर्शी खिड़की के बैकग्राउंड को धुंदला करें 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | पारदर्शी फ्रेम वाली अपारदर्शी खिड़की के बैकग्राउंड को भी धुंदला करें 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | खिड़की की अपारदर्शिता के अनुसार ब्लर रेडियस एडजस्ट न करें 132 | 133 | 134 | 135 | Fade 136 | फेड 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | अपारदर्शिता बदलाव के बीच खिड़कियों को फेड करें 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | फेड प्रक्रिया के स्टेप्स के बीच का समय (मिली सेकंड में ) 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | फेड होने के स्टेप्स के बीच अपारदर्शिता में बदलाव 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | फेड आउट होते समय स्टेप्स के बीच अपारदर्शिता में बदलाव 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | खोलते/बंद करते समय खिड़की को फेड इन/आउट न करें 162 | 163 | 164 | 165 | Other 166 | अन्य 167 | 168 | 169 | 170 | Rendering backend 171 | प्रस्तुति बैकेंड 172 | 173 | 174 | 175 | X Render 176 | X रेंडर 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | जी.एल.एक्स ओपन जी एल [GLX (OpenGL)] 182 | 183 | 184 | 185 | About 186 | के बारे में 187 | 188 | 189 | 190 | About ComptonConf 191 | ComptonConf के बारे में 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | ComptonConf - Compton के लिए विन्यास उपकरण 200 | 201 | कॉपीराइट (C) 2013 202 | रचनाकार: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /translations/compton-conf_hu.desktop: -------------------------------------------------------------------------------- 1 | Name[hu]=Ablakhatások 2 | GenericName[hu]=Compton beállítás 3 | Comment[hu]=Compton-ablakhatások beállítása 4 | -------------------------------------------------------------------------------- /translations/compton-conf_hu.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | Speciális ablakhatások 10 | 11 | 12 | 13 | Shadow 14 | Árnyék 15 | 16 | 17 | 18 | The blur radius for shadows 19 | Elmosási sugár 20 | 21 | 22 | 23 | The left offset for shadows 24 | Bal határ 25 | 26 | 27 | 28 | The top offset for shadows 29 | Felső határ 30 | 31 | 32 | 33 | The translucency for shadows 34 | Áttetszőség 35 | 36 | 37 | 38 | Color of shadow 39 | Árnyék színe 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | ARGB ablakok javítása 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | Ablak mögötti árnyékmaszk lekapcsolása 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | Ablakmozgatásnál nincs árnyék 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | Dokk/Panel árnyéktalan 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | Ablakok kliensoldali árnyékolása 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | Formázott ablakok árnyéktalanok 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | A maximalizált ablakok árnyékának kivágása a kibővített kijelzőkről 75 | 76 | 77 | 78 | Opacity 79 | Áttetszőség 80 | 81 | 82 | 83 | The opacity for menus 84 | Menüáttetszőség 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | Inaktív ablak alap áttetszősége 90 | 91 | 92 | 93 | Default opacity for active windows 94 | Aktív ablak alapértelmezett áttetszősége 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | Ablakfejléc és keret alap áttetszősége 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | XRender Backend: Áttetsző képek fokozatai 106 | (Nagyobb értékek kisebb grafikai terheltséget adnak) 107 | 108 | 109 | 110 | Dim inactive windows 111 | Inaktív ablakok elsötétítése 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | Elsötétítés az ablak áttetszőségétől függetlenül 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | Áttetsző ablakok hátterének elmosása 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | Áttetsző keretű átlátszatlan ablakok háttere is elmosott 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | Ablak áttetszőségétől az elmosási sugár független 132 | 133 | 134 | 135 | Fade 136 | Áttűnés 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | Áttetszőségi változásnál áttűnési hatás 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | Áttűnési sebesség ms 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | Előtűnésnél áttetszőségi változás 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | Eltűnésnél áttetszőségi változás 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | Ablaknyitásnál, zárásnál nincs áttűnés 162 | 163 | 164 | 165 | Other 166 | Egyéb 167 | 168 | 169 | 170 | Rendering backend 171 | Képkészítő API 172 | 173 | 174 | 175 | X Render 176 | X Render 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | GLX (OpenGL) 182 | 183 | 184 | 185 | About 186 | Névjegy 187 | 188 | 189 | 190 | About ComptonConf 191 | A ComptonConf névjegye 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | ComptonConf - Compton beállító eszköz 200 | 201 | Copyright (C) 2013 202 | Szerző: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /translations/compton-conf_id.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | Pengaturan Efek Khusus 10 | 11 | 12 | 13 | Shadow 14 | Bayangan 15 | 16 | 17 | 18 | The blur radius for shadows 19 | Radius blur untuk bayangan 20 | 21 | 22 | 23 | The left offset for shadows 24 | Offset kiri untuk bayangan 25 | 26 | 27 | 28 | The top offset for shadows 29 | Offset atas untuk bayangan 30 | 31 | 32 | 33 | The translucency for shadows 34 | Keburaman untuk bayangan 35 | 36 | 37 | 38 | Color of shadow 39 | Warna bayangan 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | Perbaiki beberapa keanehan dengan jendela ARGB 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | Setel topeng bayangan di balik jendela ke nol 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | Jangan menggambar bayangan di jendela DND 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | Hindari menggambar bayangan di jendela dock/panel 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | Aktifkan bayangan sisi klien di jendela 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | Hindari menggambar bayangan pada semua jendela berbentuk 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | Crop bayangan jendela yang dimaksimalkan dari layar tambahan 75 | 76 | 77 | 78 | Opacity 79 | Opasitas 80 | 81 | 82 | 83 | The opacity for menus 84 | Opasitas untuk menu 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | Opasitas standar jendela yang tidak aktif 90 | 91 | 92 | 93 | Default opacity for active windows 94 | Opasitas standar jendela yang aktif 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | Opasitas dari bilah judul dan border 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | XRender backend: Ukuran langkah untuk gambar alfa 106 | (Meningkatkannya bisa berakibat pada berkurangnya penggunaan sumber daya X) 107 | 108 | 109 | 110 | Dim inactive windows 111 | Redupkan jendela yang tidak aktif 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | Tingkat keredupan tidak tergantung pada opasitas jendela 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | Latar belakang blur di jendela transparan 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | Latar belakang blur di jendela buram dengan bingkai transparan 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | Jangan biarkan radius blur tergantung pada opasitas jendela 132 | 133 | 134 | 135 | Fade 136 | Pudar 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | Pudarkan jendela saat perubahan opasitas 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | Waktu antara langkah memudar dalam milidetik 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | Perubahan opasitas antar langkah saat pudar aktif 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | Perubahan opasitas antar langkah saat pudar tidak aktif 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | Hindari memudar jendela masuk/keluar saat membuka/menutup 162 | 163 | 164 | 165 | Other 166 | Lainnya 167 | 168 | 169 | 170 | Rendering backend 171 | Backend perenderan 172 | 173 | 174 | 175 | X Render 176 | X Render 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | GLX (OpenGL) 182 | 183 | 184 | 185 | About 186 | Tentang 187 | 188 | 189 | 190 | About ComptonConf 191 | Tentang ComptonConf 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | ComptonConf - alat konfigurasi untuk compton 200 | 201 | Hak cipta (C) 2013 202 | Pencipta: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /translations/compton-conf_it.desktop: -------------------------------------------------------------------------------- 1 | Name[it]=Effetti delle finestre 2 | Comment[it]=Configura gli effetti delle finestre di Compton 3 | -------------------------------------------------------------------------------- /translations/compton-conf_ja.desktop: -------------------------------------------------------------------------------- 1 | Name[ja]=Compton ウィンドウ特殊効果 2 | GenericName[ja]=コンポジター(Compton)の設定 3 | Comment[ja]=コンポジター Compton のウィンドウ特殊効果を設定します 4 | -------------------------------------------------------------------------------- /translations/compton-conf_ja.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | 特殊効果の設定 10 | 11 | 12 | 13 | Shadow 14 | 15 | 16 | 17 | 18 | The blur radius for shadows 19 | 影のぼかし半径 20 | 21 | 22 | 23 | The left offset for shadows 24 | 影の左オフセット 25 | 26 | 27 | 28 | The top offset for shadows 29 | 影の上オフセット 30 | 31 | 32 | 33 | The translucency for shadows 34 | 影の透明度 35 | 36 | 37 | 38 | Color of shadow 39 | 影の色 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | ARGB ウィンドウの異常を修正します 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | ウィンドウ背後の影のマスクを 0 にする 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | ドラッグアンドドロップのウィンドウに影を描画しない 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | ドックやパネルの影を描画しない 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | ウィンドウのクライアント側の影を有効にする 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | すべて整形済のウィンドウに影を描画しない 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | 拡張ディスプレイから最大化されたウィンドウの影を切り取る 75 | 76 | 77 | 78 | Opacity 79 | 透明度 80 | 81 | 82 | 83 | The opacity for menus 84 | メニューの透明度 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | 非アクティブウィンドウの透明度 90 | 91 | 92 | 93 | Default opacity for active windows 94 | アクティブウィンドウの透明度 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | タイトルバーと境界の透明度 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | XRender バックエンド: アルファピクチャーのステップサイズ 106 | (増やすと X のリソース使用量が減るでしょう) 107 | 108 | 109 | 110 | Dim inactive windows 111 | 非アクティブウィンドウを暗くする 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | ウィンドウの透明度に合わせた暗さの調節をしない 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | 透明化ウィンドウの背後をぼかす 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | 透明化フレームを伴う不透明ウィンドウの背後をぼかす 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | ウィンドウの透明度に合わせたぼかし半径の調節をしない 132 | 133 | 134 | 135 | Fade 136 | フェード 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | 透明度の変化中にウィンドウをフェードする 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | フェード段階ごとの時間(ミリ秒) 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | フェードイン時の透明化のステップ値 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | フェードアウト時の透明化のステップ値 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | ウィンドウの開閉時にフェードしない 162 | 163 | 164 | 165 | Other 166 | その他 167 | 168 | 169 | 170 | Rendering backend 171 | バックエンドのレンダリング 172 | 173 | 174 | 175 | X Render 176 | X Render 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | GLX (OpenGL) 182 | 183 | 184 | 185 | About 186 | このアプリケーションについて 187 | 188 | 189 | 190 | About ComptonConf 191 | ComptonConf について 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | ComptonConf - Compton の設定ツール 200 | 201 | Copyright (C) 2013 202 | 作者: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /translations/compton-conf_ko.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | 특별효과 설정 10 | 11 | 12 | 13 | Shadow 14 | 그림자 15 | 16 | 17 | 18 | The blur radius for shadows 19 | 그림자 블러 반경 20 | 21 | 22 | 23 | The left offset for shadows 24 | 그림자 왼쪽 거리 25 | 26 | 27 | 28 | The top offset for shadows 29 | 그림자 위쪽 거리 30 | 31 | 32 | 33 | The translucency for shadows 34 | 그림자 가시성 35 | 36 | 37 | 38 | Color of shadow 39 | 그림자 색 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | 이상한 색의 윈도우를 고쳐주세요 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | 영어 창 뒤의 그림자 마스크 부분을 0으로 만듭니다 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | DND에 그리자 표시 하지않음 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | 독 / 패널 창에 그림자를 그리지 마십시오 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | 창에서 클라이언트 쪽 그림자 사용 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | 모든 모양의 창에 그림자를 그리지 마십시오 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | 확장 디스플레이에서 최대화 된 창의 그림자 자르기 75 | 76 | 77 | 78 | Opacity 79 | 불투명 80 | 81 | 82 | 83 | The opacity for menus 84 | 메뉴의 불투명도 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | 비활성 창의 기본 불투명도 90 | 91 | 92 | 93 | Default opacity for active windows 94 | 활성 창의 기본 불투명도 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | 창 제목 표시 줄 및 테두리의 불투명도 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | XRender 백엔드 : 알파 사진의 스텝 크기 (이를 늘리면 X 리소스 사용량이 줄어들 수 있습니다) 106 | 107 | 108 | 109 | Dim inactive windows 110 | 비활성 윈도우 111 | 112 | 113 | 114 | Do not let dimness adjust based on window opacity 115 | 창 불투명도에 따라 밝기를 조정하지 마십시오 116 | 117 | 118 | 119 | Blur background of transparent windows 120 | 투명 창의 배경 흐림 121 | 122 | 123 | 124 | Blur background of opaque windows with transparent frames as well 125 | 투명한 프레임이있는 불투명 한 창의 배경 흐림 126 | 127 | 128 | 129 | Do not let blur radius adjust based on window opacity 130 | 창 불투명도에 따라 흐림 반경을 조정하지 마십시오 131 | 132 | 133 | 134 | Fade 135 | 사라짐 136 | 137 | 138 | 139 | Fade windows during opacity changes 140 | 불투명도 변경시 페이드 윈도우 141 | 142 | 143 | 144 | The time between steps in a fade in milliseconds 145 | 페이드 단계 사이의 시간 (밀리 초) 146 | 147 | 148 | 149 | Opacity change between steps while fading in 150 | 페이딩 인 동안 단계 사이의 불투명도 변경 151 | 152 | 153 | 154 | Opacity change between steps while fading out 155 | 페이드 아웃하는 동안 단계 간 불투명도 변경 156 | 157 | 158 | 159 | Avoid fade windows in/out when opening/closing 160 | 열거 나 닫을 때 창을 페이드 인 / 아웃하지 마십시오 161 | 162 | 163 | 164 | Other 165 | 다른 166 | 167 | 168 | 169 | Rendering backend 170 | 171 | 172 | 173 | 174 | X Render 175 | 176 | 177 | 178 | 179 | GLX (OpenGL) 180 | 181 | 182 | 183 | 184 | About 185 | 186 | 187 | 188 | 189 | About ComptonConf 190 | ComptonConf 정보 191 | 192 | 193 | 194 | ComptonConf - configuration tool for compton 195 | 196 | Copyright (C) 2013 197 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 198 | 199 | 200 | 201 | 202 | -------------------------------------------------------------------------------- /translations/compton-conf_lt.desktop: -------------------------------------------------------------------------------- 1 | Name[lt]=Langų efektai 2 | GenericName[lt]=Compton konfigūravimas 3 | Comment[lt]=Konfigūruoti Compton langų efektus 4 | -------------------------------------------------------------------------------- /translations/compton-conf_lv.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | Speciālo efektu iestatījumi 10 | 11 | 12 | 13 | Shadow 14 | Ēna 15 | 16 | 17 | 18 | The blur radius for shadows 19 | Ēnas izplūduma rādiuss 20 | 21 | 22 | 23 | The left offset for shadows 24 | Ēnas nobīde no kreisās malas 25 | 26 | 27 | 28 | The top offset for shadows 29 | Ēnas nobīde no augšējās malas 30 | 31 | 32 | 33 | The translucency for shadows 34 | Ēnas caurspīdīgums 35 | 36 | 37 | 38 | Color of shadow 39 | Ēnas krāsa 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | Izlabot ARGB logu dīvainību 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | Nodzēst maskas ēnas masku ārpus loga 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | Nezīmēt ēnas uz DND logiem 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | Izvairīties no ēnu zīmēšanas uz paneļa logiem 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | Iespējot ēnas uz lietotāja puses logiem 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | Izvairīties no ēnu zīmēšanas uz mērogotajiem logiem 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | 75 | 76 | 77 | 78 | Opacity 79 | Caurlaidība 80 | 81 | 82 | 83 | The opacity for menus 84 | Izvēļņu caurlaidība 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | Noklusējuma caurlaidība neaktīvajiem logiem 90 | 91 | 92 | 93 | Default opacity for active windows 94 | Noklusējuma caurlaidība aktīvajiem logiem 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | Logu galveņu un rāmju caurlaidība 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | XRender aizmugure: Soļa garums alfa attēliem 106 | (Palielināšana var novest pie mazākas X resursu izmantošanas) 107 | 108 | 109 | 110 | Dim inactive windows 111 | Aptumšot nekatīvos logus 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | Neļaut aptumšojumam pielāgoties pamatojoties uz logu caurlaidību 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | Izpludināt fonu caurspīdīgajiem logiem 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | Izpludināt fonu arī necaurspīdīgajiem logiem ar caurspīdīgajiem rāmjiem 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | Neļaut izplūduma rādiusa pielāgošanos atkarībā no loga caurlaidības 132 | 133 | 134 | 135 | Fade 136 | Izgaisināt 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | Izgaisināt logus caurlaidīguma maiņas laikā 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | Laiks milisekundēs starp izgaisinājuma soļiem 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | Caurlaidīguma maiņa starp izgaisinājuma pazušanas soļiem 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | Caurlaidīguma maiņa starp izgaisinājuma soļiem 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | Izvairīties no logu izgaisināšanas atverot un aizverot 162 | 163 | 164 | 165 | Other 166 | Cits/-i 167 | 168 | 169 | 170 | Rendering backend 171 | 172 | 173 | 174 | 175 | X Render 176 | 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | 182 | 183 | 184 | 185 | About 186 | Par 187 | 188 | 189 | 190 | About ComptonConf 191 | Par ComptonConf 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | ComptonConf - compton konfigurācijas rīks 200 | 201 | Autortiesības (C) 2013 202 | Autors: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /translations/compton-conf_pl.desktop: -------------------------------------------------------------------------------- 1 | Name[pl]=Edytor konfiguracji Comptona 2 | GenericName[pl]=Efekty wizualne 3 | Comment[pl]=Edytor konfiguracji menedżera kompozycji okien Compton 4 | -------------------------------------------------------------------------------- /translations/compton-conf_pl.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | Ustawienia efektów specjalnych 10 | 11 | 12 | 13 | Shadow 14 | Cień 15 | 16 | 17 | 18 | The blur radius for shadows 19 | Promień rozmycia cienia 20 | 21 | 22 | 23 | The left offset for shadows 24 | Przesunięcie cienia w lewo 25 | 26 | 27 | 28 | The top offset for shadows 29 | Przesunięcie cienia w górę 30 | 31 | 32 | 33 | The translucency for shadows 34 | Widoczność cienia 35 | 36 | 37 | 38 | Color of shadow 39 | Kolor cienia 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | Napraw częste problemy z oknami ARGB 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | Wyczyść cienie znajdujące się poza oknem 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | Nie wyświetlaj cienia podczas przemieszczania okien 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | Unikaj wyświetlania cienia przy zadokowanych oknach i panelach 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | Włącz cienie okien od strony klienta 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | Unikaj wyświetlania cienia przy nieprostokątnych oknach 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | Przycinaj cienie zmaksymalizowanych okien z dodatkowych ekranów 75 | 76 | 77 | 78 | Opacity 79 | Widoczność 80 | 81 | 82 | 83 | The opacity for menus 84 | Widoczność menu 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | Domyślna widoczność nieaktywnych okien 90 | 91 | 92 | 93 | Default opacity for active windows 94 | Domyślna widoczność aktywnych okien 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | Widoczność obramowania okien 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | Back-end XRender: rozmiar kroku dla zasobów przezroczystych 106 | (Jego zwiększenie może skutkować mniejszym użyciem zasobów X) 107 | 108 | 109 | 110 | Dim inactive windows 111 | Przyciemniaj nieaktywne okna 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | Nie pozwalaj dostosować przyciemnienia na podstawie widoczności okna 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | Rozmywaj tło przezroczystych okien 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | Rozmywaj też tło widocznych okien z przezroczystymi ramkami 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | Nie pozwól, aby promień rozmycia był zależny od widoczności okien 132 | 133 | 134 | 135 | Fade 136 | Przenikanie 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | Przenikaj okna w trakcie zmiany widoczności 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | Czas w milisekundach pomiędzy krokami w trakcie przenikania 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | Zmiana widoczności pojawiającego się okna pomiędzy krokami 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | Zmiana widoczności zanikającego okna pomiędzy krokami 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | Unikaj przenikania okien podczas otwierania i zamykania 162 | 163 | 164 | 165 | Other 166 | Inne 167 | 168 | 169 | 170 | Rendering backend 171 | Back-end renderowania 172 | 173 | 174 | 175 | X Render 176 | X Render 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | GLX (OpenGL) 182 | 183 | 184 | 185 | About 186 | O programie 187 | 188 | 189 | 190 | About ComptonConf 191 | O ComptonConf 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | ComptonConf - narzędzie konfiguracyjne dla Comptona 200 | 201 | Prawa autorskie (C) 2013 202 | Autor: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /translations/compton-conf_pt.desktop: -------------------------------------------------------------------------------- 1 | Name[pt]=Efeitos de janelas 2 | GenericName[pt]=Configuração do Compton 3 | Comment[pt]=Configurar os efeitos de janelas 4 | -------------------------------------------------------------------------------- /translations/compton-conf_pt_PT.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | 10 | 11 | 12 | 13 | Shadow 14 | 15 | 16 | 17 | 18 | The blur radius for shadows 19 | 20 | 21 | 22 | 23 | The left offset for shadows 24 | 25 | 26 | 27 | 28 | The top offset for shadows 29 | 30 | 31 | 32 | 33 | The translucency for shadows 34 | 35 | 36 | 37 | 38 | Color of shadow 39 | 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | 75 | 76 | 77 | 78 | Opacity 79 | 80 | 81 | 82 | 83 | The opacity for menus 84 | 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | 90 | 91 | 92 | 93 | Default opacity for active windows 94 | 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | 106 | 107 | 108 | 109 | Dim inactive windows 110 | 111 | 112 | 113 | 114 | Do not let dimness adjust based on window opacity 115 | 116 | 117 | 118 | 119 | Blur background of transparent windows 120 | 121 | 122 | 123 | 124 | Blur background of opaque windows with transparent frames as well 125 | 126 | 127 | 128 | 129 | Do not let blur radius adjust based on window opacity 130 | 131 | 132 | 133 | 134 | Fade 135 | 136 | 137 | 138 | 139 | Fade windows during opacity changes 140 | 141 | 142 | 143 | 144 | The time between steps in a fade in milliseconds 145 | 146 | 147 | 148 | 149 | Opacity change between steps while fading in 150 | 151 | 152 | 153 | 154 | Opacity change between steps while fading out 155 | 156 | 157 | 158 | 159 | Avoid fade windows in/out when opening/closing 160 | 161 | 162 | 163 | 164 | Other 165 | 166 | 167 | 168 | 169 | Rendering backend 170 | 171 | 172 | 173 | 174 | X Render 175 | 176 | 177 | 178 | 179 | GLX (OpenGL) 180 | 181 | 182 | 183 | 184 | About 185 | 186 | 187 | 188 | 189 | About ComptonConf 190 | 191 | 192 | 193 | 194 | ComptonConf - configuration tool for compton 195 | 196 | Copyright (C) 2013 197 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 198 | 199 | 200 | 201 | 202 | -------------------------------------------------------------------------------- /translations/compton-conf_ru.desktop: -------------------------------------------------------------------------------- 1 | Name[ru]=Эффекты окна 2 | GenericName[ru]=Настройка Compton 3 | Comment[ru]=Настроить эффекты окна Compton 4 | -------------------------------------------------------------------------------- /translations/compton-conf_tr.desktop: -------------------------------------------------------------------------------- 1 | Name[tr]=Pencere Etkileri 2 | GenericName[tr]=Compton Yapılandırması 3 | Comment[tr]=Compton pencere etkilerini yapılandırma 4 | -------------------------------------------------------------------------------- /translations/compton-conf_tr.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | Özel Efekt Ayarları 10 | 11 | 12 | 13 | Shadow 14 | Gölge 15 | 16 | 17 | 18 | The blur radius for shadows 19 | Gölgeler için bulanıklık yarı çapı 20 | 21 | 22 | 23 | The left offset for shadows 24 | Gölgeler için sol uzantı 25 | 26 | 27 | 28 | The top offset for shadows 29 | Gölgeler için yukarı uzantı 30 | 31 | 32 | 33 | The translucency for shadows 34 | Gölgeler için yarı saydamlık 35 | 36 | 37 | 38 | Color of shadow 39 | Gölge rengi 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | ARGB pencereleri ile bazı gariplikleri düzeltin 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | Pencere arkası gölge maskelerini sıfırla 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | DND pencerelerinde gölge çizme 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | Rıhtım/panel pencerelerinde gölge çizmekten kaçının 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | Pencerelerdeki istemci tarafı gölgeleri etkinleştir 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | Tüm şekilli pencerelerde gölge çizmekten kaçının 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | Genişletilmiş pencerelerden büyütülmüş pencerelerin gölgelerini kes 75 | 76 | 77 | 78 | Opacity 79 | Koyuluk 80 | 81 | 82 | 83 | The opacity for menus 84 | Menüler için koyuluk 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | Etkin olmayan pencere için koyuluk 90 | 91 | 92 | 93 | Default opacity for active windows 94 | Etkin olan pencere için varsayılan koyuluk 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | Pencere başlık çubuğu ve kenarlarının koyuluğu 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | XRender arka uç: Alfa resimleri için adım boyutu 106 | (Arttırmak X kaynak kullanımını azaltabilir) 107 | 108 | 109 | 110 | Dim inactive windows 111 | Aktif olmayan pencereleri karart 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | Gölgeliğin pencere koyuluguna göre ayarlanmasına izin vermeyin 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | Şeffaf pencerelerin arka planını bulanıklaştır 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | Şeffaf çerçeveli mat pencerelerin arka planını bulanıklaştır 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | Bulanıklık yarıçapının pencere matlığına göre ayarlanmasına izin verme 132 | 133 | 134 | 135 | Fade 136 | Solma 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | Koyuluk değişiklikleri boyunca pencereleri soldur 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | Doldurmadan adımlar arasındaki milisaniye süresi 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | Solarken adımlar arasındaki matlık değişimi 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | Solma adımları arasındaki matlık değişimi 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | Açma/kapama esnasında pencerelerin solmasını önle 162 | 163 | 164 | 165 | Other 166 | Diğer 167 | 168 | 169 | 170 | Rendering backend 171 | Arka uç oluşturma 172 | 173 | 174 | 175 | X Render 176 | X Sunucu 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | GLX (OpenGL) 182 | 183 | 184 | 185 | About 186 | Hakkında 187 | 188 | 189 | 190 | About ComptonConf 191 | ComptonConf Hakkında 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | ComptonConf - compton için yapılandırma aracı 200 | 201 | Telif Hakkı (C) 2013 202 | Yazar: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /translations/compton-conf_uk.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | Налаштування спецефектів 10 | 11 | 12 | 13 | Shadow 14 | Тінь 15 | 16 | 17 | 18 | The blur radius for shadows 19 | Радіус розмиття тіней 20 | 21 | 22 | 23 | The left offset for shadows 24 | Лівий відступ для тіней 25 | 26 | 27 | 28 | The top offset for shadows 29 | Верхній відступ для тіней 30 | 31 | 32 | 33 | The translucency for shadows 34 | Рівень прозорості для тіней 35 | 36 | 37 | 38 | Color of shadow 39 | Колір тіні 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | Правка проблем з вікнами ARGB 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | Обнулити маску тіні за вікном 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | Не малювати тіні у вікнах DND 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | Не малювати тіні на вікнах док/панелі 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | Увімкнути тіні вікон на стороні клієнта 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | Не малювати тіні на всіх фігурних вікнах 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | Сховати тіні максимізованих вікон на додаткових екранах 75 | 76 | 77 | 78 | Opacity 79 | Непрозорість 80 | 81 | 82 | 83 | The opacity for menus 84 | Непрозорість меню 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | Типова непрозорість неактивних вікон 90 | 91 | 92 | 93 | Default opacity for active windows 94 | Типова непрозорість активних вікон 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | Непрозорість панелі заголовку вікон і меж 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | XRender backend: Розмір кроку для альфа-малюнків (Збільшення цього може приводити до меншого споживання ресурсів X) 106 | 107 | 108 | 109 | Dim inactive windows 110 | Матовість неактивних вікон 111 | 112 | 113 | 114 | Do not let dimness adjust based on window opacity 115 | Не давати підлаштовувати матовість на основі непрозорості вікна 116 | 117 | 118 | 119 | Blur background of transparent windows 120 | Розмиття тла прозорих вікон 121 | 122 | 123 | 124 | Blur background of opaque windows with transparent frames as well 125 | Розмиття тла непрозорих вікон разом з прозорими рамками 126 | 127 | 128 | 129 | Do not let blur radius adjust based on window opacity 130 | Не налаштовувати радіус розмиття на основі непрозорості вікна 131 | 132 | 133 | 134 | Fade 135 | Згортання 136 | 137 | 138 | 139 | Fade windows during opacity changes 140 | Згортати вікна під час зміни непрозорості 141 | 142 | 143 | 144 | The time between steps in a fade in milliseconds 145 | Час між кроками згортання в мілісекундах 146 | 147 | 148 | 149 | Opacity change between steps while fading in 150 | Зміна непрозорості між кроками під час згортання 151 | 152 | 153 | 154 | Opacity change between steps while fading out 155 | Зміна непрозорості між кроками під час розгортання 156 | 157 | 158 | 159 | Avoid fade windows in/out when opening/closing 160 | Уникати ефекту плавного затухання/появи вікон при відкритті/закритті 161 | 162 | 163 | 164 | Other 165 | Інше 166 | 167 | 168 | 169 | Rendering backend 170 | Настройка рендерингу 171 | 172 | 173 | 174 | X Render 175 | X Render 176 | 177 | 178 | 179 | GLX (OpenGL) 180 | GLX (OpenGL) 181 | 182 | 183 | 184 | About 185 | Про 186 | 187 | 188 | 189 | About ComptonConf 190 | Про ComptonConf 191 | 192 | 193 | 194 | ComptonConf - configuration tool for compton 195 | 196 | Copyright (C) 2013 197 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 198 | ComptonConf - знаряддя налаштування для compton 199 | 200 | Всі права застережено (C) 2013 201 | Автор: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 202 | 203 | 204 | 205 | -------------------------------------------------------------------------------- /translations/compton-conf_vi.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | Cài đặt hiệu ứng đặc biệt 10 | 11 | 12 | 13 | Shadow 14 | Bóng 15 | 16 | 17 | 18 | The blur radius for shadows 19 | Độ làm mờ bóng 20 | 21 | 22 | 23 | The left offset for shadows 24 | Phần bù bên trái cho bóng 25 | 26 | 27 | 28 | The top offset for shadows 29 | Phần bù bên trên cho bóng 30 | 31 | 32 | 33 | The translucency for shadows 34 | Độ trong cho bóng 35 | 36 | 37 | 38 | Color of shadow 39 | Màu bóng 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | Sửa một số vấn đề với cửa sổ ARGB 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | Không vẽ bóng cho cửa sổ DND 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | Không vẽ bóng cho cửa sổ của thanh điều khiển 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | 75 | 76 | 77 | 78 | Opacity 79 | Độ mờ 80 | 81 | 82 | 83 | The opacity for menus 84 | Độ mờ cho thực đơn 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | 90 | 91 | 92 | 93 | Default opacity for active windows 94 | 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | 106 | 107 | 108 | 109 | Dim inactive windows 110 | 111 | 112 | 113 | 114 | Do not let dimness adjust based on window opacity 115 | 116 | 117 | 118 | 119 | Blur background of transparent windows 120 | 121 | 122 | 123 | 124 | Blur background of opaque windows with transparent frames as well 125 | 126 | 127 | 128 | 129 | Do not let blur radius adjust based on window opacity 130 | 131 | 132 | 133 | 134 | Fade 135 | 136 | 137 | 138 | 139 | Fade windows during opacity changes 140 | 141 | 142 | 143 | 144 | The time between steps in a fade in milliseconds 145 | 146 | 147 | 148 | 149 | Opacity change between steps while fading in 150 | 151 | 152 | 153 | 154 | Opacity change between steps while fading out 155 | 156 | 157 | 158 | 159 | Avoid fade windows in/out when opening/closing 160 | 161 | 162 | 163 | 164 | Other 165 | 166 | 167 | 168 | 169 | Rendering backend 170 | 171 | 172 | 173 | 174 | X Render 175 | 176 | 177 | 178 | 179 | GLX (OpenGL) 180 | 181 | 182 | 183 | 184 | About 185 | 186 | 187 | 188 | 189 | About ComptonConf 190 | 191 | 192 | 193 | 194 | ComptonConf - configuration tool for compton 195 | 196 | Copyright (C) 2013 197 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 198 | 199 | 200 | 201 | 202 | -------------------------------------------------------------------------------- /translations/compton-conf_zh_CN.desktop: -------------------------------------------------------------------------------- 1 | Name[zh_CN]=窗口特效 2 | GenericName[zh_CN]=Compton 配置 3 | Comment[zh_CN]=配置 Compton 窗口特效 4 | -------------------------------------------------------------------------------- /translations/compton-conf_zh_CN.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MainDialog 6 | 7 | 8 | Special Effect Settings 9 | 特效设置 10 | 11 | 12 | 13 | Shadow 14 | 阴影 15 | 16 | 17 | 18 | The blur radius for shadows 19 | 阴影模糊半径 20 | 21 | 22 | 23 | The left offset for shadows 24 | 阴影左部偏移 25 | 26 | 27 | 28 | The top offset for shadows 29 | 阴影顶部偏移 30 | 31 | 32 | 33 | The translucency for shadows 34 | 阴影透明度 35 | 36 | 37 | 38 | Color of shadow 39 | 阴影颜色 40 | 41 | 42 | 43 | Fix some weirdness with ARGB windows 44 | 修复 ARGB 窗口异常 45 | 46 | 47 | 48 | Zero the part of the shadow's mask behind the window 49 | 归零窗口背后的阴影遮盖层 50 | 51 | 52 | 53 | Don't draw shadows on DND windows 54 | 不在 DND 窗口上绘制阴影 55 | 56 | 57 | 58 | Avoid drawing shadows on dock/panel windows 59 | 避免在 Dock 或面板窗口上绘制阴影 60 | 61 | 62 | 63 | Enable client-side shadows on windows 64 | 开启窗口阴影效果 65 | 66 | 67 | 68 | Avoid drawing shadow on all shaped windows 69 | 避免在所有已成形的窗口上绘制阴影 70 | 71 | 72 | 73 | Crop shadows of maximized windows from extended displays 74 | 对扩展显示器中的最大化窗口裁剪阴影 75 | 76 | 77 | 78 | Opacity 79 | 不透明度 80 | 81 | 82 | 83 | The opacity for menus 84 | 菜单不透明度 85 | 86 | 87 | 88 | Default opacity of inactive windows 89 | 不活动窗口默认透明度 90 | 91 | 92 | 93 | Default opacity for active windows 94 | 活动窗口默认透明度 95 | 96 | 97 | 98 | Opacity of window titlebars and borders 99 | 窗口标题栏与边框不透明度 100 | 101 | 102 | 103 | XRender backend: Step size for alpha pictures 104 | (Increasing it may result in less X resource usage) 105 | XRender 后端: 透明图像的幅度值 106 | (增加此值可能导致 X 资源用量变少) 107 | 108 | 109 | 110 | Dim inactive windows 111 | 淡化不活动窗口 112 | 113 | 114 | 115 | Do not let dimness adjust based on window opacity 116 | 不使淡化度基于窗口不透明度调整 117 | 118 | 119 | 120 | Blur background of transparent windows 121 | 模糊化透明窗口背景 122 | 123 | 124 | 125 | Blur background of opaque windows with transparent frames as well 126 | 同时模糊化带透明框架的不透明窗口的背景 127 | 128 | 129 | 130 | Do not let blur radius adjust based on window opacity 131 | 不根据窗口不透明度调整模糊半径 132 | 133 | 134 | 135 | Fade 136 | 淡入淡出 137 | 138 | 139 | 140 | Fade windows during opacity changes 141 | 在不透明度改变时淡入淡出窗口 142 | 143 | 144 | 145 | The time between steps in a fade in milliseconds 146 | 一次淡入淡出步骤间的时间(毫秒) 147 | 148 | 149 | 150 | Opacity change between steps while fading in 151 | 淡入步骤间改变不透明度 152 | 153 | 154 | 155 | Opacity change between steps while fading out 156 | 淡出步骤间改变不透明度 157 | 158 | 159 | 160 | Avoid fade windows in/out when opening/closing 161 | 避免在打开或关闭窗口时淡入淡出 162 | 163 | 164 | 165 | Other 166 | 其它 167 | 168 | 169 | 170 | Rendering backend 171 | 渲染后端 172 | 173 | 174 | 175 | X Render 176 | 177 | 178 | 179 | 180 | GLX (OpenGL) 181 | 182 | 183 | 184 | 185 | About 186 | 关于 187 | 188 | 189 | 190 | About ComptonConf 191 | 关于 ComptonConf 192 | 193 | 194 | 195 | ComptonConf - configuration tool for compton 196 | 197 | Copyright (C) 2013 198 | Author: Hong Jen Yee (PCMan) <pcman.tw@gmail.com> 199 | ComptonConf - compton 的配置工具 200 | 201 | 版权所有 (C) 2013 202 | 作者: 洪任諭 (PCMan) <pcman.tw@gmail.com> 203 | 204 | 205 | 206 | -------------------------------------------------------------------------------- /translations/compton-conf_zh_TW.desktop: -------------------------------------------------------------------------------- 1 | Name[zh_TW]=視窗效果 2 | GenericName[zh_TW]=Compton 設定 3 | Comment[zh_TW]=設定 Compton 視窗效果 4 | --------------------------------------------------------------------------------