Compare commits

...

2 commits

Author SHA1 Message Date
ivan tkachenko
f1e96f7640
plugins/share: Escape literal %percent character in i18n string
The QML config file is not used anywhere for now, and C++ counterpart
already has it properly escaped.
2023-04-25 17:48:09 +06:00
ivan tkachenko
789848b270
plugins/share: Fix CMakeLists formatting 2023-04-25 17:39:34 +06:00
2 changed files with 9 additions and 6 deletions

View file

@ -1,9 +1,12 @@
set(debug_file_SRCS)
ecm_qt_declare_logging_category(
debug_file_SRCS HEADER plugin_share_debug.h
IDENTIFIER KDECONNECT_PLUGIN_SHARE CATEGORY_NAME kdeconnect.plugin.share
ecm_qt_declare_logging_category(debug_file_SRCS
HEADER plugin_share_debug.h
IDENTIFIER KDECONNECT_PLUGIN_SHARE
CATEGORY_NAME kdeconnect.plugin.share
DEFAULT_SEVERITY Warning
EXPORT kdeconnect-kde DESCRIPTION "kdeconnect (plugin share)")
EXPORT kdeconnect-kde
DESCRIPTION "kdeconnect (plugin share)"
)
set(kdeconnect_share_SRCS
shareplugin.cpp
@ -28,7 +31,7 @@ target_link_libraries(kdeconnect_share
kcoreaddons_add_plugin(kdeconnect_share_config SOURCES share_config.cpp INSTALL_NAMESPACE "kdeconnect/kcms")
ki18n_wrap_ui(kdeconnect_share_config share_config.ui)
target_link_libraries( kdeconnect_share_config
target_link_libraries(kdeconnect_share_config
kdeconnectpluginkcm
KF5::I18n
KF5::CoreAddons

View file

@ -54,6 +54,6 @@ Kirigami.FormLayout {
}
QQC2.Label {
text: i18n("%1 in the path will be replaced with the specific device name")
text: i18n("%1 in the path will be replaced with the specific device name")
}
}