├── extraJsonTranslationPaths.txt ├── purpose.kdev4 ├── .git-blame-ignore-revs ├── src ├── plugins │ ├── bluetooth │ │ ├── CMakeLists.txt │ │ └── Messages.sh │ ├── telegram │ │ ├── debug.h │ │ └── CMakeLists.txt │ ├── reviewboard │ │ ├── quick │ │ │ ├── qmldir │ │ │ ├── reviewboardquickplugin.h │ │ │ └── reviewboardquickplugin.cpp │ │ ├── icons │ │ │ ├── 128-apps-reviewboard-purpose6.png │ │ │ ├── 16-apps-reviewboard-purpose6.png │ │ │ └── CMakeLists.txt │ │ └── Messages.sh │ ├── phabricator │ │ ├── quick │ │ │ ├── qmldir │ │ │ ├── phabricatorquickplugin.cpp │ │ │ ├── phabricatorquickplugin.h │ │ │ ├── phabricatorrc.cpp │ │ │ └── phabricatorrc.h │ │ ├── icons │ │ │ ├── 112-apps-phabricator-purpose6.png │ │ │ ├── 128-apps-phabricator-purpose6.png │ │ │ ├── 16-apps-phabricator-purpose6.png │ │ │ └── CMakeLists.txt │ │ └── Messages.sh │ ├── barcode │ │ ├── Messages.sh │ │ ├── CMakeLists.txt │ │ └── barcodeplugin.cpp │ ├── email │ │ ├── Messages.sh │ │ └── CMakeLists.txt │ ├── imgur │ │ ├── Messages.sh │ │ └── CMakeLists.txt │ ├── pastebin │ │ ├── Messages.sh │ │ └── CMakeLists.txt │ ├── saveas │ │ ├── Messages.sh │ │ └── CMakeLists.txt │ ├── youtube │ │ ├── Messages.sh │ │ ├── CMakeLists.txt │ │ ├── google-youtube.service.in │ │ ├── youtubejobcomposite.h │ │ └── youtubeplugin.cpp │ ├── clipboard │ │ ├── Messages.sh │ │ └── CMakeLists.txt │ ├── kdeconnect │ │ ├── Messages.sh │ │ └── CMakeLists.txt │ ├── nextcloud │ │ ├── Messages.sh │ │ ├── nextcloud-upload.service.in │ │ ├── CMakeLists.txt │ │ ├── nextcloudjob.h │ │ └── nextcloudplugin.cpp │ └── kdeconnect_sms │ │ ├── Messages.sh │ │ └── CMakeLists.txt ├── cmake-paths.h.cmake ├── widgets │ ├── Messages.sh │ ├── purposewidgets-resources.qrc │ └── purposewidgets.qdoc ├── quick │ ├── Messages.sh │ ├── purposeqml.qdoc │ └── CMakeLists.txt ├── fileitemactionplugin │ ├── Messages.sh │ └── CMakeLists.txt ├── purpose.qdoc ├── standard-plugin-types.qrc ├── pluginbase.cpp ├── helper.h └── purpose-index.qdoc ├── tests ├── tool │ ├── sharetool-resources.qrc │ └── CMakeLists.txt └── CMakeLists.txt ├── KF6PurposeConfig.cmake.in ├── metainfo.yaml ├── .gitignore ├── .gitlab-ci.yml ├── autotests ├── CMakeLists.txt ├── menutest.h └── alternativesmodeltest.h ├── .kde-ci.yml └── po ├── pt ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po ├── purpose6_kdeconnect.po ├── purpose6_kdeconnectsms.po └── purpose6_saveas.po ├── ja ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── libpurpose6_widgets.po ├── purpose6_fileitemaction.po ├── purpose6_bluetooth.po └── purpose6_kdeconnect.po ├── de ├── purpose6_pastebin.po ├── purpose6_kdeconnectsms.po ├── purpose6_fileitemaction.po ├── purpose6_bluetooth.po └── purpose6_kdeconnect.po ├── zh_CN ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── libpurpose6_widgets.po ├── purpose6_fileitemaction.po ├── purpose6_bluetooth.po └── purpose6_kdeconnect.po ├── id ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po └── purpose6_fileitemaction.po ├── sk ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_bluetooth.po └── purpose6_fileitemaction.po ├── ast ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── libpurpose6_widgets.po ├── purpose6_fileitemaction.po ├── purpose6_bluetooth.po └── purpose6_kdeconnect.po ├── bg ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po ├── libpurpose6_widgets.po ├── purpose6_bluetooth.po └── purpose6_kdeconnect.po ├── fr ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_bluetooth.po ├── purpose6_fileitemaction.po └── purpose6_kdeconnect.po ├── fi ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po ├── purpose6_kdeconnect.po └── purpose6_bluetooth.po ├── ko ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po ├── purpose6_kdeconnect.po └── purpose6_bluetooth.po ├── gl ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po └── purpose6_kdeconnect.po ├── el ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── libpurpose6_widgets.po ├── purpose6_fileitemaction.po ├── purpose6_bluetooth.po └── purpose6_kdeconnect.po ├── hi ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po ├── libpurpose6_widgets.po ├── purpose6_bluetooth.po └── purpose6_kdeconnect.po ├── pa ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── libpurpose6_widgets.po ├── purpose6_fileitemaction.po ├── purpose6_bluetooth.po └── purpose6_kdeconnect.po ├── sa ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po ├── libpurpose6_widgets.po ├── purpose6_bluetooth.po └── purpose6_kdeconnect.po ├── az ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po ├── purpose6_bluetooth.po ├── purpose6_kdeconnect.po └── libpurpose6_widgets.po ├── it ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po └── purpose6_kdeconnect.po ├── ta ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po └── libpurpose6_widgets.po ├── zh_TW ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po └── purpose6_kdeconnect.po ├── et ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po ├── purpose6_bluetooth.po └── purpose6_kdeconnect.po ├── ia ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po ├── libpurpose6_widgets.po └── purpose6_bluetooth.po ├── nl ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po └── purpose6_fileitemaction.po ├── tr ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po └── purpose6_bluetooth.po ├── da ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_fileitemaction.po └── purpose6_kdeconnect.po ├── hu ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── purpose6_bluetooth.po └── purpose6_kdeconnect.po ├── is ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── libpurpose6_widgets.po ├── purpose6_fileitemaction.po ├── purpose6_bluetooth.po └── purpose6_kdeconnect.po ├── cs ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── libpurpose6_widgets.po └── purpose6_fileitemaction.po ├── ro ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── libpurpose6_widgets.po └── purpose6_fileitemaction.po ├── sv ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po └── purpose6_fileitemaction.po ├── tg ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po └── purpose6_fileitemaction.po ├── ar ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po └── purpose6_fileitemaction.po ├── en_GB ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po └── purpose6_fileitemaction.po ├── ka ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── libpurpose6_widgets.po └── purpose6_fileitemaction.po ├── ml ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── libpurpose6_widgets.po └── purpose6_fileitemaction.po ├── eo ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── libpurpose6_widgets.po └── purpose6_fileitemaction.po ├── nn ├── purpose6_kdeconnectsms.po ├── purpose6_pastebin.po ├── libpurpose6_widgets.po └── purpose6_fileitemaction.po ├── pl ├── purpose6_kdeconnectsms.po └── purpose6_pastebin.po ├── lt ├── purpose6_kdeconnectsms.po └── purpose6_pastebin.po ├── lv ├── purpose6_kdeconnectsms.po └── purpose6_pastebin.po ├── he ├── purpose6_kdeconnectsms.po └── purpose6_pastebin.po ├── sl ├── purpose6_kdeconnectsms.po └── purpose6_pastebin.po ├── ru ├── purpose6_kdeconnectsms.po └── purpose6_pastebin.po ├── pt_BR ├── purpose6_kdeconnectsms.po └── purpose6_pastebin.po ├── es ├── purpose6_kdeconnectsms.po └── purpose6_pastebin.po ├── ca └── purpose6_kdeconnectsms.po └── eu └── purpose6_kdeconnectsms.po /extraJsonTranslationPaths.txt: -------------------------------------------------------------------------------- 1 | X-Purpose-ActionDisplay 2 | -------------------------------------------------------------------------------- /purpose.kdev4: -------------------------------------------------------------------------------- 1 | [Project] 2 | Manager=KDevCMakeManager 3 | Name=purpose 4 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | #clang-format 2 | 48c2fceed2f3c89c158bcc5f95d1f93e48fee300 3 | -------------------------------------------------------------------------------- /src/plugins/bluetooth/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_share_plugin(bluetoothplugin bluetoothplugin.cpp) 2 | -------------------------------------------------------------------------------- /src/cmake-paths.h.cmake: -------------------------------------------------------------------------------- 1 | #define KDE_INSTALL_FULL_LIBEXECDIR_KF "@KDE_INSTALL_FULL_LIBEXECDIR_KF@" 2 | -------------------------------------------------------------------------------- /src/widgets/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT *.cpp *.h *.qml -o $podir/libpurpose6_widgets.pot 3 | -------------------------------------------------------------------------------- /src/plugins/telegram/debug.h: -------------------------------------------------------------------------------- 1 | #include 2 | Q_DECLARE_LOGGING_CATEGORY(PLUGIN_TELEGRAM) 3 | -------------------------------------------------------------------------------- /src/plugins/reviewboard/quick/qmldir: -------------------------------------------------------------------------------- 1 | module org.kde.purpose.reviewboard 2 | 3 | plugin rbpurposequickplugin 4 | -------------------------------------------------------------------------------- /src/plugins/phabricator/quick/qmldir: -------------------------------------------------------------------------------- 1 | module org.kde.purpose.phabricator 2 | 3 | plugin phabricatorquickplugin 4 | -------------------------------------------------------------------------------- /src/plugins/barcode/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT `find . -name \*.cpp -o -name \*.qml` -o $podir/purpose6_barcode.pot 3 | -------------------------------------------------------------------------------- /src/quick/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT $(find . -name "*.cpp" -o -name "*.h" -o -name "*.qml") -o $podir/libpurpose6_quick.pot 3 | -------------------------------------------------------------------------------- /src/fileitemactionplugin/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | $XGETTEXT `find . -name '*.cpp'` -o $podir/purpose6_fileitemaction.pot 4 | -------------------------------------------------------------------------------- /tests/tool/sharetool-resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | main.qml 4 | 5 | 6 | -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(tool) 2 | 3 | add_executable(menudemo menudemo.cpp) 4 | target_link_libraries(menudemo KF6::PurposeWidgets) 5 | -------------------------------------------------------------------------------- /src/plugins/barcode/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DTRANSLATION_DOMAIN=\"purpose6_barcode\") 2 | add_share_plugin(barcodeplugin barcodeplugin.cpp) 3 | 4 | -------------------------------------------------------------------------------- /src/plugins/email/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT `find . -not -path \*/tests/\* -name \*.cpp -o -name \*.cc -o -name \*.h` -o $podir/purpose6_email.pot 3 | -------------------------------------------------------------------------------- /src/plugins/imgur/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT `find . -not -path \*/tests/\* -name \*.cpp -o -name \*.cc -o -name \*.h` -o $podir/purpose6_imgur.pot 3 | -------------------------------------------------------------------------------- /src/plugins/pastebin/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT `find . -not -path \*/tests/\* -name \*.cpp -o -name \*.cc -o -name \*.h` -o $podir/purpose6_pastebin.pot 3 | -------------------------------------------------------------------------------- /src/plugins/bluetooth/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT `find . -not -path \*/tests/\* -name \*.cpp -o -name \*.qml -o -name \*.h` -o $podir/purpose6_bluetooth.pot 3 | -------------------------------------------------------------------------------- /src/plugins/phabricator/icons/112-apps-phabricator-purpose6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/purpose/HEAD/src/plugins/phabricator/icons/112-apps-phabricator-purpose6.png -------------------------------------------------------------------------------- /src/plugins/phabricator/icons/128-apps-phabricator-purpose6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/purpose/HEAD/src/plugins/phabricator/icons/128-apps-phabricator-purpose6.png -------------------------------------------------------------------------------- /src/plugins/phabricator/icons/16-apps-phabricator-purpose6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/purpose/HEAD/src/plugins/phabricator/icons/16-apps-phabricator-purpose6.png -------------------------------------------------------------------------------- /src/plugins/reviewboard/icons/128-apps-reviewboard-purpose6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/purpose/HEAD/src/plugins/reviewboard/icons/128-apps-reviewboard-purpose6.png -------------------------------------------------------------------------------- /src/plugins/reviewboard/icons/16-apps-reviewboard-purpose6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/purpose/HEAD/src/plugins/reviewboard/icons/16-apps-reviewboard-purpose6.png -------------------------------------------------------------------------------- /src/plugins/saveas/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT `find . -not -path \*/tests/\* -name \*.cpp -o -name \*.qml -o -name \*.cc -o -name \*.h` -o $podir/purpose6_saveas.pot 3 | -------------------------------------------------------------------------------- /src/plugins/youtube/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT `find . -not -path \*/tests/\* -name \*.cpp -o -name \*.qml -o -name \*.cc -o -name \*.h` -o $podir/purpose6_youtube.pot 3 | -------------------------------------------------------------------------------- /src/plugins/clipboard/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT `find . -not -path \*/tests/\* -name \*.cpp -o -name \*.qml -o -name \*.cc -o -name \*.h` -o $podir/purpose6_clipboard.pot 3 | -------------------------------------------------------------------------------- /src/plugins/kdeconnect/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT `find . -not -path \*/tests/\* -name \*.cpp -o -name \*.qml -o -name \*.cc -o -name \*.h` -o $podir/purpose6_kdeconnect.pot 3 | -------------------------------------------------------------------------------- /src/plugins/nextcloud/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT `find . -not -path \*/tests/\* -name \*.cpp -o -name \*.qml -o -name \*.cc -o -name \*.h` -o $podir/purpose6_nextcloud.pot 3 | -------------------------------------------------------------------------------- /src/plugins/telegram/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_share_plugin(telegramplugin telegramplugin.cpp) 2 | target_link_libraries(telegramplugin KF6::ConfigCore KF6::I18n KF6::KIOGui KF6::Service) 3 | -------------------------------------------------------------------------------- /src/widgets/purposewidgets-resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | JobDialog.qml 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/plugins/kdeconnect_sms/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT `find . -not -path \*/tests/\* -name \*.cpp -o -name \*.qml -o -name \*.cc -o -name \*.h` -o $podir/purpose6_kdeconnectsms.pot 3 | -------------------------------------------------------------------------------- /src/plugins/phabricator/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $XGETTEXT `find . -not -path \*/tests/\* -name \*.cpp -o -name \*.cc -o -name \*.qml -o -name \*.h` -o $podir/purpose6_phabricator.pot 3 | 4 | -------------------------------------------------------------------------------- /src/plugins/saveas/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DTRANSLATION_DOMAIN=\"purpose6_saveas\") 2 | add_share_plugin(saveasplugin saveasplugin.cpp) 3 | target_link_libraries(saveasplugin KF6::KIOCore KF6::I18n) 4 | -------------------------------------------------------------------------------- /KF6PurposeConfig.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | include(CMakeFindDependencyMacro) 4 | 5 | find_dependency(KF6CoreAddons "@KF_DEP_VERSION@") 6 | 7 | include("${CMAKE_CURRENT_LIST_DIR}/KF6PurposeTargets.cmake") 8 | -------------------------------------------------------------------------------- /src/plugins/email/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DTRANSLATION_DOMAIN=\"purpose6_email\") 2 | add_share_plugin(emailplugin emailplugin.cpp) 3 | target_link_libraries(emailplugin KF6::I18n KF6::Service KF6::KIOGui) 4 | -------------------------------------------------------------------------------- /src/plugins/clipboard/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DTRANSLATION_DOMAIN=\"purpose6_clipboard\") 2 | add_share_plugin(clipboardplugin clipboardplugin.cpp) 3 | target_link_libraries(clipboardplugin KF6::I18n Qt::Gui) 4 | 5 | -------------------------------------------------------------------------------- /src/plugins/pastebin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DTRANSLATION_DOMAIN=\"purpose6_pastebin\") 2 | add_share_plugin(pastebinplugin pastebinplugin.cpp) 3 | target_link_libraries(pastebinplugin KF6::KIOCore KF6::I18n) 4 | 5 | -------------------------------------------------------------------------------- /src/quick/purposeqml.qdoc: -------------------------------------------------------------------------------- 1 | /*! 2 | \qmlmodule org.kde.purpose 3 | \title Purpose QML Types 4 | \ingroup qmlmodules 5 | \brief Framework for providing abstractions to get the developer's purposes fulfilled. 6 | */ 7 | -------------------------------------------------------------------------------- /src/plugins/phabricator/icons/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ecm_install_icons(ICONS 16-apps-phabricator-purpose6.png 128-apps-phabricator-purpose6.png 2 | DESTINATION ${KDE_INSTALL_ICONDIR} 3 | THEME hicolor) 4 | 5 | -------------------------------------------------------------------------------- /src/plugins/reviewboard/icons/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ecm_install_icons(ICONS 16-apps-reviewboard-purpose6.png 128-apps-reviewboard-purpose6.png 2 | DESTINATION ${KDE_INSTALL_ICONDIR} 3 | THEME hicolor) 4 | 5 | -------------------------------------------------------------------------------- /src/plugins/imgur/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DTRANSLATION_DOMAIN=\"purpose6_imgur\") 2 | add_share_plugin(imgurplugin imgurplugin.cpp mpform.cpp) 3 | target_link_libraries(imgurplugin KF6::KIOCore KF6::I18n KF6::Notifications) 4 | 5 | -------------------------------------------------------------------------------- /src/plugins/kdeconnect_sms/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DTRANSLATION_DOMAIN=\"purpose6_kdeconnectsms\") 2 | add_share_plugin(kdeconnectsmsplugin kdeconnectsmsplugin.cpp) 3 | target_link_libraries(kdeconnectsmsplugin KF6::I18n KF6::KIOGui) 4 | 5 | -------------------------------------------------------------------------------- /src/plugins/reviewboard/Messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $EXTRACTRC `find . -name \*.rc` `find . -name \*.ui` >> rc.cpp 3 | $XGETTEXT `find . -not -path \*/tests/\* -name \*.cpp -o -name \*.qml -o -name \*.h` -o $podir/purpose6_reviewboard.pot 4 | rm -f rc.cpp 5 | -------------------------------------------------------------------------------- /src/purpose.qdoc: -------------------------------------------------------------------------------- 1 | /*! 2 | \module Purpose 3 | \title Purpose C++ Classes 4 | \ingroup modules 5 | \cmakepackage KF6 6 | \cmakecomponent Purpose 7 | 8 | \brief Framework for providing abstractions to get the developer's purposes fulfilled. 9 | */ 10 | 11 | -------------------------------------------------------------------------------- /src/standard-plugin-types.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | plugins/ExportPluginType.json 5 | plugins/ShareUrlPluginType.json 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/plugins/nextcloud/nextcloud-upload.service.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | nextcloud-upload 4 | Nextcloud Upload 5 | owncloud 6 | owncloud 7 | kaccounts-providers 8 | 9 | -------------------------------------------------------------------------------- /src/widgets/purposewidgets.qdoc: -------------------------------------------------------------------------------- 1 | /*! 2 | \module PurposeWidgets 3 | \title PurposeWidgets C++ Classes 4 | \cmakepackage KF6 5 | \cmakecomponent Purpose 6 | \cmaketargetitem KF6::PurposeWidgets 7 | \ingroup modules 8 | \brief Framework for providing abstractions to get the developer's purposes fulfilled. 9 | */ 10 | -------------------------------------------------------------------------------- /tests/tool/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | qt_add_resources(sharetool_SRCS sharetool-resources.qrc) 2 | 3 | add_executable(sharetool main.cpp ${sharetool_SRCS}) 4 | target_link_libraries(sharetool KF6::Purpose KF6::I18n KF6::CoreAddons Qt6::Qml Qt6::Widgets KF6::I18nQml) 5 | target_compile_definitions(sharetool PRIVATE TRANSLATION_DOMAIN="purpose6_sharetool") 6 | -------------------------------------------------------------------------------- /src/plugins/nextcloud/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DTRANSLATION_DOMAIN=\"purpose6_nextcloud\") 2 | 3 | kaccounts_add_service(${CMAKE_CURRENT_SOURCE_DIR}/nextcloud-upload.service.in) 4 | 5 | add_share_plugin(nextcloudplugin nextcloudplugin.cpp nextcloudjob.cpp) 6 | target_link_libraries(nextcloudplugin KF6::KIOCore KF6::I18n KF6::Purpose KAccounts6) 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/plugins/youtube/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DTRANSLATION_DOMAIN=\"purpose6_youtube\") 2 | 3 | kaccounts_add_service(${CMAKE_CURRENT_SOURCE_DIR}/google-youtube.service.in) 4 | 5 | add_share_plugin(youtubeplugin youtubeplugin.cpp youtubejob.cpp youtubejobcomposite.cpp) 6 | target_link_libraries(youtubeplugin KF6::WidgetsAddons KF6::KIOCore Qt6::Network KF6::I18n KF6::Purpose KAccounts6) 7 | 8 | -------------------------------------------------------------------------------- /src/pluginbase.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez 3 | 4 | SPDX-License-Identifier: LGPL-2.1-or-later 5 | */ 6 | 7 | #include "pluginbase.h" 8 | 9 | using namespace Purpose; 10 | 11 | PluginBase::PluginBase(QObject *parent) 12 | : QObject(parent) 13 | { 14 | } 15 | 16 | PluginBase::~PluginBase() 17 | { 18 | } 19 | 20 | #include "moc_pluginbase.cpp" 21 | -------------------------------------------------------------------------------- /metainfo.yaml: -------------------------------------------------------------------------------- 1 | description: Offers available actions for a specific purpose 2 | tier: 3 3 | type: integration 4 | platforms: 5 | - name: Linux 6 | - name: FreeBSD 7 | - name: Windows 8 | - name: macOS 9 | portingAid: false 10 | deprecated: false 11 | release: true 12 | libraries: 13 | - cmake: "KF6::Purpose" 14 | cmakename: KF6Purpose 15 | 16 | public_lib: true 17 | group: Frameworks 18 | subgroup: Tier 3 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # general 2 | apidocs 3 | .kdev4 4 | *~ 5 | *.bak 6 | doxygen.log 7 | build 8 | *.patch 9 | *.diff 10 | *.orig 11 | *.rej 12 | *.swp 13 | massif.out.* 14 | callgrind.out.* 15 | .*kate-swp 16 | CMakeLists.txt.user 17 | 18 | # from kdiff3 19 | *.BACKUP.* 20 | *.BASE.* 21 | *.LOCAL.* 22 | *.REMOTE.* 23 | .cmake/ 24 | /.clang-format 25 | /compile_commands.json 26 | .clangd 27 | .idea 28 | .vscode 29 | /cmake-build* 30 | .cache 31 | /build*/ 32 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2020 Volker Krause 2 | # SPDX-License-Identifier: CC0-1.0 3 | 4 | include: 5 | - project: sysadmin/ci-utilities 6 | file: 7 | - /gitlab-templates/linux-qt6.yml 8 | - /gitlab-templates/linux-qt6-next.yml 9 | - /gitlab-templates/freebsd-qt6.yml 10 | - /gitlab-templates/windows-qt6.yml 11 | - /gitlab-templates/xml-lint.yml 12 | - /gitlab-templates/yaml-lint.yml 13 | -------------------------------------------------------------------------------- /autotests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ecm_add_test(alternativesmodeltest.cpp 2 | TEST_NAME alternativesmodeltest 3 | LINK_LIBRARIES Qt6::Test KF6::Purpose KF6::ConfigCore) 4 | ecm_add_test(menutest.cpp 5 | TEST_NAME menutest 6 | LINK_LIBRARIES Qt6::Test KF6::PurposeWidgets) 7 | 8 | set_property(TEST menutest PROPERTY ENVIRONMENT KDE_PURPOSE_LOCAL_JOBS=1 APPEND) 9 | set_property(TEST alternativesmodeltest PROPERTY ENVIRONMENT KDE_PURPOSE_LOCAL_JOBS=1 APPEND) 10 | -------------------------------------------------------------------------------- /src/helper.h: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2015 Aleix Pol Gonzalez 3 | 4 | SPDX-License-Identifier: LGPL-2.1-or-later 5 | */ 6 | 7 | #ifndef PURPOSE_HELPER_H 8 | #define PURPOSE_HELPER_H 9 | 10 | #include 11 | #include 12 | 13 | namespace Purpose 14 | { 15 | QJsonObject readPluginType(const QString &pluginType); 16 | KPluginMetaData createMetaData(const QString &file); 17 | 18 | } 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /src/quick/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ecm_add_qml_module(purposequickplugin URI "org.kde.purpose" VERSION 1.0 GENERATE_PLUGIN_SOURCE) 2 | 3 | target_sources(purposequickplugin PRIVATE types.h) 4 | 5 | ecm_target_qml_sources(purposequickplugin SOURCES 6 | AlternativesView.qml 7 | JobView.qml 8 | ) 9 | 10 | target_link_libraries(purposequickplugin PRIVATE 11 | Qt6::Qml 12 | KF6Purpose 13 | ) 14 | 15 | ecm_finalize_qml_module(purposequickplugin) 16 | 17 | ecm_generate_qdoc(purposequickplugin purposeqml.qdocconf) -------------------------------------------------------------------------------- /autotests/menutest.h: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez 3 | 4 | SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #ifndef ALTERNATIVESMODELTEST_H 8 | #define ALTERNATIVESMODELTEST_H 9 | 10 | #include 11 | #include 12 | 13 | class MenuTest : public QObject 14 | { 15 | Q_OBJECT 16 | private Q_SLOTS: 17 | void initTestCase(); 18 | void runJobTest(); 19 | 20 | private: 21 | QTemporaryDir m_tempDir; 22 | }; 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /.kde-ci.yml: -------------------------------------------------------------------------------- 1 | Dependencies: 2 | - 'on': ['Linux', 'FreeBSD', 'Windows', 'macOS'] 3 | 'require': 4 | 'frameworks/extra-cmake-modules': '@same' 5 | 'frameworks/kcoreaddons': '@same' 6 | 'frameworks/kconfig': '@same' 7 | 'frameworks/ki18n': '@same' 8 | 'frameworks/kio': '@same' 9 | 'frameworks/kirigami': '@same' 10 | 'frameworks/kservice': '@same' 11 | 'frameworks/kitemmodels': '@same' 12 | 13 | Options: 14 | test-before-installing: True 15 | require-passing-tests-on: ['Linux', 'FreeBSD', 'Windows'] 16 | run-qmllint: True 17 | -------------------------------------------------------------------------------- /src/plugins/youtube/google-youtube.service.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | google-youtube 4 | 6 | YouTube 7 | Upload files to YouTube 8 | im-youtube 9 | google 10 | kaccounts-providers 11 | 12 | -------------------------------------------------------------------------------- /src/plugins/reviewboard/quick/reviewboardquickplugin.h: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2015 Aleix Pol Gonzalez 3 | 4 | SPDX-License-Identifier: LGPL-2.1-or-later 5 | */ 6 | 7 | #ifndef RBPURPOSEQUICKPLUGIN_H 8 | #define RBPURPOSEQUICKPLUGIN_H 9 | 10 | #include 11 | 12 | class RBPurposeQuickPlugin : public QQmlExtensionPlugin 13 | { 14 | Q_OBJECT 15 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") 16 | 17 | public: 18 | void registerTypes(const char *uri) override; 19 | }; 20 | 21 | #endif // PURPOSEQUICKPLUGIN_H 22 | -------------------------------------------------------------------------------- /src/plugins/phabricator/quick/phabricatorquickplugin.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2017 René J.V. Bertin 3 | 4 | SPDX-License-Identifier: LGPL-2.1-or-later 5 | */ 6 | 7 | #include "phabricatorquickplugin.h" 8 | #include "difflistmodel.h" 9 | #include "phabricatorrc.h" 10 | #include 11 | 12 | void PhabricatorPurposeQuickPlugin::registerTypes(const char *uri) 13 | { 14 | qmlRegisterType(uri, 1, 0, "DiffListModel"); 15 | qmlRegisterType(uri, 1, 0, "PhabricatorRC"); 16 | } 17 | 18 | #include "moc_phabricatorquickplugin.cpp" 19 | -------------------------------------------------------------------------------- /src/plugins/youtube/youtubejobcomposite.h: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez 3 | 4 | SPDX-License-Identifier: LGPL-2.1-or-later 5 | */ 6 | 7 | #ifndef YOUTUBEJOBCOMPOSITE_H 8 | #define YOUTUBEJOBCOMPOSITE_H 9 | 10 | #include 11 | 12 | class YoutubeJobComposite : public Purpose::Job 13 | { 14 | public: 15 | YoutubeJobComposite(); 16 | 17 | void start() override; 18 | 19 | private Q_SLOTS: 20 | void subjobFinished(KJob *subjob); 21 | 22 | private: 23 | int m_pendingJobs; 24 | }; 25 | 26 | #endif // YOUTUBEJOBCOMPOSITE_H 27 | -------------------------------------------------------------------------------- /src/purpose-index.qdoc: -------------------------------------------------------------------------------- 1 | /*! 2 | \page purpose-index.html 3 | \title Purpose 4 | 5 | Framework for providing abstractions to get the developer's purposes fulfilled. 6 | 7 | \section1 Using the Module 8 | 9 | \include {module-use.qdocinc} {using the c++ api} 10 | 11 | \section2 Building with CMake 12 | 13 | \include {module-use.qdocinc} {building with cmake} {KF6} {Purpose} {KF6::Purpose} 14 | 15 | \section1 API Reference 16 | 17 | \list 18 | \li \l{Purpose C++ Classes} 19 | \li \l{PurposeWidgets C++ Classes} 20 | \li \l{Purpose QML Types} 21 | \endlist 22 | */ 23 | -------------------------------------------------------------------------------- /src/plugins/phabricator/quick/phabricatorquickplugin.h: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2017 René J.V. Bertin 3 | 4 | SPDX-License-Identifier: LGPL-2.1-or-later 5 | */ 6 | 7 | #ifndef PHABRICATORPURPOSEQUICKPLUGIN_H 8 | #define PHABRICATORPURPOSEQUICKPLUGIN_H 9 | 10 | #include 11 | 12 | class PhabricatorPurposeQuickPlugin : public QQmlExtensionPlugin 13 | { 14 | Q_OBJECT 15 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") 16 | 17 | public: 18 | void registerTypes(const char *uri) override; 19 | }; 20 | 21 | #endif // PHABRICATORPURPOSEQUICKPLUGIN_H 22 | -------------------------------------------------------------------------------- /src/plugins/nextcloud/nextcloudjob.h: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2017 Lim Yuen Hoe 3 | 4 | SPDX-License-Identifier: LGPL-2.1-or-later 5 | */ 6 | 7 | #ifndef NEXTCLOUDJOB_H 8 | #define NEXTCLOUDJOB_H 9 | 10 | #include 11 | #include 12 | #include 13 | 14 | class NextcloudJob : public Purpose::Job 15 | { 16 | Q_OBJECT 17 | public: 18 | NextcloudJob(QObject *parent) 19 | : Purpose::Job(parent) 20 | { 21 | } 22 | void start() override; 23 | 24 | private Q_SLOTS: 25 | void gotCredentials(KJob *job); 26 | }; 27 | #endif /* NEXTCLOUDJOB_H */ 28 | -------------------------------------------------------------------------------- /src/plugins/kdeconnect/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DTRANSLATION_DOMAIN=\"purpose6_kdeconnect\") 2 | 3 | add_share_plugin(kdeconnectplugin kdeconnectplugin.cpp) 4 | 5 | target_link_libraries(kdeconnectplugin Qt6::DBus) 6 | 7 | qt_add_dbus_interface(dbus_SRCS org.kde.kdeconnect.daemon.xml DaemonDbusInterface) 8 | qt_add_dbus_interface(dbus_SRCS org.kde.kdeconnect.device.xml DeviceDbusInterface) 9 | 10 | ecm_add_qml_module(kdeconnectQml URI "org.kde.purpose.kdeconnect" SOURCES devicesmodel.cpp ${dbus_SRCS} DEPENDENCIES QtCore GENERATE_PLUGIN_SOURCE) 11 | target_link_libraries(kdeconnectQml PRIVATE Qt6::Gui Qt6::DBus) 12 | ecm_finalize_qml_module(kdeconnectQml) 13 | -------------------------------------------------------------------------------- /po/pt/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: purpose_pastebin\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 6 | "PO-Revision-Date: 2015-09-25 11:00+0100\n" 7 | "Last-Translator: José Nuno Coelho Pires \n" 8 | "Language-Team: Portuguese \n" 9 | "Language: pt\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | 15 | #: pastebinplugin.cpp:72 16 | #, kde-format 17 | msgid "No information to send" 18 | msgstr "Sem informação para enviar" 19 | -------------------------------------------------------------------------------- /src/plugins/nextcloud/nextcloudplugin.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2017 Lim Yuen Hoe 3 | 4 | SPDX-License-Identifier: LGPL-2.1-or-later 5 | */ 6 | 7 | #include "nextcloudjob.h" 8 | #include 9 | 10 | #include 11 | #include 12 | 13 | class NextcloudPlugin : public Purpose::PluginBase 14 | { 15 | Q_OBJECT 16 | public: 17 | using PluginBase::PluginBase; 18 | Purpose::Job *createJob() const override 19 | { 20 | return new NextcloudJob(nullptr); 21 | } 22 | }; 23 | 24 | K_PLUGIN_CLASS_WITH_JSON(NextcloudPlugin, "nextcloudplugin.json") 25 | 26 | #include "nextcloudplugin.moc" 27 | -------------------------------------------------------------------------------- /autotests/alternativesmodeltest.h: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez 3 | 4 | SPDX-License-Identifier: GPL-2.0-or-later 5 | */ 6 | 7 | #ifndef ALTERNATIVESMODELTEST_H 8 | #define ALTERNATIVESMODELTEST_H 9 | 10 | #include 11 | #include 12 | 13 | class AlternativesModelTest : public QObject 14 | { 15 | Q_OBJECT 16 | private Q_SLOTS: 17 | void initTestCase(); 18 | void runJobTest(); 19 | void bigBufferTest(); 20 | void disablePluginTest(); 21 | void blacklistTest(); 22 | void bogusInputDataClearsModel(); 23 | 24 | private: 25 | QTemporaryDir m_tempDir; 26 | }; 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /po/ja/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: purpose\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 6 | "PO-Revision-Date: 2019-03-12 21:35-0700\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: kdeconnectsmsplugin.cpp:39 18 | #, kde-format 19 | msgid "%1 - %2" 20 | msgstr "" 21 | -------------------------------------------------------------------------------- /src/plugins/barcode/barcodeplugin.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2021 Kai Uwe Broulik 3 | 4 | SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | #include 8 | #include 9 | 10 | class BarcodePlugin : public Purpose::PluginBase 11 | { 12 | Q_OBJECT 13 | public: 14 | using PluginBase::PluginBase; 15 | Purpose::Job *createJob() const override 16 | { 17 | // It's never supposed to go beyond the configuration page 18 | Q_UNREACHABLE(); 19 | return nullptr; 20 | } 21 | }; 22 | 23 | K_PLUGIN_CLASS_WITH_JSON(BarcodePlugin, "barcodeplugin.json") 24 | 25 | #include "barcodeplugin.moc" 26 | -------------------------------------------------------------------------------- /src/plugins/youtube/youtubeplugin.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez 3 | 4 | SPDX-License-Identifier: LGPL-2.1-or-later 5 | */ 6 | 7 | #include "youtubejob.h" 8 | #include "youtubejobcomposite.h" 9 | #include 10 | 11 | #include 12 | 13 | class YoutubePlugin : public Purpose::PluginBase 14 | { 15 | Q_OBJECT 16 | public: 17 | using PluginBase::PluginBase; 18 | Purpose::Job *createJob() const override 19 | { 20 | return new YoutubeJobComposite; 21 | } 22 | }; 23 | 24 | K_PLUGIN_CLASS_WITH_JSON(YoutubePlugin, "youtubeplugin.json") 25 | 26 | #include "youtubeplugin.moc" 27 | -------------------------------------------------------------------------------- /po/ja/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: purpose_pastebin\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 6 | "PO-Revision-Date: 2015-09-26 16:34-0700\n" 7 | "Last-Translator: Japanese KDE translation team \n" 8 | "Language-Team: Japanese \n" 9 | "Language: ja\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Accelerator-Marker: &\n" 15 | "X-Text-Markup: kde4\n" 16 | 17 | #: pastebinplugin.cpp:72 18 | #, kde-format 19 | msgid "No information to send" 20 | msgstr "" 21 | -------------------------------------------------------------------------------- /src/plugins/phabricator/quick/phabricatorrc.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2017 René J.V. Bertin 3 | 4 | SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | #include "phabricatorrc.h" 8 | 9 | PhabricatorRC::PhabricatorRC(QObject *parent) 10 | : QObject(parent) 11 | { 12 | } 13 | 14 | void PhabricatorRC::setPath(const QUrl &filePath) 15 | { 16 | if (filePath == m_path || !filePath.isLocalFile()) { 17 | return; 18 | } 19 | m_path = filePath; 20 | 21 | //.arcconfig files are JSON files 22 | // TODO figure out the if/what/how of .arcconfig file contents 23 | Q_EMIT dataChanged(); 24 | } 25 | 26 | #include "moc_phabricatorrc.cpp" 27 | -------------------------------------------------------------------------------- /src/plugins/reviewboard/quick/reviewboardquickplugin.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez 3 | 4 | SPDX-License-Identifier: LGPL-2.1-or-later 5 | */ 6 | 7 | #include "reviewboardquickplugin.h" 8 | #include "rbrepositoriesmodel.h" 9 | #include "rbreviewslistmodel.h" 10 | #include "reviewboardrc.h" 11 | #include 12 | 13 | void RBPurposeQuickPlugin::registerTypes(const char *uri) 14 | { 15 | qmlRegisterType(uri, 1, 0, "RepositoriesModel"); 16 | qmlRegisterType(uri, 1, 0, "ReviewsListModel"); 17 | qmlRegisterType(uri, 1, 0, "ReviewboardRC"); 18 | } 19 | 20 | #include "moc_reviewboardquickplugin.cpp" 21 | -------------------------------------------------------------------------------- /src/plugins/phabricator/quick/phabricatorrc.h: -------------------------------------------------------------------------------- 1 | /* 2 | SPDX-FileCopyrightText: 2017 René J.V. Bertin 3 | 4 | SPDX-License-Identifier: LGPL-2.0-or-later 5 | */ 6 | 7 | #ifndef PHABRICATORRC_H 8 | #define PHABRICATORRC_H 9 | 10 | #include 11 | #include 12 | 13 | class PhabricatorRC : public QObject 14 | { 15 | Q_OBJECT 16 | Q_PROPERTY(QUrl path READ path WRITE setPath NOTIFY dataChanged) 17 | public: 18 | PhabricatorRC(QObject *parent = nullptr); 19 | 20 | void setPath(const QUrl &path); 21 | 22 | QUrl path() const 23 | { 24 | return m_path; 25 | } 26 | 27 | Q_SIGNALS: 28 | void dataChanged(); 29 | 30 | private: 31 | QUrl m_path; 32 | }; 33 | 34 | #endif 35 | -------------------------------------------------------------------------------- /po/de/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2015 Frederik Schwarzer 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: purpose6_pastebin\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 7 | "PO-Revision-Date: 2015-10-25 00:22+0100\n" 8 | "Last-Translator: Frederik Schwarzer \n" 9 | "Language-Team: German \n" 10 | "Language: de\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | #: pastebinplugin.cpp:72 17 | #, kde-format 18 | msgid "No information to send" 19 | msgstr "Keine zu sendenden Informationen" 20 | -------------------------------------------------------------------------------- /po/pt/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: purpose-fileitemaction\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 6 | "PO-Revision-Date: 2019-02-25 00:35+0000\n" 7 | "Last-Translator: José Nuno Coelho Pires \n" 8 | "Language-Team: Portuguese \n" 9 | "Language: pt\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | 15 | #: sharefileitemaction.cpp:36 16 | #, kde-format 17 | msgid "Share" 18 | msgstr "Partilhar" 19 | 20 | #: sharefileitemaction.cpp:64 21 | #, kde-format 22 | msgid "Error sharing" 23 | msgstr "Erro na partilha" 24 | -------------------------------------------------------------------------------- /po/zh_CN/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/purpose/purpose6_kdeconnectsms.pot\n" 18 | "X-Crowdin-File-ID: 43159\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/zh_CN/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/purpose/purpose6_pastebin.pot\n" 18 | "X-Crowdin-File-ID: 43185\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "没有要发送的信息" 24 | -------------------------------------------------------------------------------- /po/id/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # Wantoyo , 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-04-17 09:10+0700\n" 11 | "Last-Translator: Wantoyo \n" 12 | "Language-Team: Indonesian \n" 13 | "Language: id\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: kdeconnectsmsplugin.cpp:39 20 | #, kde-format 21 | msgid "%1 - %2" 22 | msgstr "%1 - %2" 23 | -------------------------------------------------------------------------------- /po/sk/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # translation of purpose_kdeconnectsms.po to Slovak 2 | # Roman Paholik , 2019. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: purpose_kdeconnectsms\n" 6 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 7 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 8 | "PO-Revision-Date: 2019-03-13 10:09+0100\n" 9 | "Last-Translator: Roman Paholik \n" 10 | "Language-Team: Slovak \n" 11 | "Language: sk\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Lokalize 2.0\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | 18 | #: kdeconnectsmsplugin.cpp:39 19 | #, kde-format 20 | msgid "%1 - %2" 21 | msgstr "%1 - %2" 22 | -------------------------------------------------------------------------------- /po/ast/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Enol P. , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-05-03 23:16+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/ast/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Enol P. , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-05-03 23:16+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /po/bg/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: \n" 12 | "Last-Translator: mkkDr2010 \n" 13 | "Language-Team: \n" 14 | "Language: bg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Generator: Poedit 2.4.1\n" 19 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 20 | 21 | #: kdeconnectsmsplugin.cpp:39 22 | #, kde-format 23 | msgid "%1 - %2" 24 | msgstr "%1 - %2" 25 | -------------------------------------------------------------------------------- /po/fr/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Simon Depiets , 2019. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: purpose\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 7 | "PO-Revision-Date: 2019-03-18 17:39+0800\n" 8 | "Last-Translator: Simon Depiets \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 19.03.70\n" 16 | "X-Environment: kde\n" 17 | "X-Accelerator-Marker: &\n" 18 | "X-Text-Markup: kde4\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/fi/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # Tommi Nieminen , 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-03-18 20:22+0200\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: kdeconnectsmsplugin.cpp:39 20 | #, kde-format 21 | msgid "%1 - %2" 22 | msgstr "%1 - %2" 23 | -------------------------------------------------------------------------------- /po/ko/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # Shinjo Park , 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-04-12 00:47+0100\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/ko/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # Shinjo Park , 2018. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2018-08-14 23:21+0100\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "보낼 정보가 없음" 24 | -------------------------------------------------------------------------------- /po/sk/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # translation of purpose_pastebin.po to Slovak 2 | # Roman Paholik , 2015. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: purpose_pastebin\n" 6 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 7 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 8 | "PO-Revision-Date: 2015-09-26 12:22+0100\n" 9 | "Last-Translator: Roman Paholik \n" 10 | "Language-Team: Slovak \n" 11 | "Language: sk\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Lokalize 2.0\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | 18 | #: pastebinplugin.cpp:72 19 | #, kde-format 20 | msgid "No information to send" 21 | msgstr "Žiadna informácia na odoslanie" 22 | -------------------------------------------------------------------------------- /po/gl/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Adrián Chaves (Gallaecio) , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-03-11 22:02+0100\n" 11 | "Last-Translator: Adrián Chaves (Gallaecio) \n" 12 | "Language-Team: Galician \n" 13 | "Language: gl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | 19 | #: kdeconnectsmsplugin.cpp:39 20 | #, kde-format 21 | msgid "%1 - %2" 22 | msgstr "%1 - %2" 23 | -------------------------------------------------------------------------------- /po/el/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Stelios , 2020. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2020-10-21 12:36+0300\n" 11 | "Last-Translator: Stelios \n" 12 | "Language-Team: Greek \n" 13 | "Language: el\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 20.04.2\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/hi/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for purpose package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2024-12-15 17:35+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/pa/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-04-01 21:19-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/sa/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for purpose package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:09+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/az/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Xəyyam , 2020. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2020-05-02 23:04+0400\n" 11 | "Last-Translator: Xəyyam \n" 12 | "Language-Team: Azerbaijani \n" 13 | "Language: az\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 20.04.0\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/fi/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # Tommi Nieminen , 2018. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2018-02-20 12:59+0200\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: pastebinplugin.cpp:72 20 | #, kde-format 21 | msgid "No information to send" 22 | msgstr "Ei lähetettävää tietoa" 23 | -------------------------------------------------------------------------------- /po/fr/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Simon Depiets , 2018. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: purpose_pastebin\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 7 | "PO-Revision-Date: 2018-01-28 17:14+0800\n" 8 | "Last-Translator: Simon Depiets \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 2.0\n" 16 | "X-Environment: kde\n" 17 | "X-Accelerator-Marker: &\n" 18 | "X-Text-Markup: kde4\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Aucune information à envoyer" 24 | -------------------------------------------------------------------------------- /po/id/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # Wantoyo , 2018, 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-01-10 19:16+0700\n" 11 | "Last-Translator: Wantoyo \n" 12 | "Language-Team: Indonesian \n" 13 | "Language: id\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: pastebinplugin.cpp:72 20 | #, kde-format 21 | msgid "No information to send" 22 | msgstr "Tidak ada informasi untuk dikirimkan" 23 | -------------------------------------------------------------------------------- /po/de/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # SPDX-FileCopyrightText: 2019 Burkhard Lück 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: purpose6_kdeconnectsms\n" 7 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 8 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 9 | "PO-Revision-Date: 2019-04-11 07:00+0100\n" 10 | "Last-Translator: Burkhard Lück \n" 11 | "Language-Team: German \n" 12 | "Language: de\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 | 18 | #: kdeconnectsmsplugin.cpp:39 19 | #, kde-format 20 | msgid "%1 - %2" 21 | msgstr "%1 - %2" 22 | -------------------------------------------------------------------------------- /po/it/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # Paolo Zamponi , 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-04-03 09:31+0200\n" 11 | "Last-Translator: Paolo Zamponi \n" 12 | "Language-Team: Italian \n" 13 | "Language: it\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 18.12.3\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/pt/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: purpose_kdeconnect\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 6 | "PO-Revision-Date: 2018-05-28 11:39+0100\n" 7 | "Last-Translator: José Nuno Coelho Pires \n" 8 | "Language-Team: Portuguese \n" 9 | "Language: pt\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | 15 | #: kdeconnectplugin_config.qml:22 16 | #, kde-format 17 | msgid "Choose a device to send to:" 18 | msgstr "Escolha um dispositivo para onde enviar:" 19 | 20 | #: kdeconnectplugin_config.qml:63 21 | #, kde-format 22 | msgid "No devices found" 23 | msgstr "Não foram encontrados dispositivos" 24 | -------------------------------------------------------------------------------- /po/pt/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2019-03-29 11:07+0000\n" 12 | "Last-Translator: José Nuno Coelho Pires \n" 13 | "Language-Team: Portuguese \n" 14 | "Language: pt\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/ta/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Kishore G , 2021. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2021-08-03 22:03+0530\n" 11 | "Last-Translator: Kishore G \n" 12 | "Language-Team: Tamil \n" 13 | "Language: ta\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 21.07.90\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/zh_TW/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # pan93412 , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-03-12 22:34+0800\n" 11 | "Last-Translator: pan93412 \n" 12 | "Language-Team: Chinese \n" 13 | "Language: zh_TW\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 18.12.3\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/et/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Marek Laane , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-11-08 18:45+0200\n" 11 | "Last-Translator: Marek Laane \n" 12 | "Language-Team: Estonian \n" 13 | "Language: et\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 19.08.1\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/ia/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Giovanni Sora , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-12-24 23:00+0100\n" 11 | "Last-Translator: Giovanni Sora \n" 12 | "Language-Team: Interlingua \n" 13 | "Language: ia\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/bg/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2020-12-27 18:00+0100\n" 12 | "Last-Translator: mkkDr2010 \n" 13 | "Language-Team: \n" 14 | "Language: bg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 19 | "X-Generator: Poedit 2.4.1\n" 20 | 21 | #: pastebinplugin.cpp:72 22 | #, kde-format 23 | msgid "No information to send" 24 | msgstr "Няма информация за изпращане" 25 | -------------------------------------------------------------------------------- /po/nl/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Freek de Kruijf , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-03-11 11:53+0100\n" 11 | "Last-Translator: Freek de Kruijf \n" 12 | "Language-Team: Dutch \n" 13 | "Language: nl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 18.12.2\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/sa/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for purpose package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:09+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "प्रेषयितुं सूचना नास्ति" 24 | -------------------------------------------------------------------------------- /po/tr/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Volkan Gezer , 2021. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2021-03-23 12:48+0100\n" 11 | "Last-Translator: Volkan Gezer \n" 12 | "Language-Team: Turkish \n" 13 | "Language: tr\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | "X-Generator: Lokalize 20.08.2\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/da/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Martin Schlander , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-05-07 12:28+0100\n" 11 | "Last-Translator: Martin Schlander \n" 12 | "Language-Team: Danish \n" 13 | "Language: da\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/hi/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for purpose package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2024-12-15 17:35+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "भेजने के लिए कोई जानकारी नहीं" 24 | -------------------------------------------------------------------------------- /po/hu/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Kristóf Kiszel , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-11-12 19:41+0100\n" 11 | "Last-Translator: Kristóf Kiszel \n" 12 | "Language-Team: Hungarian \n" 13 | "Language: hu\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 20.03.70\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/is/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # SPDX-FileCopyrightText: 2025 Sveinn í Felli 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2025-12-02 09:03+0000\n" 11 | "Last-Translator: Sveinn í Felli \n" 12 | "Language-Team: Icelandic\n" 13 | "Language: is\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.08.5\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/pa/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-04-01 21:19-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "ਭੇਜਣ ਲਈ ਕੋਈ ਜਾਣਕਾਰੀ ਨਹੀਂ ਹੈ" 24 | -------------------------------------------------------------------------------- /po/ta/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Kishore G , 2021. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2021-08-03 22:03+0530\n" 11 | "Last-Translator: Kishore G \n" 12 | "Language-Team: Tamil \n" 13 | "Language: ta\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 21.07.90\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "அனுப்ப எதுவும் இல்லை" 24 | -------------------------------------------------------------------------------- /po/tr/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR This_file_is_part_of_KDE 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose_pastebin\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2017-08-10 09:15+0000\n" 12 | "Last-Translator: Kaan \n" 13 | "Language-Team: Turkish \n" 14 | "Language: tr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Gönderilecek bilgi yok" 24 | -------------------------------------------------------------------------------- /po/az/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Xəyyam , 2020. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2020-05-02 23:07+0400\n" 11 | "Last-Translator: Xəyyam \n" 12 | "Language-Team: Azerbaijani \n" 13 | "Language: az\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 20.04.0\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Göndərmək üçün məlumat yoxdur" 24 | -------------------------------------------------------------------------------- /po/cs/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # Vit Pelcak , 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-04-30 10:36+0200\n" 11 | "Last-Translator: Vit Pelcak \n" 12 | "Language-Team: Czech \n" 13 | "Language: cs\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 18 | "X-Generator: Lokalize 18.12.3\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/et/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Marek Laane , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-11-08 18:48+0200\n" 11 | "Last-Translator: Marek Laane \n" 12 | "Language-Team: Estonian \n" 13 | "Language: et\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 19.08.1\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Pole midagi saata" 24 | -------------------------------------------------------------------------------- /po/ro/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # Sergiu Bivol , 2022. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2022-02-04 17:51+0000\n" 11 | "Last-Translator: Sergiu Bivol \n" 12 | "Language-Team: Romanian\n" 13 | "Language: ro\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " 18 | "20)) ? 1 : 2;\n" 19 | "X-Generator: Lokalize 21.12.2\n" 20 | 21 | #: kdeconnectsmsplugin.cpp:39 22 | #, kde-format 23 | msgid "%1 - %2" 24 | msgstr "%1 – %2" 25 | -------------------------------------------------------------------------------- /po/sv/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Stefan Asserhäll , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-03-10 10:05+0100\n" 11 | "Last-Translator: Stefan Asserhäll \n" 12 | "Language-Team: Swedish \n" 13 | "Language: sv\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/tg/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Victor Ibragimov , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-08-16 18:39+0500\n" 11 | "Last-Translator: Victor Ibragimov \n" 12 | "Language-Team: English \n" 13 | "Language: tg\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 19.04.3\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/zh_TW/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Jeff Huang , 2016. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose_pastebin\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2016-12-14 16:16+0800\n" 11 | "Last-Translator: Jeff Huang \n" 12 | "Language-Team: Chinese \n" 13 | "Language: Traditional Chinese\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Generator: Lokalize 2.0\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "沒有資訊可以傳送" 24 | -------------------------------------------------------------------------------- /po/ar/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Zayed Al-Saidi , 2021. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2021-12-18 23:19+0400\n" 11 | "Last-Translator: Zayed Al-Saidi \n" 12 | "Language-Team: ar\n" 13 | "Language: ar\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " 18 | "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "‏%1 - ‏%2" 24 | -------------------------------------------------------------------------------- /po/cs/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # Vít Pelčák , 2015. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2015-10-02 10:29+0100\n" 11 | "Last-Translator: Vít Pelčák \n" 12 | "Language-Team: Czech \n" 13 | "Language: cs\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Žádná informace k odeslání" 24 | -------------------------------------------------------------------------------- /po/ia/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Giovanni Sora , 2019, 2021. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2021-12-20 12:36+0100\n" 11 | "Last-Translator: giovanni \n" 12 | "Language-Team: Interlingua \n" 13 | "Language: ia\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 20.04.2\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Necun information a inviar" 24 | -------------------------------------------------------------------------------- /po/da/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Martin Schlander , 2016. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2016-05-12 20:29+0100\n" 11 | "Last-Translator: Martin Schlander \n" 12 | "Language-Team: Danish \n" 13 | "Language: da\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Ingen information at sende" 24 | -------------------------------------------------------------------------------- /po/en_GB/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Steve Allewell , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-03-24 19:21+0000\n" 11 | "Last-Translator: Steve Allewell \n" 12 | "Language-Team: British English \n" 13 | "Language: en_GB\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 19.07.70\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/nl/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Freek de Kruijf , 2015. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2015-09-27 13:09+0200\n" 11 | "Last-Translator: Freek de Kruijf \n" 12 | "Language-Team: Dutch \n" 13 | "Language: nl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 1.5\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Geen te verzenden informatie gevonden" 24 | -------------------------------------------------------------------------------- /po/el/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Dimitris Kardarakos , 2016. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2016-04-03 17:31+0200\n" 11 | "Last-Translator: Dimitris Kardarakos \n" 12 | "Language-Team: Greek \n" 13 | "Language: el\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Δεν υπάρχουν πληροφορίες προς αποστολή" 24 | -------------------------------------------------------------------------------- /po/it/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2019 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # Luciano Montanaro , 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-08-06 19:25+0200\n" 11 | "Last-Translator: Luciano Montanaro \n" 12 | "Language-Team: Italian \n" 13 | "Language: it\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Nessuna informazione da spedire" 24 | -------------------------------------------------------------------------------- /po/ka/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2022-07-30 21:17+0200\n" 12 | "Last-Translator: Temuri Doghonadze \n" 13 | "Language-Team: Georgian \n" 14 | "Language: ka\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "X-Generator: Poedit 3.1.1\n" 20 | 21 | #: kdeconnectsmsplugin.cpp:39 22 | #, kde-format 23 | msgid "%1 - %2" 24 | msgstr "%1 - %2" 25 | -------------------------------------------------------------------------------- /po/zh_CN/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/purpose/libpurpose6_widgets.pot\n" 18 | "X-Crowdin-File-ID: 43265\n" 19 | 20 | #: JobDialog.qml:22 21 | #, kde-format 22 | msgid "Send File" 23 | msgstr "发送文件" 24 | 25 | #: JobDialog.qml:40 26 | #, kde-format 27 | msgid "Configuration cancelled" 28 | msgstr "配置已取消" 29 | -------------------------------------------------------------------------------- /po/en_GB/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Steve Allewell , 2016. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2016-09-11 17:31+0000\n" 11 | "Last-Translator: Steve Allewell \n" 12 | "Language-Team: British English \n" 13 | "Language: en_GB\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "No information to send" 24 | -------------------------------------------------------------------------------- /po/hu/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Kristof Kiszel , 2018. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2018-09-30 21:40+0200\n" 11 | "Last-Translator: Kristof Kiszel \n" 12 | "Language-Team: Hungarian \n" 13 | "Language: hu\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Nincs elküldendő információ" 24 | -------------------------------------------------------------------------------- /po/is/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # SPDX-FileCopyrightText: 2025 Sveinn í Felli 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2025-12-02 08:00+0000\n" 11 | "Last-Translator: Sveinn í Felli \n" 12 | "Language-Team: Icelandic\n" 13 | "Language: is\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.08.5\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Engar upplýsingar til að senda" 24 | -------------------------------------------------------------------------------- /po/ml/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Malayalam translations for purpose package. 2 | # Copyright (C) 2019 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2019-05-20 02:59+0200\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് \n" 15 | "Language: ml\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: kdeconnectsmsplugin.cpp:39 22 | #, kde-format 23 | msgid "%1 - %2" 24 | msgstr "" 25 | -------------------------------------------------------------------------------- /po/sv/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Stefan Asserhäll , 2015. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2015-10-04 12:20+0100\n" 11 | "Last-Translator: Stefan Asserhäll \n" 12 | "Language-Team: Swedish \n" 13 | "Language: sv\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Ingen information att skicka" 24 | -------------------------------------------------------------------------------- /src/fileitemactionplugin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DTRANSLATION_DOMAIN="purpose6_fileitemaction") 2 | include_directories(${CMAKE_SOURCE_DIR}) 3 | 4 | set(sharefileitemaction_debug_SRCS) 5 | ecm_qt_declare_logging_category(sharefileitemaction_debug_SRCS 6 | HEADER purpose_fileitemaction_plugin_debug.h 7 | IDENTIFIER PURPOSE_FILEITEMACTION_PLUGIN_LOG 8 | CATEGORY_NAME kf.kio.widgets.fileitemactions.purpose 9 | OLD_CATEGORY_NAMES kf5.purpose.fileitemactionplugin 10 | DESCRIPTION "purpose fileitemaction plugin" 11 | EXPORT PURPOSE 12 | ) 13 | 14 | kcoreaddons_add_plugin(sharefileitemaction 15 | SOURCES sharefileitemaction.cpp ${sharefileitemaction_debug_SRCS} 16 | INSTALL_NAMESPACE "kf6/kfileitemaction") 17 | 18 | target_link_libraries(sharefileitemaction 19 | KF6::KIOWidgets 20 | KF6::I18n 21 | KF6::Notifications 22 | KF6PurposeWidgets 23 | ) 24 | -------------------------------------------------------------------------------- /po/ast/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Enol P. , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-05-03 23:15+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: JobDialog.qml:22 21 | #, kde-format 22 | msgid "Send File" 23 | msgstr "" 24 | 25 | #: JobDialog.qml:40 26 | #, kde-format 27 | msgid "Configuration cancelled" 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /po/eo/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # translation of purpose6_kdeconnectsms.pot to Esperanto 2 | # Copyright (C) 2019 Free Software Foundation, Inc. 3 | # This file is distributed under the same license as the purpose package. 4 | # Oliver Kellogg , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2023-05-08 03:24+0100\n" 12 | "Last-Translator: Oliver Kellogg \n" 13 | "Language-Team: Esperanto \n" 14 | "Language: eo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/ja/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Ryuichi Yamada , 2023. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: libpurpose_widgets\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 7 | "PO-Revision-Date: 2023-05-07 20:53+0900\n" 8 | "Last-Translator: Ryuichi Yamada \n" 9 | "Language-Team: Japanese \n" 10 | "Language: ja\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | "X-Accelerator-Marker: &\n" 16 | "X-Text-Markup: kde4\n" 17 | "X-Generator: Lokalize 22.12.3\n" 18 | 19 | #: JobDialog.qml:22 20 | #, kde-format 21 | msgid "Send File" 22 | msgstr "ファイルを送信" 23 | 24 | #: JobDialog.qml:40 25 | #, kde-format 26 | msgid "Configuration cancelled" 27 | msgstr "設定がキャンセルされました" 28 | -------------------------------------------------------------------------------- /po/ja/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Ryuichi Yamada , 2023. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: purpose-fileitemaction\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 7 | "PO-Revision-Date: 2023-05-07 20:52+0900\n" 8 | "Last-Translator: Ryuichi Yamada \n" 9 | "Language-Team: Japanese \n" 10 | "Language: ja\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | "X-Accelerator-Marker: &\n" 16 | "X-Text-Markup: kde4\n" 17 | "X-Generator: Lokalize 22.12.3\n" 18 | 19 | #: sharefileitemaction.cpp:36 20 | #, kde-format 21 | msgid "Share" 22 | msgstr "共有" 23 | 24 | #: sharefileitemaction.cpp:64 25 | #, kde-format 26 | msgid "Error sharing" 27 | msgstr "共有エラー" 28 | -------------------------------------------------------------------------------- /po/ml/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Malayalam translations for purpose package. 2 | # Copyright (C) 2019 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2019-05-20 02:59+0200\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് \n" 15 | "Language: ml\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: pastebinplugin.cpp:72 22 | #, kde-format 23 | msgid "No information to send" 24 | msgstr "" 25 | -------------------------------------------------------------------------------- /po/ro/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # Sergiu Bivol , 2022. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2022-02-04 17:52+0000\n" 11 | "Last-Translator: Sergiu Bivol \n" 12 | "Language-Team: Romanian\n" 13 | "Language: ro\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " 18 | "20)) ? 1 : 2;\n" 19 | "X-Generator: Lokalize 21.12.2\n" 20 | 21 | #: pastebinplugin.cpp:72 22 | #, kde-format 23 | msgid "No information to send" 24 | msgstr "Nicio informație de trimis" 25 | -------------------------------------------------------------------------------- /po/gl/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Adrián Chaves Fernández (Gallaecio) , 2015. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2015-10-24 11:42+0100\n" 11 | "Last-Translator: Adrián Chaves Fernández (Gallaecio) \n" 13 | "Language-Team: Galician \n" 14 | "Language: gl\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Non hai información para enviar." 24 | -------------------------------------------------------------------------------- /po/nn/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Translation of purpose6_kdeconnectsms to Norwegian Nynorsk 2 | # 3 | # Karl Ove Hufthammer , 2019. 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: purpose\n" 7 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 8 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 9 | "PO-Revision-Date: 2019-03-16 11:29+0100\n" 10 | "Last-Translator: Karl Ove Hufthammer \n" 11 | "Language-Team: Norwegian Nynorsk \n" 12 | "Language: nn\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 17 | "X-Generator: Lokalize 18.12.3\n" 18 | "X-Environment: kde\n" 19 | "X-Accelerator-Marker: &\n" 20 | "X-Text-Markup: kde4\n" 21 | 22 | #: kdeconnectsmsplugin.cpp:39 23 | #, kde-format 24 | msgid "%1 - %2" 25 | msgstr "%1 – %2" 26 | -------------------------------------------------------------------------------- /po/tg/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Victor Ibragimov , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-08-16 18:41+0500\n" 11 | "Last-Translator: Victor Ibragimov \n" 12 | "Language-Team: English \n" 13 | "Language: tg\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 19.04.3\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Ягон иттилоот барои ирсол нест" 24 | -------------------------------------------------------------------------------- /po/zh_CN/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/purpose/purpose6_fileitemaction.pot\n" 18 | "X-Crowdin-File-ID: 43325\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "分享" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "分享时发生错误" 29 | -------------------------------------------------------------------------------- /po/ast/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Enol P. , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-05-03 23:16+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.04.0\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "" 29 | -------------------------------------------------------------------------------- /po/nn/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Translation of purpose6_pastebin to Norwegian Nynorsk 2 | # 3 | # Karl Ove Hufthammer , 2018. 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: \n" 7 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 8 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 9 | "PO-Revision-Date: 2018-02-12 20:37+0100\n" 10 | "Last-Translator: Karl Ove Hufthammer \n" 11 | "Language-Team: Norwegian Nynorsk \n" 12 | "Language: nn\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 17 | "X-Generator: Lokalize 2.0\n" 18 | "X-Environment: kde\n" 19 | "X-Accelerator-Marker: &\n" 20 | "X-Text-Markup: kde4\n" 21 | 22 | #: pastebinplugin.cpp:72 23 | #, kde-format 24 | msgid "No information to send" 25 | msgstr "Ingen informasjon å senda" 26 | -------------------------------------------------------------------------------- /po/eo/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # translation of purpose6_pastebin.pot to Esperanto 2 | # Copyright (C) 2015 Free Software Foundation, Inc. 3 | # This file is distributed under the same license as the purpose package. 4 | # Oliver Kellogg , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2023-05-08 03:24+0100\n" 12 | "Last-Translator: Oliver Kellogg \n" 13 | "Language-Team: Esperanto \n" 14 | "Language: eo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Neniu informo por sendi" 24 | -------------------------------------------------------------------------------- /po/pl/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Łukasz Wojniłowicz , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-05-11 06:02+0200\n" 11 | "Last-Translator: Łukasz Wojniłowicz \n" 12 | "Language-Team: Polish \n" 13 | "Language: pl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " 18 | "|| n%100>=20) ? 1 : 2);\n" 19 | 20 | #: kdeconnectsmsplugin.cpp:39 21 | #, kde-format 22 | msgid "%1 - %2" 23 | msgstr "%1 - %2" 24 | -------------------------------------------------------------------------------- /po/ar/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Safa Alfulaij , 2018. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2018-06-10 18:04+0300\n" 11 | "Last-Translator: Safa Alfulaij \n" 12 | "Language-Team: Arabic \n" 13 | "Language: ar\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " 18 | "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "لا معلومات لإرسالها" 24 | -------------------------------------------------------------------------------- /po/fr/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Simon Depiets , 2019. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: purpose\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 7 | "PO-Revision-Date: 2019-07-21 11:19+0800\n" 8 | "Last-Translator: Simon Depiets \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 19.07.70\n" 16 | 17 | #: bluetoothplugin_config.qml:23 18 | #, kde-format 19 | msgid "Choose a device to send to:" 20 | msgstr "Choisissez un périphérique de destination :" 21 | 22 | #: bluetoothplugin_config.qml:62 23 | #, kde-format 24 | msgid "No devices found" 25 | msgstr "Aucun périphérique n'a été trouvé" 26 | -------------------------------------------------------------------------------- /po/ka/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2022-07-30 21:20+0200\n" 12 | "Last-Translator: Temuri Doghonadze \n" 13 | "Language-Team: Georgian \n" 14 | "Language: ka\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "X-Generator: Poedit 3.1.1\n" 20 | 21 | #: pastebinplugin.cpp:72 22 | #, kde-format 23 | msgid "No information to send" 24 | msgstr "გასაგზავნი ინფორმაციის გარეშე" 25 | -------------------------------------------------------------------------------- /po/id/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # wantoyo , 2018, 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-02-25 20:53+0700\n" 11 | "Last-Translator: wantoyo \n" 12 | "Language-Team: Indonesian \n" 13 | "Language: id\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: sharefileitemaction.cpp:36 20 | #, kde-format 21 | msgid "Share" 22 | msgstr "Bagikan" 23 | 24 | #: sharefileitemaction.cpp:64 25 | #, kde-format 26 | msgid "Error sharing" 27 | msgstr "Error berbagi" 28 | -------------------------------------------------------------------------------- /po/ja/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Ryuichi Yamada , 2023. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: purpose\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 7 | "PO-Revision-Date: 2023-05-07 20:52+0900\n" 8 | "Last-Translator: Ryuichi Yamada \n" 9 | "Language-Team: Japanese \n" 10 | "Language: ja\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | "X-Accelerator-Marker: &\n" 16 | "X-Text-Markup: kde4\n" 17 | "X-Generator: Lokalize 22.12.3\n" 18 | 19 | #: bluetoothplugin_config.qml:23 20 | #, kde-format 21 | msgid "Choose a device to send to:" 22 | msgstr "送信先のデバイスを選択:" 23 | 24 | #: bluetoothplugin_config.qml:62 25 | #, kde-format 26 | msgid "No devices found" 27 | msgstr "デバイスが見つかりません" 28 | -------------------------------------------------------------------------------- /po/ko/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # Shinjo Park , 2018, 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-04-12 00:47+0100\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "공유" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "공유 오류" 29 | -------------------------------------------------------------------------------- /po/lt/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Lithuanian translations for purpose package. 2 | # Copyright (C) 2019 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2019-06-21 23:18+0300\n" 12 | "Last-Translator: Moo\n" 13 | "Language-Team: lt\n" 14 | "Language: lt\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" 19 | "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" 20 | "X-Generator: Poedit 2.0.6\n" 21 | 22 | #: kdeconnectsmsplugin.cpp:39 23 | #, kde-format 24 | msgid "%1 - %2" 25 | msgstr "%1 - %2" 26 | -------------------------------------------------------------------------------- /po/lv/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # SPDX-FileCopyrightText: 2024 Toms Trasuns 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2024-12-19 09:44+0200\n" 11 | "Last-Translator: Toms Trasuns \n" 12 | "Language-Team: Latvian \n" 13 | "Language: lv\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " 18 | "2);\n" 19 | "X-Generator: Lokalize 24.12.0\n" 20 | 21 | #: kdeconnectsmsplugin.cpp:39 22 | #, kde-format 23 | msgid "%1 - %2" 24 | msgstr "%1 — %2" 25 | -------------------------------------------------------------------------------- /po/pl/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Łukasz Wojniłowicz , 2015. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2015-09-26 08:59+0100\n" 11 | "Last-Translator: Łukasz Wojniłowicz \n" 12 | "Language-Team: Polish \n" 13 | "Language: pl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " 18 | "|| n%100>=20) ? 1 : 2);\n" 19 | 20 | #: pastebinplugin.cpp:72 21 | #, kde-format 22 | msgid "No information to send" 23 | msgstr "Brak informacji do wysłania" 24 | -------------------------------------------------------------------------------- /po/bg/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: \n" 12 | "Last-Translator: mkkDr2010 \n" 13 | "Language-Team: \n" 14 | "Language: bg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Generator: Poedit 2.4.1\n" 19 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 20 | 21 | #: sharefileitemaction.cpp:36 22 | #, kde-format 23 | msgid "Share" 24 | msgstr "Споделяне" 25 | 26 | #: sharefileitemaction.cpp:64 27 | #, kde-format 28 | msgid "Error sharing" 29 | msgstr "Грешка при споделяне" 30 | -------------------------------------------------------------------------------- /po/zh_CN/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/purpose/purpose6_bluetooth.pot\n" 18 | "X-Crowdin-File-ID: 43577\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "请选择要发送到的设备:" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "没有找到设备" 29 | -------------------------------------------------------------------------------- /po/bg/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: \n" 12 | "Last-Translator: mkkDr2010 \n" 13 | "Language-Team: \n" 14 | "Language: bg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Generator: Poedit 3.0\n" 19 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 20 | 21 | #: JobDialog.qml:22 22 | #, kde-format 23 | msgid "Send File" 24 | msgstr "Изпращане на файл" 25 | 26 | #: JobDialog.qml:40 27 | #, kde-format 28 | msgid "Configuration cancelled" 29 | msgstr "Конфигурацията е отменена" 30 | -------------------------------------------------------------------------------- /po/zh_CN/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: kdeorg\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 6 | "PO-Revision-Date: 2024-04-22 15:58\n" 7 | "Last-Translator: \n" 8 | "Language-Team: Chinese Simplified\n" 9 | "Language: zh_CN\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Crowdin-Project: kdeorg\n" 15 | "X-Crowdin-Project-ID: 269464\n" 16 | "X-Crowdin-Language: zh-CN\n" 17 | "X-Crowdin-File: /kf6-trunk/messages/purpose/purpose6_kdeconnect.pot\n" 18 | "X-Crowdin-File-ID: 42945\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "请选择要发送到的设备:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "没有找到设备" 29 | -------------------------------------------------------------------------------- /po/fi/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # Tommi Nieminen , 2018, 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-03-18 20:22+0200\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: sharefileitemaction.cpp:36 20 | #, kde-format 21 | msgid "Share" 22 | msgstr "Jaa" 23 | 24 | #: sharefileitemaction.cpp:64 25 | #, kde-format 26 | msgid "Error sharing" 27 | msgstr "Virhe jaettaessa" 28 | -------------------------------------------------------------------------------- /po/he/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # SPDX-FileCopyrightText: 2024 Yaron Shahrabani 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2024-04-18 08:52+0300\n" 11 | "Last-Translator: Yaron Shahrabani \n" 12 | "Language-Team: צוות התרגום של KDE ישראל\n" 13 | "Language: he\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " 18 | "n % 10 == 0) ? 2 : 3));\n" 19 | "X-Generator: Lokalize 23.08.5\n" 20 | 21 | #: kdeconnectsmsplugin.cpp:39 22 | #, kde-format 23 | msgid "%1 - %2" 24 | msgstr "%1 - %2" 25 | -------------------------------------------------------------------------------- /po/ja/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Ryuichi Yamada , 2023. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: purpose_kdeconnect\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 7 | "PO-Revision-Date: 2023-05-07 20:52+0900\n" 8 | "Last-Translator: Ryuichi Yamada \n" 9 | "Language-Team: Japanese \n" 10 | "Language: ja\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | "X-Accelerator-Marker: &\n" 16 | "X-Text-Markup: kde4\n" 17 | "X-Generator: Lokalize 22.12.3\n" 18 | 19 | #: kdeconnectplugin_config.qml:22 20 | #, kde-format 21 | msgid "Choose a device to send to:" 22 | msgstr "送信先のデバイスを選択:" 23 | 24 | #: kdeconnectplugin_config.qml:63 25 | #, kde-format 26 | msgid "No devices found" 27 | msgstr "デバイスが見つかりません" 28 | -------------------------------------------------------------------------------- /po/fr/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Simon Depiets , 2019. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: purpose-fileitemaction\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 7 | "PO-Revision-Date: 2019-03-06 13:02+0800\n" 8 | "Last-Translator: Simon Depiets \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 19.03.70\n" 16 | "X-Environment: kde\n" 17 | "X-Accelerator-Marker: &\n" 18 | "X-Text-Markup: kde4\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Partager" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Erreur lors du partage" 29 | -------------------------------------------------------------------------------- /po/pa/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-04-01 21:21-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: JobDialog.qml:22 21 | #, kde-format 22 | msgid "Send File" 23 | msgstr "ਫਾਇਲ ਭੇਜੋ" 24 | 25 | #: JobDialog.qml:40 26 | #, kde-format 27 | msgid "Configuration cancelled" 28 | msgstr "ਸੰਰਚਨਾ ਰੱਦ ਕੀਤੀ ਗਈ" 29 | -------------------------------------------------------------------------------- /po/he/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # SPDX-FileCopyrightText: 2024 Yaron Shahrabani 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2024-04-18 08:52+0300\n" 11 | "Last-Translator: Yaron Shahrabani \n" 12 | "Language-Team: צוות התרגום של KDE ישראל\n" 13 | "Language: he\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " 18 | "n % 10 == 0) ? 2 : 3));\n" 19 | "X-Generator: Lokalize 23.08.5\n" 20 | 21 | #: pastebinplugin.cpp:72 22 | #, kde-format 23 | msgid "No information to send" 24 | msgstr "אין מידע לשליחה" 25 | -------------------------------------------------------------------------------- /po/lv/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # SPDX-FileCopyrightText: 2024 Toms Trasuns 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2024-12-19 09:44+0200\n" 11 | "Last-Translator: Toms Trasuns \n" 12 | "Language-Team: Latvian \n" 13 | "Language: lv\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " 18 | "2);\n" 19 | "X-Generator: Lokalize 24.12.0\n" 20 | 21 | #: pastebinplugin.cpp:72 22 | #, kde-format 23 | msgid "No information to send" 24 | msgstr "Nav informācijas, ko sūtīt" 25 | -------------------------------------------------------------------------------- /po/sa/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for purpose package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:09+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "संविभागः" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "त्रुटिसाझेदारी" 29 | -------------------------------------------------------------------------------- /po/sl/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Slovenian translation of purpose 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # 5 | # Matjaž Jeran , 2019. 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2020-01-23 15:58+0100\n" 12 | "Last-Translator: Matjaž Jeran \n" 13 | "Language-Team: Slovenian \n" 14 | "Language: sl\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" 19 | "%100==4 ? 3 : 0);\n" 20 | "X-Generator: Poedit 2.2.4\n" 21 | 22 | #: kdeconnectsmsplugin.cpp:39 23 | #, kde-format 24 | msgid "%1 - %2" 25 | msgstr "%1 - %2" 26 | -------------------------------------------------------------------------------- /po/zh_TW/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # pan93412 , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-02-23 20:40+0800\n" 11 | "Last-Translator: pan93412 \n" 12 | "Language-Team: Chinese \n" 13 | "Language: zh_TW\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 18.12.2\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "分享" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "進行分享時發生錯誤" 29 | -------------------------------------------------------------------------------- /po/az/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Xəyyam , 2020. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2020-05-02 23:12+0400\n" 11 | "Last-Translator: Xəyyam \n" 12 | "Language-Team: Azerbaijani \n" 13 | "Language: az\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 20.04.0\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Paylaş" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Paylaşmada səhv" 29 | -------------------------------------------------------------------------------- /po/hi/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for purpose package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2024-12-15 17:35+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "शेयर करना" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "साझा करने में त्रुटि" 29 | -------------------------------------------------------------------------------- /po/pa/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-04-01 21:20-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "ਸਾਂਝਾ ਕਰੋ" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "ਸਾਂਝਾ ਕਰਨ ਲਈ ਗਲਤੀ" 29 | -------------------------------------------------------------------------------- /po/ru/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Alexander Yavorsky , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-05-15 19:24+0300\n" 11 | "Last-Translator: Alexander Yavorsky \n" 12 | "Language-Team: Russian \n" 13 | "Language: ru\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" 18 | "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 19 | "X-Generator: Lokalize 19.04.1\n" 20 | 21 | #: kdeconnectsmsplugin.cpp:39 22 | #, kde-format 23 | msgid "%1 - %2" 24 | msgstr "%1 — %2" 25 | -------------------------------------------------------------------------------- /po/sa/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for purpose package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:09+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: JobDialog.qml:22 21 | #, kde-format 22 | msgid "Send File" 23 | msgstr "सञ्चिका प्रेषयतु" 24 | 25 | #: JobDialog.qml:40 26 | #, kde-format 27 | msgid "Configuration cancelled" 28 | msgstr "विन्यासः रद्दः अभवत्" 29 | -------------------------------------------------------------------------------- /po/el/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Stelios , 2020, 2021. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2021-10-23 08:48+0300\n" 11 | "Last-Translator: Stelios \n" 12 | "Language-Team: Greek \n" 13 | "Language: el\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 20.04.2\n" 19 | 20 | #: JobDialog.qml:22 21 | #, kde-format 22 | msgid "Send File" 23 | msgstr "Αποστολή αρχείου" 24 | 25 | #: JobDialog.qml:40 26 | #, kde-format 27 | msgid "Configuration cancelled" 28 | msgstr "Η διαμόρφωση ακυρώθηκε" 29 | -------------------------------------------------------------------------------- /po/el/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Stelios , 2020. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2020-10-21 12:20+0300\n" 11 | "Last-Translator: Stelios \n" 12 | "Language-Team: Greek \n" 13 | "Language: el\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 20.04.2\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Διαμοιρασμός" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Σφάλμα διαμοιρασμού" 29 | -------------------------------------------------------------------------------- /po/et/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Marek Laane , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-11-08 19:08+0200\n" 11 | "Last-Translator: Marek Laane \n" 12 | "Language-Team: Estonian \n" 13 | "Language: et\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 19.08.1\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Jaga" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Tõrge jagamisel" 29 | -------------------------------------------------------------------------------- /po/gl/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Adrián Chaves (Gallaecio) , 2018, 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-02-23 09:12+0100\n" 11 | "Last-Translator: Adrián Chaves (Gallaecio) \n" 12 | "Language-Team: Galician \n" 13 | "Language: gl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | 19 | #: sharefileitemaction.cpp:36 20 | #, kde-format 21 | msgid "Share" 22 | msgstr "Compartir" 23 | 24 | #: sharefileitemaction.cpp:64 25 | #, kde-format 26 | msgid "Error sharing" 27 | msgstr "Erro ao compartir" 28 | -------------------------------------------------------------------------------- /po/hi/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for purpose package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2024-12-15 17:35+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: JobDialog.qml:22 21 | #, kde-format 22 | msgid "Send File" 23 | msgstr "लेख्यपत्र भेज दें" 24 | 25 | #: JobDialog.qml:40 26 | #, kde-format 27 | msgid "Configuration cancelled" 28 | msgstr "कॉन्फ़िगरेशन रद्द किया गया" 29 | -------------------------------------------------------------------------------- /po/lt/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Lithuanian translations for purpose package. 2 | # Copyright (C) 2019 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2019-07-11 20:52+0300\n" 12 | "Last-Translator: Moo\n" 13 | "Language-Team: lt\n" 14 | "Language: lt\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" 19 | "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" 20 | "X-Generator: Poedit 2.2.1\n" 21 | 22 | #: pastebinplugin.cpp:72 23 | #, kde-format 24 | msgid "No information to send" 25 | msgstr "Nėra jokios informacijos, kurią siųsti" 26 | -------------------------------------------------------------------------------- /po/pt_BR/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Translation of purpose_kdeconnectsms.po to Brazilian Portuguese 2 | # Copyright (C) 2019 This_file_is_part_of_KDE 3 | # This file is distributed under the same license as the purpose package. 4 | # 5 | # André Marcelo Alvarenga , 2019. 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2019-03-31 23:03-0300\n" 12 | "Last-Translator: André Marcelo Alvarenga \n" 13 | "Language-Team: Brazilian Portuguese \n" 14 | "Language: pt_BR\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 19 | "X-Generator: Lokalize 18.12.3\n" 20 | 21 | #: kdeconnectsmsplugin.cpp:39 22 | #, kde-format 23 | msgid "%1 - %2" 24 | msgstr "%1 - %2" 25 | -------------------------------------------------------------------------------- /po/ta/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Kishore G , 2021. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2021-08-03 22:02+0530\n" 11 | "Last-Translator: Kishore G \n" 12 | "Language-Team: Tamil \n" 13 | "Language: ta\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 21.07.90\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "பகிர்" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "பகிர்வதில் சிக்கல்" 29 | -------------------------------------------------------------------------------- /po/tr/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Emir SARI , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2022-04-13 12:18+0300\n" 11 | "Last-Translator: Emir SARI \n" 12 | "Language-Team: Turkish \n" 13 | "Language: tr\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | "X-Generator: Lokalize 21.12.3\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Paylaş" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Paylaşırken hata" 29 | -------------------------------------------------------------------------------- /po/ko/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # Shinjo Park , 2018. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2018-08-14 23:20+0100\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "보낼 장치 선택:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "장치를 찾을 수 없음" 29 | -------------------------------------------------------------------------------- /po/de/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # SPDX-FileCopyrightText: 2018, 2019 Burkhard Lück 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: purpose6_fileitemaction\n" 7 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 8 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 9 | "PO-Revision-Date: 2019-08-09 03:55+0200\n" 10 | "Last-Translator: Burkhard Lück \n" 11 | "Language-Team: German \n" 12 | "Language: de\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 | 18 | #: sharefileitemaction.cpp:36 19 | #, kde-format 20 | msgid "Share" 21 | msgstr "Teilen" 22 | 23 | #: sharefileitemaction.cpp:64 24 | #, kde-format 25 | msgid "Error sharing" 26 | msgstr "Fehler beim Teilen" 27 | -------------------------------------------------------------------------------- /po/ia/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Giovanni Sora , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-12-24 23:10+0100\n" 11 | "Last-Translator: Giovanni Sora \n" 12 | "Language-Team: Interlingua \n" 13 | "Language: ia\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Comparti" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Compartir de error" 29 | -------------------------------------------------------------------------------- /po/ko/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # Shinjo Park , 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-07-24 00:05+0200\n" 11 | "Last-Translator: Shinjo Park \n" 12 | "Language-Team: Korean \n" 13 | "Language: ko\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 18.12.3\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "보낼 장치 선택:" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "장치를 찾을 수 없음" 29 | -------------------------------------------------------------------------------- /po/nl/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Freek de Kruijf , 2018, 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-02-22 11:11+0100\n" 11 | "Last-Translator: Freek de Kruijf \n" 12 | "Language-Team: Dutch \n" 13 | "Language: nl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 18.12.2\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Delen" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Fout bij delen" 29 | -------------------------------------------------------------------------------- /po/da/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Martin Schlander , 2018, 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-05-07 12:28+0100\n" 11 | "Last-Translator: Martin Schlander \n" 12 | "Language-Team: Danish \n" 13 | "Language: da\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Del" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Fejl ved deling" 29 | -------------------------------------------------------------------------------- /po/it/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the purpose package. 3 | # Paolo Zamponi , 2018, 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-02-28 09:43+0100\n" 11 | "Last-Translator: Paolo Zamponi \n" 12 | "Language-Team: Italian \n" 13 | "Language: it\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 18.12.2\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Condivisione" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Errore di condivisione" 29 | -------------------------------------------------------------------------------- /po/pt/purpose6_saveas.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: purpose_saveas\n" 4 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 5 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 6 | "PO-Revision-Date: 2018-05-28 11:39+0100\n" 7 | "Last-Translator: José Nuno Coelho Pires \n" 8 | "Language-Team: Portuguese \n" 9 | "Language: pt\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | 15 | #: saveasplugin.cpp:45 16 | #, kde-format 17 | msgid "No URLs to save" 18 | msgstr "Sem URL's para gravar" 19 | 20 | #: saveasplugin_config.qml:19 21 | #, kde-format 22 | msgid "Save directory:" 23 | msgstr "Pasta de gravação:" 24 | 25 | #: saveasplugin_config.qml:32 26 | #, kde-format 27 | msgid "Select a directory where to save your pictures and videos" 28 | msgstr "Seleccione uma pasta onde gravar as suas imagens e vídeos" 29 | -------------------------------------------------------------------------------- /po/sk/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # translation of purpose_bluetooth.po to Slovak 2 | # Roman Paholík , 2019. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: purpose_bluetooth\n" 6 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 7 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 8 | "PO-Revision-Date: 2019-07-20 21:30+0200\n" 9 | "Last-Translator: Roman Paholík \n" 10 | "Language-Team: Slovak \n" 11 | "Language: sk\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Lokalize 18.12.3\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | 18 | #: bluetoothplugin_config.qml:23 19 | #, kde-format 20 | msgid "Choose a device to send to:" 21 | msgstr "Vyberte zariadenie na odoslanie:" 22 | 23 | #: bluetoothplugin_config.qml:62 24 | #, kde-format 25 | msgid "No devices found" 26 | msgstr "Nenašli sa zariadenia" 27 | -------------------------------------------------------------------------------- /po/sl/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Slovenian translation of purpose 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # 5 | # Matjaž Jeran , 2019. 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2020-01-23 15:58+0100\n" 12 | "Last-Translator: Matjaž Jeran \n" 13 | "Language-Team: Slovenian \n" 14 | "Language: sl\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" 19 | "%100==4 ? 3 : 0);\n" 20 | "X-Generator: Poedit 2.2.4\n" 21 | 22 | #: pastebinplugin.cpp:72 23 | #, kde-format 24 | msgid "No information to send" 25 | msgstr "Ni informacij za pošiljanje" 26 | -------------------------------------------------------------------------------- /po/ta/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Kishore G , 2021, 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-04-02 16:46+0530\n" 11 | "Last-Translator: Kishore G \n" 12 | "Language-Team: Tamil \n" 13 | "Language: ta\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.03.90\n" 19 | 20 | #: JobDialog.qml:22 21 | #, kde-format 22 | msgid "Send File" 23 | msgstr "கோப்பை அனுப்பு" 24 | 25 | #: JobDialog.qml:40 26 | #, kde-format 27 | msgid "Configuration cancelled" 28 | msgstr "அமைத்தல் ரத்து செய்யப்பட்டது" 29 | -------------------------------------------------------------------------------- /po/ast/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2023 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # SPDX-FileCopyrightText: 2023 Enol P. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-10-26 00:43+0200\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.08.2\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Nun s'atopó nengún preséu" 29 | -------------------------------------------------------------------------------- /po/ast/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2023 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # SPDX-FileCopyrightText: 2023 Enol P. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-11-12 00:40+0100\n" 11 | "Last-Translator: Enol P. \n" 12 | "Language-Team: \n" 13 | "Language: ast\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.08.2\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Nun s'atopó nengún preséu" 29 | -------------------------------------------------------------------------------- /po/cs/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # Vít Pelčák , 2015, 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-07-31 13:49+0200\n" 11 | "Last-Translator: Vit Pelcak \n" 12 | "Language-Team: Czech \n" 13 | "Language: cs\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 18 | "X-Generator: Lokalize 19.04.3\n" 19 | 20 | #: JobDialog.qml:22 21 | #, kde-format 22 | msgid "Send File" 23 | msgstr "Poslat soubor" 24 | 25 | #: JobDialog.qml:40 26 | #, kde-format 27 | msgid "Configuration cancelled" 28 | msgstr "Nastavení bylo zrušeno" 29 | -------------------------------------------------------------------------------- /po/cs/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # Vit Pelcak , 2018, 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-07-31 13:52+0200\n" 11 | "Last-Translator: Vit Pelcak \n" 12 | "Language-Team: Czech \n" 13 | "Language: cs\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 18 | "X-Generator: Lokalize 19.04.3\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Sdílet" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Chyba při sdílení" 29 | -------------------------------------------------------------------------------- /po/is/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # SPDX-FileCopyrightText: 2025 Sveinn í Felli 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2025-12-02 08:03+0000\n" 11 | "Last-Translator: Sveinn í Felli \n" 12 | "Language-Team: Icelandic\n" 13 | "Language: is\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.08.5\n" 19 | 20 | #: JobDialog.qml:22 21 | #, kde-format 22 | msgid "Send File" 23 | msgstr "Senda skrá" 24 | 25 | #: JobDialog.qml:40 26 | #, kde-format 27 | msgid "Configuration cancelled" 28 | msgstr "Hætt við grunnstillingar" 29 | -------------------------------------------------------------------------------- /po/is/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # SPDX-FileCopyrightText: 2025 Sveinn í Felli 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2025-12-02 09:00+0000\n" 11 | "Last-Translator: Sveinn í Felli \n" 12 | "Language-Team: Icelandic\n" 13 | "Language: is\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.08.5\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Deila" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Villa við deilingu" 29 | -------------------------------------------------------------------------------- /po/ml/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Malayalam translations for purpose package. 2 | # Copyright (C) 2019 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2019-06-24 02:53+0200\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് \n" 15 | "Language: ml\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: JobDialog.qml:22 22 | #, kde-format 23 | msgid "Send File" 24 | msgstr "" 25 | 26 | #: JobDialog.qml:40 27 | #, kde-format 28 | msgid "Configuration cancelled" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /po/ru/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Alexander Potashev , 2015. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2015-09-25 22:28+0300\n" 11 | "Last-Translator: Alexander Potashev \n" 12 | "Language-Team: Russian \n" 13 | "Language: ru\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" 18 | "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 19 | "X-Generator: Lokalize 2.0\n" 20 | 21 | #: pastebinplugin.cpp:72 22 | #, kde-format 23 | msgid "No information to send" 24 | msgstr "Отсутствуют данные для отправки" 25 | -------------------------------------------------------------------------------- /po/sv/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Stefan Asserhäll , 2018, 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-02-22 16:34+0100\n" 11 | "Last-Translator: Stefan Asserhäll \n" 12 | "Language-Team: Swedish \n" 13 | "Language: sv\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Dela" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Fel vid delning" 29 | -------------------------------------------------------------------------------- /po/pt_BR/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Translation of purpose_pastebin.po to Brazilian Portuguese 2 | # Copyright (C) 2015 This_file_is_part_of_KDE 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # 5 | # André Marcelo Alvarenga , 2015. 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose_pastebin\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2015-09-28 08:23-0300\n" 12 | "Last-Translator: André Marcelo Alvarenga \n" 13 | "Language-Team: Brazilian Portuguese \n" 14 | "Language: pt_BR\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 19 | "X-Generator: Lokalize 1.5\n" 20 | 21 | #: pastebinplugin.cpp:72 22 | #, kde-format 23 | msgid "No information to send" 24 | msgstr "Nenhuma informação a enviar" 25 | -------------------------------------------------------------------------------- /po/sk/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # translation of purpose-fileitemaction.po to Slovak 2 | # Roman Paholik , 2018. 3 | # Matej Mrenica , 2019. 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: purpose-fileitemaction\n" 7 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 8 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 9 | "PO-Revision-Date: 2019-07-05 10:43+0200\n" 10 | "Last-Translator: Matej Mrenica \n" 11 | "Language-Team: Slovak \n" 12 | "Language: sk\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "X-Generator: Lokalize 19.04.2\n" 17 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 18 | 19 | #: sharefileitemaction.cpp:36 20 | #, kde-format 21 | msgid "Share" 22 | msgstr "Zdieľať" 23 | 24 | #: sharefileitemaction.cpp:64 25 | #, kde-format 26 | msgid "Error sharing" 27 | msgstr "Chyba zdieľania" 28 | -------------------------------------------------------------------------------- /po/zh_TW/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # pan93412 , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-01-04 00:31+0800\n" 11 | "Last-Translator: pan93412 \n" 12 | "Language-Team: Chinese \n" 13 | "Language: zh_TW\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | "X-Generator: Lokalize 18.12.0\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "選擇要傳送到的裝置:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "未找到裝置" 29 | -------------------------------------------------------------------------------- /po/ar/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Zayed Al-Saidi , 2021. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2021-12-18 23:17+0400\n" 11 | "Last-Translator: Zayed Al-Saidi \n" 12 | "Language-Team: ar\n" 13 | "Language: ar\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " 18 | "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "شارك" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "خطأ في المشاركة" 29 | -------------------------------------------------------------------------------- /po/ml/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Malayalam translations for purpose package. 2 | # Copyright (C) 2019 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2019-06-23 02:56+0200\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് \n" 15 | "Language: ml\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: sharefileitemaction.cpp:36 22 | #, kde-format 23 | msgid "Share" 24 | msgstr "" 25 | 26 | #: sharefileitemaction.cpp:64 27 | #, kde-format 28 | msgid "Error sharing" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /po/ro/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # Sergiu Bivol , 2022. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2022-02-04 17:49+0000\n" 11 | "Last-Translator: Sergiu Bivol \n" 12 | "Language-Team: Romanian\n" 13 | "Language: ro\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " 18 | "20)) ? 1 : 2;\n" 19 | "X-Generator: Lokalize 21.12.2\n" 20 | 21 | #: JobDialog.qml:22 22 | #, kde-format 23 | msgid "Send File" 24 | msgstr "Trimite fișier" 25 | 26 | #: JobDialog.qml:40 27 | #, kde-format 28 | msgid "Configuration cancelled" 29 | msgstr "Configurare anulată" 30 | -------------------------------------------------------------------------------- /po/en_GB/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Steve Allewell , 2018, 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-03-24 19:22+0000\n" 11 | "Last-Translator: Steve Allewell \n" 12 | "Language-Team: British English \n" 13 | "Language: en_GB\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 19.07.70\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Share" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Error sharing" 29 | -------------------------------------------------------------------------------- /po/fi/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # Tommi Nieminen , 2018. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2018-07-12 17:29+0200\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: kdeconnectplugin_config.qml:22 20 | #, kde-format 21 | msgid "Choose a device to send to:" 22 | msgstr "Valitse laite, jolle lähetetään:" 23 | 24 | #: kdeconnectplugin_config.qml:63 25 | #, kde-format 26 | msgid "No devices found" 27 | msgstr "Laitteita ei löytynyt" 28 | -------------------------------------------------------------------------------- /po/pa/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-04-01 21:20-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "ਭੇਜਣ ਲਈ ਡਿਵਾਈਸ ਚੁਣੋ:" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "ਕੋਈ ਡਿਵਾਈਸ ਨਹੀਂ ਲੱਭਿਆ" 29 | -------------------------------------------------------------------------------- /po/tg/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Victor Ibragimov , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-08-16 18:46+0500\n" 11 | "Last-Translator: Victor Ibragimov \n" 12 | "Language-Team: English \n" 13 | "Language: tg\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 19.04.3\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Мубодила кардан" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Хатои мубодила" 29 | -------------------------------------------------------------------------------- /po/el/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Stelios , 2020. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2020-10-21 12:31+0300\n" 11 | "Last-Translator: Stelios \n" 12 | "Language-Team: Greek \n" 13 | "Language: el\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 20.04.2\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Επιλέξτε συσκευή προορισμού:" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Δεν βρέθηκαν συσκευές" 29 | -------------------------------------------------------------------------------- /po/es/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Spanish translations for purpose6_kdeconnectsms.po package. 2 | # Copyright (C) 2019-2025 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Automatically generated, 2019. 5 | # 6 | # SPDX-FileCopyrightText: 2019, 2025 Eloy Cuadra 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: purpose6_kdeconnectsms\n" 10 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 11 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 12 | "PO-Revision-Date: 2025-06-04 20:04+0100\n" 13 | "Last-Translator: Eloy Cuadra \n" 14 | "Language-Team: Spanish \n" 15 | "Language: es\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 20 | "X-Generator: Lokalize 18.12.3\n" 21 | 22 | #: kdeconnectsmsplugin.cpp:39 23 | #, kde-format 24 | msgid "%1 - %2" 25 | msgstr "%1 - %2" 26 | -------------------------------------------------------------------------------- /po/fi/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # Tommi Nieminen , 2019. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-08-27 21:32+0300\n" 11 | "Last-Translator: Tommi Nieminen \n" 12 | "Language-Team: Finnish \n" 13 | "Language: fi\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: bluetoothplugin_config.qml:23 20 | #, kde-format 21 | msgid "Choose a device to send to:" 22 | msgstr "Valitse laite, jolle lähetetään:" 23 | 24 | #: bluetoothplugin_config.qml:62 25 | #, kde-format 26 | msgid "No devices found" 27 | msgstr "Laitteita ei löytynyt" 28 | -------------------------------------------------------------------------------- /po/pa/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # A S Alam , 2023. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2023-04-01 21:20-0700\n" 11 | "Last-Translator: A S Alam \n" 12 | "Language-Team: Punjabi \n" 13 | "Language: pa\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 22.12.3\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "ਭੇਜਣ ਲਈ ਡਿਵਾਈਸ ਚੁਣੋ:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "ਕੋਈ ਡਿਵਾਈਸ ਨਹੀਂ ਲੱਭਿਆ" 29 | -------------------------------------------------------------------------------- /po/sa/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for purpose package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:09+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "प्रेषयितुं यन्त्रं चिनोतु:" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "न यन्त्राणि प्राप्तानि" 29 | -------------------------------------------------------------------------------- /po/el/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Stelios , 2020. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2020-10-21 12:35+0300\n" 11 | "Last-Translator: Stelios \n" 12 | "Language-Team: Greek \n" 13 | "Language: el\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 20.04.2\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Επιλέξτε συσκευή προορισμού:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Δεν βρέθηκαν συσκευές" 29 | -------------------------------------------------------------------------------- /po/eo/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # translation of libpurpose6_widgets.pot to Esperanto 2 | # Copyright (C) 2015 Free Software Foundation, Inc. 3 | # This file is distributed under the same license as the purpose package. 4 | # Oliver Kellogg , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2023-05-08 03:24+0100\n" 12 | "Last-Translator: Oliver Kellogg \n" 13 | "Language-Team: Esperanto \n" 14 | "Language: eo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 19 | 20 | #: JobDialog.qml:22 21 | #, kde-format 22 | msgid "Send File" 23 | msgstr "Sendi dosieron" 24 | 25 | #: JobDialog.qml:40 26 | #, kde-format 27 | msgid "Configuration cancelled" 28 | msgstr "Agordo nuligita" 29 | -------------------------------------------------------------------------------- /po/hi/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for purpose package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2024-12-15 17:35+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "भेजने के लिए कोई डिवाइस चुनें:" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "कोई यंत्र नहीं मिले" 29 | -------------------------------------------------------------------------------- /po/hi/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for purpose package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2024-12-15 17:35+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Hindi \n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n!=1);\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "भेजने के लिए कोई डिवाइस चुनें:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "कोई यंत्र नहीं मिले" 29 | -------------------------------------------------------------------------------- /po/ka/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2022-07-30 21:05+0200\n" 12 | "Last-Translator: Temuri Doghonadze \n" 13 | "Language-Team: Georgian \n" 14 | "Language: ka\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "X-Generator: Poedit 3.1.1\n" 20 | 21 | #: JobDialog.qml:22 22 | #, kde-format 23 | msgid "Send File" 24 | msgstr "ფაილის გაგზავნა" 25 | 26 | #: JobDialog.qml:40 27 | #, kde-format 28 | msgid "Configuration cancelled" 29 | msgstr "კონფიგურაცის გაუქმდა" 30 | -------------------------------------------------------------------------------- /po/nn/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Translation of libpurpose6_widgets to Norwegian Nynorsk 2 | # 3 | # Karl Ove Hufthammer , 2018, 2019, 2023. 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: \n" 7 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 8 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 9 | "PO-Revision-Date: 2023-03-04 17:11+0100\n" 10 | "Last-Translator: Karl Ove Hufthammer \n" 11 | "Language-Team: Norwegian Nynorsk \n" 12 | "Language: nn\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 17 | "X-Generator: Lokalize 22.12.2\n" 18 | "X-Environment: kde\n" 19 | "X-Accelerator-Marker: &\n" 20 | "X-Text-Markup: kde4\n" 21 | 22 | #: JobDialog.qml:22 23 | #, kde-format 24 | msgid "Send File" 25 | msgstr "Send fil" 26 | 27 | #: JobDialog.qml:40 28 | #, kde-format 29 | msgid "Configuration cancelled" 30 | msgstr "Oppsett avbrote" 31 | -------------------------------------------------------------------------------- /po/sa/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Sanskrit translations for purpose package. 2 | # Copyright (C) 2024 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Kali , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2024-12-13 19:09+0530\n" 12 | "Last-Translator: Kali \n" 13 | "Language-Team: Sanskrit \n" 14 | "Language: sa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n>2);\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "प्रेषयितुं यन्त्रं चिनोतु:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "न यन्त्राणि प्राप्तानि" 29 | -------------------------------------------------------------------------------- /po/az/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Xəyyam , 2020. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2020-05-02 22:59+0400\n" 11 | "Last-Translator: Xəyyam \n" 12 | "Language-Team: Azerbaijani \n" 13 | "Language: az\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 20.04.0\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Hansı qurğuya göndərəcəyinizi seçin:" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Qurğu tapılmadı" 29 | -------------------------------------------------------------------------------- /po/az/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Xəyyam , 2020. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2020-05-02 23:04+0400\n" 11 | "Last-Translator: Xəyyam \n" 12 | "Language-Team: Azerbaijani \n" 13 | "Language: az\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 20.04.0\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Hansı qurğuya göndərəcəyinizi seçin:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Qurğu tapılmadı" 29 | -------------------------------------------------------------------------------- /po/es/purpose6_pastebin.po: -------------------------------------------------------------------------------- 1 | # Spanish translations for purpose6_pastebin.po package. 2 | # Copyright (C) 2015-2025 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # Automatically generated, 2015. 5 | # 6 | # SPDX-FileCopyrightText: 2015, 2025 Eloy Cuadra 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: purpose6_pastebin\n" 10 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 11 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 12 | "PO-Revision-Date: 2025-06-04 20:05+0100\n" 13 | "Last-Translator: Eloy Cuadra \n" 14 | "Language-Team: Spanish \n" 15 | "Language: es\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 20 | "X-Generator: Lokalize 1.5\n" 21 | 22 | #: pastebinplugin.cpp:72 23 | #, kde-format 24 | msgid "No information to send" 25 | msgstr "No hay información a enviar" 26 | -------------------------------------------------------------------------------- /po/et/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Marek Laane , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-11-08 18:41+0200\n" 11 | "Last-Translator: Marek Laane \n" 12 | "Language-Team: Estonian \n" 13 | "Language: et\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 19.08.1\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Seade, kuhu saata:" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Ühtegi seadet ei leitud" 29 | -------------------------------------------------------------------------------- /po/et/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Marek Laane , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-11-08 18:44+0200\n" 11 | "Last-Translator: Marek Laane \n" 12 | "Language-Team: Estonian \n" 13 | "Language: et\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 19.08.1\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Seade, kuhu saata:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Ühtegi seadet ei leitud" 29 | -------------------------------------------------------------------------------- /po/ka/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2022-07-30 21:30+0200\n" 12 | "Last-Translator: Temuri Doghonadze \n" 13 | "Language-Team: Georgian \n" 14 | "Language: ka\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "X-Generator: Poedit 3.1.1\n" 20 | 21 | #: sharefileitemaction.cpp:36 22 | #, kde-format 23 | msgid "Share" 24 | msgstr "გაზიარება" 25 | 26 | #: sharefileitemaction.cpp:64 27 | #, kde-format 28 | msgid "Error sharing" 29 | msgstr "გაზიარების შეცდომა" 30 | -------------------------------------------------------------------------------- /po/nn/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Translation of purpose6_fileitemaction to Norwegian Nynorsk 2 | # 3 | # Karl Ove Hufthammer , 2018, 2019. 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: \n" 7 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 8 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 9 | "PO-Revision-Date: 2019-03-09 23:08+0100\n" 10 | "Last-Translator: Karl Ove Hufthammer \n" 11 | "Language-Team: Norwegian Nynorsk \n" 12 | "Language: nn\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 17 | "X-Generator: Lokalize 19.03.70\n" 18 | "X-Environment: kde\n" 19 | "X-Accelerator-Marker: &\n" 20 | "X-Text-Markup: kde4\n" 21 | 22 | #: sharefileitemaction.cpp:36 23 | #, kde-format 24 | msgid "Share" 25 | msgstr "Del" 26 | 27 | #: sharefileitemaction.cpp:64 28 | #, kde-format 29 | msgid "Error sharing" 30 | msgstr "Feil ved deling" 31 | -------------------------------------------------------------------------------- /po/tr/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Emir SARI , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2022-04-13 12:24+0300\n" 11 | "Last-Translator: Emir SARI \n" 12 | "Language-Team: Turkish \n" 13 | "Language: tr\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | "X-Generator: Lokalize 21.12.3\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Gönderilecek bir aygıt seçin:" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Aygıt bulunamadı" 29 | -------------------------------------------------------------------------------- /po/eo/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # translation of purpose6_fileitemaction.pot to Esperanto 2 | # Copyright (C) 2018 Free Software Foundation, Inc. 3 | # This file is distributed under the same license as the purpose package. 4 | # Oliver Kellogg , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: purpose\n" 9 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 10 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 11 | "PO-Revision-Date: 2023-05-08 03:24+0100\n" 12 | "Last-Translator: Oliver Kellogg \n" 13 | "Language-Team: Esperanto \n" 14 | "Language: eo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 19 | 20 | #: sharefileitemaction.cpp:36 21 | #, kde-format 22 | msgid "Share" 23 | msgstr "Kunhavigi" 24 | 25 | #: sharefileitemaction.cpp:64 26 | #, kde-format 27 | msgid "Error sharing" 28 | msgstr "Eraro kunhavigante" 29 | -------------------------------------------------------------------------------- /po/fr/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Simon Depiets , 2018. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: purpose_kdeconnect\n" 5 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 6 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 7 | "PO-Revision-Date: 2018-06-05 14:39+0800\n" 8 | "Last-Translator: Simon Depiets \n" 9 | "Language-Team: French \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Generator: Lokalize 2.0\n" 16 | "X-Environment: kde\n" 17 | "X-Accelerator-Marker: &\n" 18 | "X-Text-Markup: kde4\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Choisissez un périphérique de destination :" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Aucun périphérique n'a été trouvé" 29 | -------------------------------------------------------------------------------- /po/ro/purpose6_fileitemaction.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # Sergiu Bivol , 2024. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2022-02-04 17:54+0000\n" 11 | "Last-Translator: Sergiu Bivol \n" 12 | "Language-Team: Romanian \n" 13 | "Language: ro\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " 18 | "20)) ? 1 : 2;\n" 19 | "X-Generator: Lokalize 21.12.3\n" 20 | 21 | #: sharefileitemaction.cpp:36 22 | #, kde-format 23 | msgid "Share" 24 | msgstr "Partajează" 25 | 26 | #: sharefileitemaction.cpp:64 27 | #, kde-format 28 | msgid "Error sharing" 29 | msgstr "Eroare la partajare" 30 | -------------------------------------------------------------------------------- /po/de/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # SPDX-FileCopyrightText: 2019 Burkhard Lück 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: purpose6_bluetooth\n" 7 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 8 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 9 | "PO-Revision-Date: 2019-08-05 07:11+0200\n" 10 | "Last-Translator: Burkhard Lück \n" 11 | "Language-Team: German \n" 12 | "Language: de\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 | 18 | #: bluetoothplugin_config.qml:23 19 | #, kde-format 20 | msgid "Choose a device to send to:" 21 | msgstr "Wählen Sie ein Gerät an das gesendet wird:" 22 | 23 | #: bluetoothplugin_config.qml:62 24 | #, kde-format 25 | msgid "No devices found" 26 | msgstr "Keine Geräte gefunden" 27 | -------------------------------------------------------------------------------- /po/hu/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Kristóf Kiszel , 2020. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2020-12-28 14:43+0100\n" 11 | "Last-Translator: Kristóf Kiszel \n" 12 | "Language-Team: Hungarian \n" 13 | "Language: hu\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 21.03.70\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Céleszköz:" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Nem találhatók eszközök" 29 | -------------------------------------------------------------------------------- /po/hu/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Kristof Kiszel , 2018. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2018-09-30 21:48+0200\n" 11 | "Last-Translator: Kristof Kiszel \n" 12 | "Language-Team: Hungarian \n" 13 | "Language: hu\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Céleszköz:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Nem találhatók eszközök" 29 | -------------------------------------------------------------------------------- /po/it/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the purpose package. 3 | # Paolo Zamponi , 2018. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2018-06-01 18:30+0100\n" 11 | "Last-Translator: Paolo Zamponi \n" 12 | "Language-Team: Italian \n" 13 | "Language: it\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Scegli un dispositivo a cui inviare:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Nessun dispositivo trovato" 29 | -------------------------------------------------------------------------------- /po/ca/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Translation of purpose6_kdeconnectsms.po to Catalan 2 | # Copyright (C) 2019 This_file_is_part_of_KDE 3 | # This file is distributed under the license LGPL version 2.1 or 4 | # version 3 or later versions approved by the membership of KDE e.V. 5 | # 6 | # SPDX-FileCopyrightText: 2019 Josep M. Ferrer 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: purpose\n" 10 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 11 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 12 | "PO-Revision-Date: 2019-03-10 11:37+0100\n" 13 | "Last-Translator: Josep M. Ferrer \n" 14 | "Language-Team: Catalan \n" 15 | "Language: ca\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 20 | "X-Accelerator-Marker: &\n" 21 | "X-Generator: Lokalize 2.0\n" 22 | 23 | #: kdeconnectsmsplugin.cpp:39 24 | #, kde-format 25 | msgid "%1 - %2" 26 | msgstr "%1 - %2" 27 | -------------------------------------------------------------------------------- /po/de/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the purpose package. 3 | # SPDX-FileCopyrightText: 2018 Burkhard Lück 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: purpose6_kdeconnect\n" 7 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 8 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 9 | "PO-Revision-Date: 2018-05-29 06:36+0100\n" 10 | "Last-Translator: Burkhard Lück \n" 11 | "Language-Team: German \n" 12 | "Language: de\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 | 18 | #: kdeconnectplugin_config.qml:22 19 | #, kde-format 20 | msgid "Choose a device to send to:" 21 | msgstr "Wählen Sie ein Gerät an das gesendet wird:" 22 | 23 | #: kdeconnectplugin_config.qml:63 24 | #, kde-format 25 | msgid "No devices found" 26 | msgstr "Keine Geräte gefunden" 27 | -------------------------------------------------------------------------------- /po/ia/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Giovanni Sora , 2019, 2021. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2021-10-22 23:47+0200\n" 11 | "Last-Translator: giovanni \n" 12 | "Language-Team: Interlingua \n" 13 | "Language: ia\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 21.08.2\n" 19 | 20 | #: JobDialog.qml:22 21 | #, kde-format 22 | msgid "Send File" 23 | msgstr "Invia file" 24 | 25 | #: JobDialog.qml:40 26 | #, kde-format 27 | msgid "Configuration cancelled" 28 | msgstr "Configuration cancellate" 29 | 30 | #~ msgid "Cancel" 31 | #~ msgstr "Cancella" 32 | -------------------------------------------------------------------------------- /po/is/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # SPDX-FileCopyrightText: 2025 Sveinn í Felli 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2025-12-02 09:00+0000\n" 11 | "Last-Translator: Sveinn í Felli \n" 12 | "Language-Team: Icelandic\n" 13 | "Language: is\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.08.5\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Veldu tæki til að senda á:" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Engin tæki fundust" 29 | -------------------------------------------------------------------------------- /po/az/libpurpose6_widgets.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Xəyyam , 2020, 2021. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2021-10-25 15:59+0400\n" 11 | "Last-Translator: Kheyyam Gojayev \n" 12 | "Language-Team: Azerbaijani \n" 13 | "Language: az\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Lokalize 21.08.2\n" 19 | 20 | #: JobDialog.qml:22 21 | #, kde-format 22 | msgid "Send File" 23 | msgstr "Fayl göndərin" 24 | 25 | #: JobDialog.qml:40 26 | #, kde-format 27 | msgid "Configuration cancelled" 28 | msgstr "Konfiqurasiya ləğv edildi" 29 | 30 | #~ msgid "Cancel" 31 | #~ msgstr "Ləğv et" 32 | -------------------------------------------------------------------------------- /po/bg/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Mincho Kondarev , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2022-02-20 18:24+0100\n" 11 | "Last-Translator: Mincho Kondarev \n" 12 | "Language-Team: Bulgarian \n" 13 | "Language: bg\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 21.12.2\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Избиране на устройство за изпращане:" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Няма намерени устройства" 29 | -------------------------------------------------------------------------------- /po/bg/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Mincho Kondarev , 2022. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2022-02-20 18:23+0100\n" 11 | "Last-Translator: Mincho Kondarev \n" 12 | "Language-Team: Bulgarian \n" 13 | "Language: bg\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 21.12.2\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Избиране на устройство за изпращане:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Няма намерени устройства" 29 | -------------------------------------------------------------------------------- /po/da/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This_file_is_part_of_KDE 2 | # This file is distributed under the same license as the PACKAGE package. 3 | # 4 | # Martin Schlander , 2018. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: \n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2018-07-12 09:50+0100\n" 11 | "Last-Translator: Martin Schlander \n" 12 | "Language-Team: Danish \n" 13 | "Language: da\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Vælg enheden der skal sendes til:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Ingen enheder fundet" 29 | -------------------------------------------------------------------------------- /po/eu/purpose6_kdeconnectsms.po: -------------------------------------------------------------------------------- 1 | # Translation of purpose_kdeconnectsms.po to Euskara/Basque (eu). 2 | # Copyright (C) 2019 This file is copyright: 3 | # This file is distributed under the same license as the purpose package. 4 | # KDE Euskaratzeko proiektuaren arduraduna . 5 | # 6 | # Translators: 7 | # Iñigo Salvador Azurmendi , 2019. 8 | msgid "" 9 | msgstr "" 10 | "Project-Id-Version: purpose\n" 11 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 12 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 13 | "PO-Revision-Date: 2019-04-28 23:51+0100\n" 14 | "Last-Translator: Iñigo Salvador Azurmendi \n" 15 | "Language-Team: Basque \n" 16 | "Language: eu\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 21 | "X-Generator: Lokalize 2.0\n" 22 | 23 | #: kdeconnectsmsplugin.cpp:39 24 | #, kde-format 25 | msgid "%1 - %2" 26 | msgstr "%1 - %2" 27 | -------------------------------------------------------------------------------- /po/gl/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Adrián Chaves (Gallaecio) , 2018. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2018-10-20 13:21+0100\n" 11 | "Last-Translator: Adrián Chaves (Gallaecio) \n" 12 | "Language-Team: Galician \n" 13 | "Language: gl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | 19 | #: kdeconnectplugin_config.qml:22 20 | #, kde-format 21 | msgid "Choose a device to send to:" 22 | msgstr "Seleccione un dispositivo ao que enviar:" 23 | 24 | #: kdeconnectplugin_config.qml:63 25 | #, kde-format 26 | msgid "No devices found" 27 | msgstr "Non se atopou ningún dispositivo." 28 | -------------------------------------------------------------------------------- /po/ia/purpose6_bluetooth.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # Giovanni Sora , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2019-12-24 22:55+0100\n" 11 | "Last-Translator: Giovanni Sora \n" 12 | "Language-Team: Interlingua \n" 13 | "Language: ia\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 2.0\n" 19 | 20 | #: bluetoothplugin_config.qml:23 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Selige un dispositivo de inviar a :" 24 | 25 | #: bluetoothplugin_config.qml:62 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "On trovava nulle dispositivo" 29 | -------------------------------------------------------------------------------- /po/is/purpose6_kdeconnect.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 This file is copyright: 2 | # This file is distributed under the same license as the purpose package. 3 | # 4 | # SPDX-FileCopyrightText: 2025 Sveinn í Felli 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: purpose\n" 8 | "Report-Msgid-Bugs-To: https://bugs.kde.org\n" 9 | "POT-Creation-Date: 2025-11-17 11:49+0000\n" 10 | "PO-Revision-Date: 2025-12-02 08:59+0000\n" 11 | "Last-Translator: Sveinn í Felli \n" 12 | "Language-Team: Icelandic\n" 13 | "Language: is\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Lokalize 23.08.5\n" 19 | 20 | #: kdeconnectplugin_config.qml:22 21 | #, kde-format 22 | msgid "Choose a device to send to:" 23 | msgstr "Veldu tæki til að senda á:" 24 | 25 | #: kdeconnectplugin_config.qml:63 26 | #, kde-format 27 | msgid "No devices found" 28 | msgstr "Engin tæki fundust" 29 | --------------------------------------------------------------------------------