Merge pull request 'master' (#2) from YanTheKaller/libublsettings:master into master
Reviewed-on: #2pull/4/head
commit
a0eb834cb5
|
Before Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 210 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1,17 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<gresources>
|
|
||||||
<gresource prefix="/com/ublinux/ui">
|
|
||||||
<file>ublsettings-ui.glade</file>
|
|
||||||
<file>ublsettings-ui-about.glade</file>
|
|
||||||
<file>ublsettings-ui-documentation.glade</file>
|
|
||||||
<file>ublsettings-ui-save-confirmation.glade</file>
|
|
||||||
</gresource>
|
|
||||||
<gresource prefix="/com/ublinux/css">
|
|
||||||
<file>ublsettings-ui.css</file>
|
|
||||||
</gresource>
|
|
||||||
<gresource prefix="/com/ublinux/images">
|
|
||||||
<file>ublsettings-ui-banner.png</file>
|
|
||||||
<file>com.ublinux.ublsettings-ui.checked.svg</file>
|
|
||||||
<file>com.ublinux.ublsettings-ui.warning.svg</file>
|
|
||||||
</gresource>
|
|
||||||
</gresources>
|
|
||||||
File diff suppressed because it is too large
Load Diff
@ -1,62 +0,0 @@
|
|||||||
cmake_minimum_required(VERSION 3.9)
|
|
||||||
project(ubl-utils VERSION 3.1)
|
|
||||||
include(GNUInstallDirs)
|
|
||||||
|
|
||||||
find_package(PkgConfig REQUIRED)
|
|
||||||
|
|
||||||
pkg_check_modules(GTK REQUIRED gtk+-3.0)
|
|
||||||
include_directories(${GTK_INCLUDE_DIRS})
|
|
||||||
link_directories(${GTK_LIBRARY_DIRS})
|
|
||||||
add_definitions(${GTK_CFLAGS_OTHER})
|
|
||||||
|
|
||||||
pkg_check_modules(VTE291 REQUIRED vte-2.91)
|
|
||||||
include_directories(${VTE291_INCLUDE_DIRS})
|
|
||||||
link_directories(${VTE291_LIBRARY_DIRS})
|
|
||||||
add_definitions(${VTE291_CFLAGS_OTHER})
|
|
||||||
|
|
||||||
find_library(WEBKIT_LIBRARIES_FOUND webkit2gtk-4.0 webkit2gtk-web-extension-4.0)
|
|
||||||
|
|
||||||
option(WEBKIT_FOUND "No" OFF)
|
|
||||||
if(WEBKIT_LIBRARIES_FOUND)
|
|
||||||
option(WEBKIT_FOUND "Yes" ON)
|
|
||||||
PKG_CHECK_MODULES(WEBKIT REQUIRED webkit2gtk-4.0 webkit2gtk-web-extension-4.0)
|
|
||||||
include_directories(${WEBKIT_INCLUDE_DIRS})
|
|
||||||
link_directories(${WEBKIT_LIBRARY_DIRS})
|
|
||||||
add_definitions(${WEBKIT_CFLAGS_OTHER})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
|
|
||||||
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wall -Wextra -Werror -Wmissing-declarations -fdiagnostics-color=always -std=c++2a")
|
|
||||||
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wall -Wextra -Werror -Wmissing-declarations -fdiagnostics-color=always -lm")
|
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wall -Wextra -Werror -Wmissing-declarations -fdiagnostics-color=always \
|
|
||||||
-O2 -pipe -fno-plt -fexceptions \
|
|
||||||
-Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security \
|
|
||||||
-fstack-clash-protection -fcf-protection")
|
|
||||||
|
|
||||||
add_library(${PROJECT_NAME} SHARED
|
|
||||||
ubl-utils.c
|
|
||||||
ubl-utils.h)
|
|
||||||
|
|
||||||
|
|
||||||
set(LIBRARIES
|
|
||||||
${GTK_LIBRARIES}
|
|
||||||
${WEBKIT_LIBRARIES}
|
|
||||||
${VTE291_LIBRARIES}
|
|
||||||
pthread)
|
|
||||||
|
|
||||||
message(${CMAKE_INSTALL_LIBDIR})
|
|
||||||
|
|
||||||
target_include_directories(${PROJECT_NAME} PUBLIC ${PROJECT_BINARY_DIR})
|
|
||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME} PUBLIC ${LIBRARIES})
|
|
||||||
|
|
||||||
set_target_properties(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE C)
|
|
||||||
set_target_properties(${PROJECT_NAME} PROPERTIES VERSION ${PROJECT_VERSION})
|
|
||||||
set_target_properties(${PROJECT_NAME} PROPERTIES SOVERSION ${PROJECT_VERSION_MAJOR})
|
|
||||||
set_target_properties(${PROJECT_NAME} PROPERTIES PUBLIC_HEADER ${PROJECT_NAME}.h)
|
|
||||||
|
|
||||||
install(TARGETS ${PROJECT_NAME}
|
|
||||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
||||||
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
|
||||||
)
|
|
||||||
# Set pkg-config file to install.
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
Before Width: | Height: | Size: 33 KiB |
@ -1,208 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Generated with glade 3.38.2 -->
|
|
||||||
<interface domain="ublsettings-ui">
|
|
||||||
<requires lib="gtk+" version="3.24"/>
|
|
||||||
<object class="GtkApplicationWindow" id="helpConfirmationWindow">
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="resizable">False</property>
|
|
||||||
<property name="default-width">450</property>
|
|
||||||
<property name="icon-name">dialog-question-symbolic</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="margin-left">5</property>
|
|
||||||
<property name="margin-right">5</property>
|
|
||||||
<property name="margin-start">5</property>
|
|
||||||
<property name="margin-end">5</property>
|
|
||||||
<property name="margin-top">5</property>
|
|
||||||
<property name="margin-bottom">5</property>
|
|
||||||
<property name="orientation">vertical</property>
|
|
||||||
<property name="spacing">10</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="valign">start</property>
|
|
||||||
<property name="xpad">20</property>
|
|
||||||
<property name="ypad">20</property>
|
|
||||||
<property name="icon-name">dialog-question-symbolic</property>
|
|
||||||
<property name="icon_size">6</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="orientation">vertical</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkLabel">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="halign">start</property>
|
|
||||||
<property name="margin-top">10</property>
|
|
||||||
<property name="margin-bottom">5</property>
|
|
||||||
<property name="label" translatable="yes">Would you like to read documentation in the Web?</property>
|
|
||||||
<property name="wrap">True</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<attributes>
|
|
||||||
<attribute name="weight" value="bold"/>
|
|
||||||
</attributes>
|
|
||||||
<style>
|
|
||||||
<class name="fgnb"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkLabel">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="halign">start</property>
|
|
||||||
<property name="valign">start</property>
|
|
||||||
<property name="margin-right">10</property>
|
|
||||||
<property name="margin-end">10</property>
|
|
||||||
<property name="label" translatable="yes">You will be redirected to documentation website where documentation is
|
|
||||||
translated and supported by community.</property>
|
|
||||||
<property name="wrap">True</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<style>
|
|
||||||
<class name="fgnb"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkCheckButton" id="AlwaysOpenDocumentationCheckbox">
|
|
||||||
<property name="label" translatable="yes">Always redirect to online documentation</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">True</property>
|
|
||||||
<property name="receives-default">False</property>
|
|
||||||
<property name="halign">end</property>
|
|
||||||
<property name="draw-indicator">True</property>
|
|
||||||
<style>
|
|
||||||
<class name="label"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="pack-type">end</property>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<style>
|
|
||||||
<class name="fgnb"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<style>
|
|
||||||
<class name="fgnb"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="spacing">30</property>
|
|
||||||
<property name="homogeneous">True</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkButton" id="CancelHelpButton">
|
|
||||||
<property name="label" translatable="yes">Cancel</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">True</property>
|
|
||||||
<property name="receives-default">True</property>
|
|
||||||
<property name="image">image8</property>
|
|
||||||
<style>
|
|
||||||
<class name="button"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkButton" id="ReadHelpButton">
|
|
||||||
<property name="label" translatable="yes">Open documentation</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">True</property>
|
|
||||||
<property name="receives-default">True</property>
|
|
||||||
<property name="image">image9</property>
|
|
||||||
<style>
|
|
||||||
<class name="button"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child type="titlebar">
|
|
||||||
<object class="GtkHeaderBar" id="SettingsBar">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="show-close-button">True</property>
|
|
||||||
<child type="title">
|
|
||||||
<object class="GtkLabel" id="webHeaderNameLabel">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="label" translatable="yes">TEMPLATE Manager</property>
|
|
||||||
<attributes>
|
|
||||||
<attribute name="weight" value="bold"/>
|
|
||||||
</attributes>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<object class="GtkImage" id="image8">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="icon-name">process-stop-symbolic</property>
|
|
||||||
</object>
|
|
||||||
<object class="GtkImage" id="image9">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="icon-name">emblem-ok-symbolic</property>
|
|
||||||
</object>
|
|
||||||
</interface>
|
|
||||||
@ -1,145 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Generated with glade 3.38.2 -->
|
|
||||||
<interface domain="ublsettings-ui">
|
|
||||||
<requires lib="gtk+" version="3.24"/>
|
|
||||||
<object class="GtkImage" id="image8">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="icon-name">process-stop-symbolic</property>
|
|
||||||
</object>
|
|
||||||
<object class="GtkImage" id="image9">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="icon-name">emblem-ok-symbolic</property>
|
|
||||||
</object>
|
|
||||||
<object class="GtkListStore" id="liststore1">
|
|
||||||
<columns>
|
|
||||||
<!-- column-name UnregisteredParameter -->
|
|
||||||
<column type="gchararray"/>
|
|
||||||
<!-- column-name ParameterAction -->
|
|
||||||
<column type="gboolean"/>
|
|
||||||
</columns>
|
|
||||||
</object>
|
|
||||||
<object class="GtkApplicationWindow" id="helpConfirmationWindow">
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="resizable">False</property>
|
|
||||||
<property name="default-width">450</property>
|
|
||||||
<property name="icon-name">dialog-question-symbolic</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="margin-left">5</property>
|
|
||||||
<property name="margin-right">5</property>
|
|
||||||
<property name="margin-start">5</property>
|
|
||||||
<property name="margin-end">5</property>
|
|
||||||
<property name="margin-top">5</property>
|
|
||||||
<property name="margin-bottom">5</property>
|
|
||||||
<property name="orientation">vertical</property>
|
|
||||||
<property name="spacing">10</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkTreeView">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">True</property>
|
|
||||||
<property name="model">liststore1</property>
|
|
||||||
<child internal-child="selection">
|
|
||||||
<object class="GtkTreeSelection"/>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkTreeViewColumn">
|
|
||||||
<property name="title" translatable="yes">Parameter</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkCellRendererText"/>
|
|
||||||
<attributes>
|
|
||||||
<attribute name="text">0</attribute>
|
|
||||||
</attributes>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkTreeViewColumn">
|
|
||||||
<property name="title" translatable="yes">Save</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkCellRendererToggle"/>
|
|
||||||
<attributes>
|
|
||||||
<attribute name="active">1</attribute>
|
|
||||||
</attributes>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="halign">end</property>
|
|
||||||
<property name="spacing">5</property>
|
|
||||||
<property name="homogeneous">True</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkButton" id="CancelButton">
|
|
||||||
<property name="label" translatable="yes">Cancel</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">True</property>
|
|
||||||
<property name="receives-default">True</property>
|
|
||||||
<property name="image">image8</property>
|
|
||||||
<style>
|
|
||||||
<class name="button"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkButton" id="AcceptButton">
|
|
||||||
<property name="label" translatable="yes">Accept</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">True</property>
|
|
||||||
<property name="receives-default">True</property>
|
|
||||||
<property name="image">image9</property>
|
|
||||||
<style>
|
|
||||||
<class name="button"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child type="titlebar">
|
|
||||||
<object class="GtkHeaderBar" id="SettingsBar">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="show-close-button">True</property>
|
|
||||||
<child type="title">
|
|
||||||
<object class="GtkLabel" id="webHeaderNameLabel">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="label" translatable="yes">ubl-settings-TEMPLATES</property>
|
|
||||||
<attributes>
|
|
||||||
<attribute name="weight" value="bold"/>
|
|
||||||
</attributes>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</interface>
|
|
||||||
@ -1,114 +0,0 @@
|
|||||||
|
|
||||||
.thin {
|
|
||||||
margin:0px;
|
|
||||||
padding:0px;
|
|
||||||
}
|
|
||||||
.noborder {
|
|
||||||
border:none;
|
|
||||||
}
|
|
||||||
.nobackground {
|
|
||||||
background:transparent;
|
|
||||||
}
|
|
||||||
.nobackground:active {
|
|
||||||
background:transparent;
|
|
||||||
}
|
|
||||||
.textHead{
|
|
||||||
text-shadow: 2px 2px @theme_bg_color;
|
|
||||||
color: @theme_text_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inherited>* {
|
|
||||||
border:none;
|
|
||||||
background:inherit;
|
|
||||||
}
|
|
||||||
.workingbg {
|
|
||||||
background:@theme_base_color;
|
|
||||||
}
|
|
||||||
.menuitembottom{
|
|
||||||
margin-top:0px;
|
|
||||||
margin-bottom:3px;
|
|
||||||
border-color:inherit;
|
|
||||||
border-left-width:inherit;
|
|
||||||
border-right-width:inherit;
|
|
||||||
}
|
|
||||||
.menuitemmiddle{
|
|
||||||
margin-top:0px;
|
|
||||||
margin-bottom:0px;
|
|
||||||
border-color:inherit;
|
|
||||||
border-left-width:inherit;
|
|
||||||
border-right-width:inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menuitemtop{
|
|
||||||
margin-bottom:0px;
|
|
||||||
border-color:inherit;
|
|
||||||
border-top-width:inherit;
|
|
||||||
border-left-width:inherit;
|
|
||||||
border-right-width:inherit;
|
|
||||||
}
|
|
||||||
.menuitemtop>*{
|
|
||||||
margin:2px 2px 0 2px;
|
|
||||||
padding: 3px 10px 3px 5px;
|
|
||||||
/* padding: 5px 0px 3px 5px; */
|
|
||||||
border:transparent;
|
|
||||||
}
|
|
||||||
.menuitemmiddle>*{
|
|
||||||
margin:0 2px 0 2px;
|
|
||||||
padding: 3px 10px 3px 5px;
|
|
||||||
/* padding: 3px 0px 3px 5px; */
|
|
||||||
border:transparent;
|
|
||||||
}
|
|
||||||
.menuitembottom>*{
|
|
||||||
margin:0 2px 2px 2px;
|
|
||||||
padding: 3px 10px 3px 5px;
|
|
||||||
/* padding: 3px 0px 5px 5px; */
|
|
||||||
}
|
|
||||||
.menuitemtop:hover {
|
|
||||||
background:@theme_bg_color;
|
|
||||||
border-color:inherit;
|
|
||||||
border-top-width:inherit;
|
|
||||||
border-left-width:inherit;
|
|
||||||
border-right-width:inherit;
|
|
||||||
}
|
|
||||||
.menuitemmiddle:hover {
|
|
||||||
background:@theme_bg_color;
|
|
||||||
border-color:inherit;
|
|
||||||
border-left-width:inherit;
|
|
||||||
border-right-width:inherit;
|
|
||||||
}
|
|
||||||
.menuitembottom:hover {
|
|
||||||
background:@theme_bg_color;
|
|
||||||
border-color:inherit;
|
|
||||||
border-bottom-width:0px;
|
|
||||||
border-left-width:inherit;
|
|
||||||
border-right-width:inherit;
|
|
||||||
|
|
||||||
}
|
|
||||||
.menuitemtop:hover>* {
|
|
||||||
margin:2px 2px 0 2px;
|
|
||||||
padding: 3px 10px 3px 5px;
|
|
||||||
/* padding: 5px 0 3px 5px; */
|
|
||||||
background:@theme_selected_bg_color;
|
|
||||||
border-radius:2px;
|
|
||||||
}
|
|
||||||
.menuitemmiddle:hover>* {
|
|
||||||
margin:0 2px 0px 2px;
|
|
||||||
padding: 3px 10px 3px 5px;
|
|
||||||
/* padding: 3px 0px 3px 5px; */
|
|
||||||
background:@theme_selected_bg_color;
|
|
||||||
border-radius:2px;
|
|
||||||
}
|
|
||||||
.menuitembottom:hover>* {
|
|
||||||
margin:0 2px 2px 2px;
|
|
||||||
padding: 3px 10px 3px 5px;
|
|
||||||
/* padding: 3px 0px 5px 5px; */
|
|
||||||
background:@theme_selected_bg_color;
|
|
||||||
border-radius:2px;
|
|
||||||
}
|
|
||||||
.boxInfoMessError{
|
|
||||||
background-color: #ea9999;
|
|
||||||
}
|
|
||||||
|
|
||||||
.boxInfoMessOK{
|
|
||||||
background-color: #f3f0ac;
|
|
||||||
}
|
|
||||||
@ -1,502 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Generated with glade 3.38.2
|
|
||||||
|
|
||||||
ublsettings-ui -
|
|
||||||
Copyright (C) UBGroup
|
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or
|
|
||||||
modify it under the terms of the GNU General Public License
|
|
||||||
as published by the Free Software Foundation; either version 2
|
|
||||||
of the License, or (at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
|
|
||||||
-->
|
|
||||||
<interface domain="ublsettings-ui">
|
|
||||||
<requires lib="gtk+" version="3.24"/>
|
|
||||||
<!-- interface-css-provider-path ublsettings-ui.css -->
|
|
||||||
<!-- interface-license-type gplv2 -->
|
|
||||||
<!-- interface-name ublsettings-ui -->
|
|
||||||
<!-- interface-copyright UBGroup -->
|
|
||||||
<object class="GtkBox" id="HeaderBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="valign">center</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="margin-left">5</property>
|
|
||||||
<property name="margin-right">5</property>
|
|
||||||
<property name="margin-start">5</property>
|
|
||||||
<property name="margin-end">5</property>
|
|
||||||
<property name="margin-top">6</property>
|
|
||||||
<property name="margin-bottom">6</property>
|
|
||||||
<property name="pixel-size">64</property>
|
|
||||||
<property name="icon-name">com.ublinux.ublsettings-ui</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="valign">center</property>
|
|
||||||
<property name="orientation">vertical</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkLabel" id="HeaderTitleLabel">
|
|
||||||
<property name="width-request">255</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="valign">end</property>
|
|
||||||
<property name="label" translatable="yes">TEMPLATE Manager</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<attributes>
|
|
||||||
<attribute name="weight" value="bold"/>
|
|
||||||
<attribute name="size" value="15360"/>
|
|
||||||
</attributes>
|
|
||||||
<style>
|
|
||||||
<class name="textHead"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkLabel" id="HeaderInfoLabel">
|
|
||||||
<property name="width-request">255</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="valign">start</property>
|
|
||||||
<property name="label" translatable="yes">TEMPLATE management app</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<attributes>
|
|
||||||
<attribute name="weight" value="bold"/>
|
|
||||||
<attribute name="size" value="12288"/>
|
|
||||||
</attributes>
|
|
||||||
<style>
|
|
||||||
<class name="textHead"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<object class="GtkMenu" id="menu1">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="reserve-toggle-size">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuItem" id="LoadGlobalConfigurationMenuItem">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="label" translatable="yes">Load global configuration</property>
|
|
||||||
<style>
|
|
||||||
<class name="menuitemtop"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuItem" id="LoadLocalConfigurationMenuItem">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="label" translatable="yes">Load local configuration</property>
|
|
||||||
<style>
|
|
||||||
<class name="menuitembottom"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<object class="GtkMenu" id="menu2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="take-focus">False</property>
|
|
||||||
<property name="reserve-toggle-size">False</property>
|
|
||||||
</object>
|
|
||||||
<object class="GtkMenu" id="menu3">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="reserve-toggle-size">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuItem" id="SaveGlobalLocalConfigurationMenuItem">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="label" translatable="yes">Save configuration</property>
|
|
||||||
<style>
|
|
||||||
<class name="menuitemtop"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuItem" id="SaveGlobalConfigurationMenuItem">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="label" translatable="yes">Save to global configuration</property>
|
|
||||||
<style>
|
|
||||||
<class name="menuitemmiddle"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuItem" id="SaveLocalConfigurationMenuItem">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="label" translatable="yes">Save to local configuration</property>
|
|
||||||
<style>
|
|
||||||
<class name="menuitembottom"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<object class="GtkWindow" id="MainWindow">
|
|
||||||
<property name="width-request">800</property>
|
|
||||||
<property name="height-request">600</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="default-width">800</property>
|
|
||||||
<property name="default-height">600</property>
|
|
||||||
<property name="icon-name">com.ublinux.ublsettings-ui</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox" id="plugBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="orientation">vertical</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="orientation">vertical</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox" id="mainStatusBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage" id="mainStatusIcon">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="margin-left">5</property>
|
|
||||||
<property name="margin-right">5</property>
|
|
||||||
<property name="margin-start">5</property>
|
|
||||||
<property name="margin-end">5</property>
|
|
||||||
<property name="margin-top">5</property>
|
|
||||||
<property name="margin-bottom">5</property>
|
|
||||||
<property name="pixel-size">25</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkLabel" id="mainStatusLabel">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="halign">start</property>
|
|
||||||
<property name="margin-left">5</property>
|
|
||||||
<property name="margin-right">5</property>
|
|
||||||
<property name="margin-start">5</property>
|
|
||||||
<property name="margin-end">5</property>
|
|
||||||
<property name="margin-top">6</property>
|
|
||||||
<property name="margin-bottom">6</property>
|
|
||||||
<property name="wrap">True</property>
|
|
||||||
<attributes>
|
|
||||||
<attribute name="weight" value="bold"/>
|
|
||||||
<attribute name="foreground" value="#4d4d4d4d4d4d"/>
|
|
||||||
</attributes>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox" id="standartHead">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="orientation">vertical</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkOverlay" id="HeadOverlay">
|
|
||||||
<property name="height-request">81</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage" id="HeadBackgroundImage">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="halign">start</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="index">-1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="margin-left">5</property>
|
|
||||||
<property name="margin-right">5</property>
|
|
||||||
<property name="margin-start">5</property>
|
|
||||||
<property name="margin-end">5</property>
|
|
||||||
<property name="margin-top">5</property>
|
|
||||||
<property name="margin-bottom">5</property>
|
|
||||||
<property name="hexpand">True</property>
|
|
||||||
<property name="vexpand">True</property>
|
|
||||||
<property name="orientation">vertical</property>
|
|
||||||
<child>
|
|
||||||
<placeholder/>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child type="titlebar">
|
|
||||||
<object class="GtkHeaderBar" id="headerBar">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="show-close-button">True</property>
|
|
||||||
<child type="title">
|
|
||||||
<object class="GtkLabel" id="headerTopic">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="margin-left">5</property>
|
|
||||||
<property name="margin-right">5</property>
|
|
||||||
<property name="margin-start">5</property>
|
|
||||||
<property name="margin-end">5</property>
|
|
||||||
<property name="margin-bottom">2</property>
|
|
||||||
<property name="label" translatable="yes">TEMPLATE Manager</property>
|
|
||||||
<attributes>
|
|
||||||
<attribute name="weight" value="bold"/>
|
|
||||||
</attributes>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="margin-left">5</property>
|
|
||||||
<property name="margin-right">5</property>
|
|
||||||
<property name="margin-start">5</property>
|
|
||||||
<property name="margin-end">5</property>
|
|
||||||
<property name="margin-top">6</property>
|
|
||||||
<property name="margin-bottom">6</property>
|
|
||||||
<property name="pixel-size">32</property>
|
|
||||||
<property name="icon-name">com.ublinux.ublsettings-ui</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox" id="HeaderRightBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuButton">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">True</property>
|
|
||||||
<property name="focus-on-click">False</property>
|
|
||||||
<property name="receives-default">True</property>
|
|
||||||
<property name="popup">menu3</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkLabel" id="headerSaveConfigLabel">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="label" translatable="yes">Save</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="icon-name">pan-down-symbolic</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuButton" id="mainSettingsButton">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="app-paintable">True</property>
|
|
||||||
<property name="can-focus">True</property>
|
|
||||||
<property name="focus-on-click">False</property>
|
|
||||||
<property name="receives-default">True</property>
|
|
||||||
<property name="draw-indicator">True</property>
|
|
||||||
<property name="popup">menu2</property>
|
|
||||||
<property name="direction">none</property>
|
|
||||||
<child>
|
|
||||||
<placeholder/>
|
|
||||||
</child>
|
|
||||||
<style>
|
|
||||||
<class name="noborder"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="pack-type">end</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox" id="HeaderLeftBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuButton">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">True</property>
|
|
||||||
<property name="focus-on-click">False</property>
|
|
||||||
<property name="receives-default">True</property>
|
|
||||||
<property name="popup">menu1</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkLabel" id="headerLoadConfigLabel">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="label" translatable="yes">Load</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can-focus">False</property>
|
|
||||||
<property name="icon-name">pan-down-symbolic</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<style>
|
|
||||||
<class name="toolbar"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</interface>
|
|
||||||
@ -1,122 +0,0 @@
|
|||||||
# Language translations for ublsettings-ui package.
|
|
||||||
# Copyright (C) 2022, UBTech LLC
|
|
||||||
# This file is distributed under the same license as the ublsettings-ui package.
|
|
||||||
# UBLinux Team <info@ublinux.com>, 2022
|
|
||||||
#
|
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: ublsettings-ui 1.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-05-22 16:12+0600\n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:31
|
|
||||||
msgid "Operation succeeded"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:32
|
|
||||||
msgid ""
|
|
||||||
"Warning! Application was launched without root - root-dependent actions are "
|
|
||||||
"locked"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:34
|
|
||||||
msgid "About"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:35
|
|
||||||
msgid "Documentation"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:37
|
|
||||||
msgid "Save to local configuration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:38
|
|
||||||
msgid "Save to global configuration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:39
|
|
||||||
msgid "Save configuration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:40
|
|
||||||
msgid "Save"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:42
|
|
||||||
msgid "Load local configuration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:43
|
|
||||||
msgid "Load global configuration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:44
|
|
||||||
msgid "Load"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:46
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:47
|
|
||||||
msgid "Accept"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:49
|
|
||||||
msgid "Would you like to read documentation in the Web?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:50
|
|
||||||
msgid ""
|
|
||||||
"You will be redirected to documentation website where documentation is\n"
|
|
||||||
"translated and supported by community."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:51
|
|
||||||
msgid "Always redirect to online documentation"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:52
|
|
||||||
msgid "Open documentation"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:53
|
|
||||||
msgid "Project Home Page"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:54
|
|
||||||
msgid "Nothing were chosen"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:57
|
|
||||||
msgid "Global configuration loading succeeded."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:58
|
|
||||||
msgid "Local configuration loading succeeded."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:59
|
|
||||||
msgid "Config loading failed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:61
|
|
||||||
msgid "Local and global configuration saving succeeded."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:62
|
|
||||||
msgid "Global configuration saving succeeded."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: source/ublsettings-ui.h:63
|
|
||||||
msgid "Local configuration saving succeeded."
|
|
||||||
msgstr ""
|
|
||||||
Loading…
Reference in new issue