feat: add missing KF6 framework recipes
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
#TODO: KF6NotifyConfig — notification configuration framework.
|
||||
# Canberra and Qt6Multimedia sound backends disabled (neither available).
|
||||
# Required by konsole.
|
||||
[source]
|
||||
tar = "https://invent.kde.org/frameworks/knotifyconfig/-/archive/v6.10.0/knotifyconfig-v6.10.0.tar.gz"
|
||||
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"qtbase",
|
||||
"kf6-extra-cmake-modules",
|
||||
"kf6-kcompletion",
|
||||
"kf6-kconfig",
|
||||
"kf6-ki18n",
|
||||
"kf6-kio",
|
||||
]
|
||||
script = """
|
||||
DYNAMIC_INIT
|
||||
|
||||
HOST_BUILD="${COOKBOOK_ROOT}/build/qt-host-build"
|
||||
|
||||
for qtdir in plugins mkspecs metatypes modules; do
|
||||
if [ -d "${COOKBOOK_SYSROOT}/usr/${qtdir}" ] && [ ! -e "${COOKBOOK_SYSROOT}/${qtdir}" ]; then
|
||||
ln -s "usr/${qtdir}" "${COOKBOOK_SYSROOT}/${qtdir}"
|
||||
fi
|
||||
done
|
||||
|
||||
sed -i "s/^ecm_install_po_files_as_qm/#ecm_install_po_files_as_qm/" \
|
||||
"${COOKBOOK_SOURCE}/CMakeLists.txt" 2>/dev/null || true
|
||||
sed -i 's/^ki18n_install(po)/#ki18n_install(po)/' \
|
||||
"${COOKBOOK_SOURCE}/CMakeLists.txt" 2>/dev/null || true
|
||||
sed -i '/if (BUILD_TESTING)/,/endif()/s/^/#/' \
|
||||
"${COOKBOOK_SOURCE}/CMakeLists.txt" 2>/dev/null || true
|
||||
sed -i 's/find_package(Canberra)/# find_package(Canberra disabled on Redox)/' \
|
||||
"${COOKBOOK_SOURCE}/CMakeLists.txt" 2>/dev/null || true
|
||||
sed -i 's/find_package(Qt6 REQUIRED COMPONENTS Multimedia)/# find_package(Qt6Multimedia disabled on Redox)/' \
|
||||
"${COOKBOOK_SOURCE}/CMakeLists.txt" 2>/dev/null || true
|
||||
|
||||
rm -f CMakeCache.txt
|
||||
rm -rf CMakeFiles
|
||||
|
||||
cmake "${COOKBOOK_SOURCE}" \
|
||||
-DCMAKE_TOOLCHAIN_FILE="${COOKBOOK_ROOT}/local/recipes/qt/redox-toolchain.cmake" \
|
||||
-DQT_HOST_PATH="${HOST_BUILD}" \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}" \
|
||||
-DBUILD_TESTING=OFF \
|
||||
-DBUILD_QCH=OFF \
|
||||
-DBUILD_DESIGNERPLUGIN=OFF \
|
||||
-Wno-dev
|
||||
|
||||
cmake --build . -j${COOKBOOK_MAKE_JOBS}
|
||||
cmake --install . --prefix "${COOKBOOK_STAGE}/usr"
|
||||
|
||||
for lib in "${COOKBOOK_STAGE}/usr/lib/"libKF6*.so.*; do
|
||||
[ -f "${lib}" ] || continue
|
||||
patchelf --remove-rpath "${lib}" 2>/dev/null || true
|
||||
done
|
||||
"""
|
||||
@@ -0,0 +1,2 @@
|
||||
#clang-format
|
||||
653c578702ae8af9192a42664dcd3c5626df5985
|
||||
@@ -0,0 +1,28 @@
|
||||
# Ignore the following files
|
||||
*~
|
||||
*.[oa]
|
||||
*.diff
|
||||
*.kate-swp
|
||||
*.kdev4
|
||||
.kdev_include_paths
|
||||
*.kdevelop.pcs
|
||||
*.moc
|
||||
*.moc.cpp
|
||||
*.orig
|
||||
*.user
|
||||
.*.swp
|
||||
.swp.*
|
||||
Doxyfile
|
||||
Makefile
|
||||
avail
|
||||
random_seed
|
||||
/build*/
|
||||
CMakeLists.txt.user*
|
||||
*.unc-backup*
|
||||
.cmake/
|
||||
/.clang-format
|
||||
/compile_commands.json
|
||||
.clangd
|
||||
.idea
|
||||
/cmake-build*
|
||||
.cache
|
||||
@@ -0,0 +1,9 @@
|
||||
# SPDX-FileCopyrightText: 2020 Volker Krause <vkrause@kde.org>
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
include:
|
||||
- project: sysadmin/ci-utilities
|
||||
file:
|
||||
- /gitlab-templates/linux-qt6.yml
|
||||
- /gitlab-templates/freebsd-qt6.yml
|
||||
- /gitlab-templates/windows-qt6.yml
|
||||
@@ -0,0 +1,12 @@
|
||||
Dependencies:
|
||||
- 'on': ['Linux', 'FreeBSD', 'Windows', 'macOS']
|
||||
'require':
|
||||
'frameworks/extra-cmake-modules': '@same'
|
||||
'frameworks/kio' : '@same'
|
||||
'frameworks/ki18n' : '@same'
|
||||
'frameworks/knotifications' : '@same'
|
||||
'frameworks/kxmlgui' : '@same'
|
||||
|
||||
Options:
|
||||
test-before-installing: True
|
||||
require-passing-tests-on: [ 'Linux', 'FreeBSD', 'Windows' ]
|
||||
@@ -0,0 +1,130 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
set(KF_VERSION "6.10.0") # handled by release scripts
|
||||
set(KF_DEP_VERSION "6.10.0") # handled by release scripts
|
||||
project(KNotifyConfig VERSION ${KF_VERSION})
|
||||
|
||||
# Dependencies
|
||||
include(FeatureSummary)
|
||||
find_package(ECM 6.10.0 NO_MODULE)
|
||||
set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules")
|
||||
feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
||||
|
||||
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
|
||||
|
||||
# Includes
|
||||
include(KDEInstallDirs)
|
||||
include(KDECMakeSettings)
|
||||
include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
|
||||
|
||||
include(ECMGenerateExportHeader)
|
||||
include(ECMSetupVersion)
|
||||
include(ECMGenerateHeaders)
|
||||
include(ECMQtDeclareLoggingCategory)
|
||||
include(ECMAddQch)
|
||||
include(CMakePackageConfigHelpers)
|
||||
include(KDEGitCommitHooks)
|
||||
include(ECMDeprecationSettings)
|
||||
|
||||
# Required Qt components to build this framework
|
||||
set(REQUIRED_QT_VERSION 6.6.0)
|
||||
find_package(Qt6 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Widgets)
|
||||
|
||||
# shall we use DBus?
|
||||
# enabled per default on Linux & BSD systems
|
||||
set(USE_DBUS_DEFAULT OFF)
|
||||
if(UNIX AND NOT APPLE AND NOT ANDROID AND NOT HAIKU)
|
||||
set(USE_DBUS_DEFAULT ON)
|
||||
endif()
|
||||
option(USE_DBUS "Build components using DBus" ${USE_DBUS_DEFAULT})
|
||||
if(USE_DBUS)
|
||||
find_package(Qt6 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED DBus)
|
||||
set(HAVE_DBUS TRUE)
|
||||
add_definitions(-DHAVE_DBUS)
|
||||
endif()
|
||||
|
||||
find_package(KF6Completion ${KF_DEP_VERSION} REQUIRED)
|
||||
find_package(KF6Config ${KF_DEP_VERSION} REQUIRED)
|
||||
find_package(KF6I18n ${KF_DEP_VERSION} REQUIRED)
|
||||
find_package(KF6KIO ${KF_DEP_VERSION} REQUIRED)
|
||||
|
||||
find_package(Canberra)
|
||||
set_package_properties(Canberra PROPERTIES
|
||||
PURPOSE "Needed to preview notification sounds"
|
||||
TYPE OPTIONAL)
|
||||
if (NOT Canberra_FOUND)
|
||||
# This is REQUIRED since you cannot tell CMake "either one of those two optional ones are required"
|
||||
find_package(Qt6Multimedia REQUIRED)
|
||||
set_package_properties(Qt6Multimedia PROPERTIES
|
||||
DESCRIPTION "Qt multimedia library"
|
||||
PURPOSE "Needed to preview notification sounds when Canberra isn't available")
|
||||
endif()
|
||||
|
||||
# ECM setup
|
||||
set(knotifyconfig_version_header "${CMAKE_CURRENT_BINARY_DIR}/src/knotifyconfig_version.h")
|
||||
ecm_setup_version(
|
||||
PROJECT
|
||||
VARIABLE_PREFIX KNOTIFYCONFIG
|
||||
VERSION_HEADER "${knotifyconfig_version_header}"
|
||||
PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF6NotifyConfigConfigVersion.cmake"
|
||||
SOVERSION 6)
|
||||
|
||||
option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF)
|
||||
add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)")
|
||||
|
||||
ecm_set_disabled_deprecation_versions(
|
||||
QT 6.8.0
|
||||
KF 6.8.0
|
||||
)
|
||||
|
||||
# Subdirectories
|
||||
add_definitions(-DTRANSLATION_DOMAIN=\"knotifyconfig6\")
|
||||
ki18n_install(po)
|
||||
add_subdirectory(src)
|
||||
if(BUILD_TESTING)
|
||||
add_subdirectory(tests)
|
||||
endif()
|
||||
|
||||
# Create a Config.cmake and a ConfigVersion.cmake file and install them
|
||||
set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF6NotifyConfig")
|
||||
|
||||
if (BUILD_QCH)
|
||||
ecm_install_qch_export(
|
||||
TARGETS KF6NotifyConfig_QCH
|
||||
FILE KF6NotifyConfigQchTargets.cmake
|
||||
DESTINATION "${CMAKECONFIG_INSTALL_DIR}"
|
||||
COMPONENT Devel
|
||||
)
|
||||
set(PACKAGE_INCLUDE_QCHTARGETS "include(\"\${CMAKE_CURRENT_LIST_DIR}/KF6NotifyConfigQchTargets.cmake\")")
|
||||
endif()
|
||||
|
||||
configure_package_config_file(
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/KF6NotifyConfigConfig.cmake.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/KF6NotifyConfigConfig.cmake"
|
||||
INSTALL_DESTINATION "${CMAKECONFIG_INSTALL_DIR}"
|
||||
)
|
||||
|
||||
install(FILES
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/KF6NotifyConfigConfig.cmake"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/KF6NotifyConfigConfigVersion.cmake"
|
||||
DESTINATION "${CMAKECONFIG_INSTALL_DIR}"
|
||||
COMPONENT Devel
|
||||
)
|
||||
|
||||
install(EXPORT
|
||||
KF6NotifyConfigTargets
|
||||
DESTINATION "${CMAKECONFIG_INSTALL_DIR}"
|
||||
FILE KF6NotifyConfigTargets.cmake
|
||||
NAMESPACE KF6::
|
||||
)
|
||||
|
||||
install(FILES
|
||||
"${knotifyconfig_version_header}"
|
||||
DESTINATION "${KDE_INSTALL_INCLUDEDIR_KF}/KNotifyConfig"
|
||||
COMPONENT Devel
|
||||
)
|
||||
|
||||
include(ECMFeatureSummary)
|
||||
ecm_feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
||||
|
||||
kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)
|
||||
@@ -0,0 +1,7 @@
|
||||
@PACKAGE_INIT@
|
||||
|
||||
include(CMakeFindDependencyMacro)
|
||||
find_dependency(Qt6Widgets "@REQUIRED_QT_VERSION@")
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/KF6NotifyConfigTargets.cmake")
|
||||
@PACKAGE_INCLUDE_QCHTARGETS@
|
||||
@@ -0,0 +1,121 @@
|
||||
Creative Commons Legal Code
|
||||
|
||||
CC0 1.0 Universal
|
||||
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
||||
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
|
||||
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
||||
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
||||
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
|
||||
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
|
||||
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
|
||||
HEREUNDER.
|
||||
|
||||
Statement of Purpose
|
||||
|
||||
The laws of most jurisdictions throughout the world automatically confer
|
||||
exclusive Copyright and Related Rights (defined below) upon the creator
|
||||
and subsequent owner(s) (each and all, an "owner") of an original work of
|
||||
authorship and/or a database (each, a "Work").
|
||||
|
||||
Certain owners wish to permanently relinquish those rights to a Work for
|
||||
the purpose of contributing to a commons of creative, cultural and
|
||||
scientific works ("Commons") that the public can reliably and without fear
|
||||
of later claims of infringement build upon, modify, incorporate in other
|
||||
works, reuse and redistribute as freely as possible in any form whatsoever
|
||||
and for any purposes, including without limitation commercial purposes.
|
||||
These owners may contribute to the Commons to promote the ideal of a free
|
||||
culture and the further production of creative, cultural and scientific
|
||||
works, or to gain reputation or greater distribution for their Work in
|
||||
part through the use and efforts of others.
|
||||
|
||||
For these and/or other purposes and motivations, and without any
|
||||
expectation of additional consideration or compensation, the person
|
||||
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
|
||||
is an owner of Copyright and Related Rights in the Work, voluntarily
|
||||
elects to apply CC0 to the Work and publicly distribute the Work under its
|
||||
terms, with knowledge of his or her Copyright and Related Rights in the
|
||||
Work and the meaning and intended legal effect of CC0 on those rights.
|
||||
|
||||
1. Copyright and Related Rights. A Work made available under CC0 may be
|
||||
protected by copyright and related or neighboring rights ("Copyright and
|
||||
Related Rights"). Copyright and Related Rights include, but are not
|
||||
limited to, the following:
|
||||
|
||||
i. the right to reproduce, adapt, distribute, perform, display,
|
||||
communicate, and translate a Work;
|
||||
ii. moral rights retained by the original author(s) and/or performer(s);
|
||||
iii. publicity and privacy rights pertaining to a person's image or
|
||||
likeness depicted in a Work;
|
||||
iv. rights protecting against unfair competition in regards to a Work,
|
||||
subject to the limitations in paragraph 4(a), below;
|
||||
v. rights protecting the extraction, dissemination, use and reuse of data
|
||||
in a Work;
|
||||
vi. database rights (such as those arising under Directive 96/9/EC of the
|
||||
European Parliament and of the Council of 11 March 1996 on the legal
|
||||
protection of databases, and under any national implementation
|
||||
thereof, including any amended or successor version of such
|
||||
directive); and
|
||||
vii. other similar, equivalent or corresponding rights throughout the
|
||||
world based on applicable law or treaty, and any national
|
||||
implementations thereof.
|
||||
|
||||
2. Waiver. To the greatest extent permitted by, but not in contravention
|
||||
of, applicable law, Affirmer hereby overtly, fully, permanently,
|
||||
irrevocably and unconditionally waives, abandons, and surrenders all of
|
||||
Affirmer's Copyright and Related Rights and associated claims and causes
|
||||
of action, whether now known or unknown (including existing as well as
|
||||
future claims and causes of action), in the Work (i) in all territories
|
||||
worldwide, (ii) for the maximum duration provided by applicable law or
|
||||
treaty (including future time extensions), (iii) in any current or future
|
||||
medium and for any number of copies, and (iv) for any purpose whatsoever,
|
||||
including without limitation commercial, advertising or promotional
|
||||
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
|
||||
member of the public at large and to the detriment of Affirmer's heirs and
|
||||
successors, fully intending that such Waiver shall not be subject to
|
||||
revocation, rescission, cancellation, termination, or any other legal or
|
||||
equitable action to disrupt the quiet enjoyment of the Work by the public
|
||||
as contemplated by Affirmer's express Statement of Purpose.
|
||||
|
||||
3. Public License Fallback. Should any part of the Waiver for any reason
|
||||
be judged legally invalid or ineffective under applicable law, then the
|
||||
Waiver shall be preserved to the maximum extent permitted taking into
|
||||
account Affirmer's express Statement of Purpose. In addition, to the
|
||||
extent the Waiver is so judged Affirmer hereby grants to each affected
|
||||
person a royalty-free, non transferable, non sublicensable, non exclusive,
|
||||
irrevocable and unconditional license to exercise Affirmer's Copyright and
|
||||
Related Rights in the Work (i) in all territories worldwide, (ii) for the
|
||||
maximum duration provided by applicable law or treaty (including future
|
||||
time extensions), (iii) in any current or future medium and for any number
|
||||
of copies, and (iv) for any purpose whatsoever, including without
|
||||
limitation commercial, advertising or promotional purposes (the
|
||||
"License"). The License shall be deemed effective as of the date CC0 was
|
||||
applied by Affirmer to the Work. Should any part of the License for any
|
||||
reason be judged legally invalid or ineffective under applicable law, such
|
||||
partial invalidity or ineffectiveness shall not invalidate the remainder
|
||||
of the License, and in such case Affirmer hereby affirms that he or she
|
||||
will not (i) exercise any of his or her remaining Copyright and Related
|
||||
Rights in the Work or (ii) assert any associated claims and causes of
|
||||
action with respect to the Work, in either case contrary to Affirmer's
|
||||
express Statement of Purpose.
|
||||
|
||||
4. Limitations and Disclaimers.
|
||||
|
||||
a. No trademark or patent rights held by Affirmer are waived, abandoned,
|
||||
surrendered, licensed or otherwise affected by this document.
|
||||
b. Affirmer offers the Work as-is and makes no representations or
|
||||
warranties of any kind concerning the Work, express, implied,
|
||||
statutory or otherwise, including without limitation warranties of
|
||||
title, merchantability, fitness for a particular purpose, non
|
||||
infringement, or the absence of latent or other defects, accuracy, or
|
||||
the present or absence of errors, whether or not discoverable, all to
|
||||
the greatest extent permissible under applicable law.
|
||||
c. Affirmer disclaims responsibility for clearing rights of other persons
|
||||
that may apply to the Work or any use thereof, including without
|
||||
limitation any person's Copyright and Related Rights in the Work.
|
||||
Further, Affirmer disclaims responsibility for obtaining any necessary
|
||||
consents, permissions or other rights required for any use of the
|
||||
Work.
|
||||
d. Affirmer understands and acknowledges that Creative Commons is not a
|
||||
party to this document and has no duty or obligation with respect to
|
||||
this CC0 or use of the Work.
|
||||
@@ -0,0 +1,446 @@
|
||||
GNU LIBRARY GENERAL PUBLIC LICENSE
|
||||
|
||||
Version 2, June 1991 Copyright (C) 1991 Free Software Foundation, Inc.
|
||||
|
||||
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license
|
||||
document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the library GPL. It is numbered 2 because
|
||||
it goes with version 2 of the ordinary GPL.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your freedom to share
|
||||
and change it. By contrast, the GNU General Public Licenses are intended to
|
||||
guarantee your freedom to share and change free software--to make sure the
|
||||
software is free for all its users.
|
||||
|
||||
This license, the Library General Public License, applies to some specially
|
||||
designated Free Software Foundation software, and to any other libraries whose
|
||||
authors decide to use it. You can use it for your libraries, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not price. Our
|
||||
General Public Licenses are designed to make sure that you have the freedom
|
||||
to distribute copies of free software (and charge for this service if you
|
||||
wish), that you receive source code or can get it if you want it, that you
|
||||
can change the software or use pieces of it in new free programs; and that
|
||||
you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid anyone to
|
||||
deny you these rights or to ask you to surrender the rights. These restrictions
|
||||
translate to certain responsibilities for you if you distribute copies of
|
||||
the library, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis or for
|
||||
a fee, you must give the recipients all the rights that we gave you. You must
|
||||
make sure that they, too, receive or can get the source code. If you link
|
||||
a program with the library, you must provide complete object files to the
|
||||
recipients so that they can relink them with the library, after making changes
|
||||
to the library and recompiling it. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Our method of protecting your rights has two steps: (1) copyright the library,
|
||||
and (2) offer you this license which gives you legal permission to copy, distribute
|
||||
and/or modify the library.
|
||||
|
||||
Also, for each distributor's protection, we want to make certain that everyone
|
||||
understands that there is no warranty for this free library. If the library
|
||||
is modified by someone else and passed on, we want its recipients to know
|
||||
that what they have is not the original version, so that any problems introduced
|
||||
by others will not reflect on the original authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software patents. We
|
||||
wish to avoid the danger that companies distributing free software will individually
|
||||
obtain patent licenses, thus in effect transforming the program into proprietary
|
||||
software. To prevent this, we have made it clear that any patent must be licensed
|
||||
for everyone's free use or not licensed at all.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the ordinary GNU
|
||||
General Public License, which was designed for utility programs. This license,
|
||||
the GNU Library General Public License, applies to certain designated libraries.
|
||||
This license is quite different from the ordinary one; be sure to read it
|
||||
in full, and don't assume that anything in it is the same as in the ordinary
|
||||
license.
|
||||
|
||||
The reason we have a separate public license for some libraries is that they
|
||||
blur the distinction we usually make between modifying or adding to a program
|
||||
and simply using it. Linking a program with a library, without changing the
|
||||
library, is in some sense simply using the library, and is analogous to running
|
||||
a utility program or application program. However, in a textual and legal
|
||||
sense, the linked executable is a combined work, a derivative of the original
|
||||
library, and the ordinary General Public License treats it as such.
|
||||
|
||||
Because of this blurred distinction, using the ordinary General Public License
|
||||
for libraries did not effectively promote software sharing, because most developers
|
||||
did not use the libraries. We concluded that weaker conditions might promote
|
||||
sharing better.
|
||||
|
||||
However, unrestricted linking of non-free programs would deprive the users
|
||||
of those programs of all benefit from the free status of the libraries themselves.
|
||||
This Library General Public License is intended to permit developers of non-free
|
||||
programs to use free libraries, while preserving your freedom as a user of
|
||||
such programs to change the free libraries that are incorporated in them.
|
||||
(We have not seen how to achieve this as regards changes in header files,
|
||||
but we have achieved it as regards changes in the actual functions of the
|
||||
Library.) The hope is that this will lead to faster development of free libraries.
|
||||
|
||||
The precise terms and conditions for copying, distribution and modification
|
||||
follow. Pay close attention to the difference between a "work based on the
|
||||
library" and a "work that uses the library". The former contains code derived
|
||||
from the library, while the latter only works together with the library.
|
||||
|
||||
Note that it is possible for a library to be covered by the ordinary General
|
||||
Public License rather than by this special one.
|
||||
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library which contains a
|
||||
notice placed by the copyright holder or other authorized party saying it
|
||||
may be distributed under the terms of this Library General Public License
|
||||
(also called "this License"). Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data prepared
|
||||
so as to be conveniently linked with application programs (which use some
|
||||
of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work which has
|
||||
been distributed under these terms. A "work based on the Library" means either
|
||||
the Library or any derivative work under copyright law: that is to say, a
|
||||
work containing the Library or a portion of it, either verbatim or with modifications
|
||||
and/or translated straightforwardly into another language. (Hereinafter, translation
|
||||
is included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for making modifications
|
||||
to it. For a library, complete source code means all the source code for all
|
||||
modules it contains, plus any associated interface definition files, plus
|
||||
the scripts used to control compilation and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not covered
|
||||
by this License; they are outside its scope. The act of running a program
|
||||
using the Library is not restricted, and output from such a program is covered
|
||||
only if its contents constitute a work based on the Library (independent of
|
||||
the use of the Library in a tool for writing it). Whether that is true depends
|
||||
on what the Library does and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's complete source
|
||||
code as you receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice and disclaimer
|
||||
of warranty; keep intact all the notices that refer to this License and to
|
||||
the absence of any warranty; and distribute a copy of this License along with
|
||||
the Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and you
|
||||
may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion of it,
|
||||
thus forming a work based on the Library, and copy and distribute such modifications
|
||||
or work under the terms of Section 1 above, provided that you also meet all
|
||||
of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices stating that
|
||||
you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no charge to all
|
||||
third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a table of
|
||||
data to be supplied by an application program that uses the facility, other
|
||||
than as an argument passed when the facility is invoked, then you must make
|
||||
a good faith effort to ensure that, in the event an application does not supply
|
||||
such function or table, the facility still operates, and performs whatever
|
||||
part of its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has a purpose
|
||||
that is entirely well-defined independent of the application. Therefore, Subsection
|
||||
2d requires that any application-supplied function or table used by this function
|
||||
must be optional: if the application does not supply it, the square root function
|
||||
must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If identifiable
|
||||
sections of that work are not derived from the Library, and can be reasonably
|
||||
considered independent and separate works in themselves, then this License,
|
||||
and its terms, do not apply to those sections when you distribute them as
|
||||
separate works. But when you distribute the same sections as part of a whole
|
||||
which is a work based on the Library, the distribution of the whole must be
|
||||
on the terms of this License, whose permissions for other licensees extend
|
||||
to the entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest your
|
||||
rights to work written entirely by you; rather, the intent is to exercise
|
||||
the right to control the distribution of derivative or collective works based
|
||||
on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library with
|
||||
the Library (or with a work based on the Library) on a volume of a storage
|
||||
or distribution medium does not bring the other work under the scope of this
|
||||
License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public License
|
||||
instead of this License to a given copy of the Library. To do this, you must
|
||||
alter all the notices that refer to this License, so that they refer to the
|
||||
ordinary GNU General Public License, version 2, instead of to this License.
|
||||
(If a newer version than version 2 of the ordinary GNU General Public License
|
||||
has appeared, then you can specify that version instead if you wish.) Do not
|
||||
make any other change in these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for that copy,
|
||||
so the ordinary GNU General Public License applies to all subsequent copies
|
||||
and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of the Library
|
||||
into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or derivative of
|
||||
it, under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you accompany it with the complete corresponding
|
||||
machine-readable source code, which must be distributed under the terms of
|
||||
Sections 1 and 2 above on a medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy from a designated
|
||||
place, then offering equivalent access to copy the source code from the same
|
||||
place satisfies the requirement to distribute the source code, even though
|
||||
third parties are not compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the Library, but
|
||||
is designed to work with the Library by being compiled or linked with it,
|
||||
is called a "work that uses the Library". Such a work, in isolation, is not
|
||||
a derivative work of the Library, and therefore falls outside the scope of
|
||||
this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library creates an
|
||||
executable that is a derivative of the Library (because it contains portions
|
||||
of the Library), rather than a "work that uses the library". The executable
|
||||
is therefore covered by this License. Section 6 states terms for distribution
|
||||
of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file that
|
||||
is part of the Library, the object code for the work may be a derivative work
|
||||
of the Library even though the source code is not. Whether this is true is
|
||||
especially significant if the work can be linked without the Library, or if
|
||||
the work is itself a library. The threshold for this to be true is not precisely
|
||||
defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data structure layouts
|
||||
and accessors, and small macros and small inline functions (ten lines or less
|
||||
in length), then the use of the object file is unrestricted, regardless of
|
||||
whether it is legally a derivative work. (Executables containing this object
|
||||
code plus portions of the Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may distribute
|
||||
the object code for the work under the terms of Section 6. Any executables
|
||||
containing that work also fall under Section 6, whether or not they are linked
|
||||
directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also compile or link a "work
|
||||
that uses the Library" with the Library to produce a work containing portions
|
||||
of the Library, and distribute that work under terms of your choice, provided
|
||||
that the terms permit modification of the work for the customer's own use
|
||||
and reverse engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the Library
|
||||
is used in it and that the Library and its use are covered by this License.
|
||||
You must supply a copy of this License. If the work during execution displays
|
||||
copyright notices, you must include the copyright notice for the Library among
|
||||
them, as well as a reference directing the user to the copy of this License.
|
||||
Also, you must do one of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding machine-readable source
|
||||
code for the Library including whatever changes were used in the work (which
|
||||
must be distributed under Sections 1 and 2 above); and, if the work is an
|
||||
executable linked with the Library, with the complete machine-readable "work
|
||||
that uses the Library", as object code and/or source code, so that the user
|
||||
can modify the Library and then relink to produce a modified executable containing
|
||||
the modified Library. (It is understood that the user who changes the contents
|
||||
of definitions files in the Library will not necessarily be able to recompile
|
||||
the application to use the modified definitions.)
|
||||
|
||||
b) Accompany the work with a written offer, valid for at least three years,
|
||||
to give the same user the materials specified in Subsection 6a, above, for
|
||||
a charge no more than the cost of performing this distribution.
|
||||
|
||||
c) If distribution of the work is made by offering access to copy from a designated
|
||||
place, offer equivalent access to copy the above specified materials from
|
||||
the same place.
|
||||
|
||||
d) Verify that the user has already received a copy of these materials or
|
||||
that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the Library" must
|
||||
include any data and utility programs needed for reproducing the executable
|
||||
from it. However, as a special exception, the source code distributed need
|
||||
not include anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the operating
|
||||
system on which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license restrictions of
|
||||
other proprietary libraries that do not normally accompany the operating system.
|
||||
Such a contradiction means you cannot use both them and the Library together
|
||||
in an executable that you distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the Library side-by-side
|
||||
in a single library together with other library facilities not covered by
|
||||
this License, and distribute such a combined library, provided that the separate
|
||||
distribution of the work based on the Library and of the other library facilities
|
||||
is otherwise permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based on the
|
||||
Library, uncombined with any other library facilities. This must be distributed
|
||||
under the terms of the Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact that part of
|
||||
it is a work based on the Library, and explaining where to find the accompanying
|
||||
uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute the Library
|
||||
except as expressly provided under this License. Any attempt otherwise to
|
||||
copy, modify, sublicense, link with, or distribute the Library is void, and
|
||||
will automatically terminate your rights under this License. However, parties
|
||||
who have received copies, or rights, from you under this License will not
|
||||
have their licenses terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not signed
|
||||
it. However, nothing else grants you permission to modify or distribute the
|
||||
Library or its derivative works. These actions are prohibited by law if you
|
||||
do not accept this License. Therefore, by modifying or distributing the Library
|
||||
(or any work based on the Library), you indicate your acceptance of this License
|
||||
to do so, and all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the Library),
|
||||
the recipient automatically receives a license from the original licensor
|
||||
to copy, distribute, link with or modify the Library subject to these terms
|
||||
and conditions. You may not impose any further restrictions on the recipients'
|
||||
exercise of the rights granted herein. You are not responsible for enforcing
|
||||
compliance by third parties to this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent infringement
|
||||
or for any other reason (not limited to patent issues), conditions are imposed
|
||||
on you (whether by court order, agreement or otherwise) that contradict the
|
||||
conditions of this License, they do not excuse you from the conditions of
|
||||
this License. If you cannot distribute so as to satisfy simultaneously your
|
||||
obligations under this License and any other pertinent obligations, then as
|
||||
a consequence you may not distribute the Library at all. For example, if a
|
||||
patent license would not permit royalty-free redistribution of the Library
|
||||
by all those who receive copies directly or indirectly through you, then the
|
||||
only way you could satisfy both it and this License would be to refrain entirely
|
||||
from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply,
|
||||
and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any patents
|
||||
or other property right claims or to contest validity of any such claims;
|
||||
this section has the sole purpose of protecting the integrity of the free
|
||||
software distribution system which is implemented by public license practices.
|
||||
Many people have made generous contributions to the wide range of software
|
||||
distributed through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing to
|
||||
distribute software through any other system and a licensee cannot impose
|
||||
that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to be a
|
||||
consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in certain
|
||||
countries either by patents or by copyrighted interfaces, the original copyright
|
||||
holder who places the Library under this License may add an explicit geographical
|
||||
distribution limitation excluding those countries, so that distribution is
|
||||
permitted only in or among countries not thus excluded. In such case, this
|
||||
License incorporates the limitation as if written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new versions of
|
||||
the Library General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to address
|
||||
new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library specifies
|
||||
a version number of this License which applies to it and "any later version",
|
||||
you have the option of following the terms and conditions either of that version
|
||||
or of any later version published by the Free Software Foundation. If the
|
||||
Library does not specify a license version number, you may choose any version
|
||||
ever published by the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free programs
|
||||
whose distribution conditions are incompatible with these, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free Software
|
||||
Foundation, write to the Free Software Foundation; we sometimes make exceptions
|
||||
for this. Our decision will be guided by the two goals of preserving the free
|
||||
status of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
|
||||
THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
|
||||
STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY
|
||||
"AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
||||
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE
|
||||
OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE
|
||||
THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE
|
||||
OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA
|
||||
OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES
|
||||
OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH
|
||||
HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Libraries
|
||||
|
||||
If you develop a new library, and you want it to be of the greatest possible
|
||||
use to the public, we recommend making it free software that everyone can
|
||||
redistribute and change. You can do so by permitting redistribution under
|
||||
these terms (or, alternatively, under the terms of the ordinary General Public
|
||||
License).
|
||||
|
||||
To apply these terms, attach the following notices to the library. It is safest
|
||||
to attach them to the start of each source file to most effectively convey
|
||||
the exclusion of warranty; and each file should have at least the "copyright"
|
||||
line and a pointer to where the full notice is found.
|
||||
|
||||
one line to give the library's name and an idea of what it does.
|
||||
|
||||
Copyright (C) year name of author
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU Library General Public License as published by the Free
|
||||
Software Foundation; either version 2 of the License, or (at your option)
|
||||
any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your school,
|
||||
if any, to sign a "copyright disclaimer" for the library, if necessary. Here
|
||||
is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in
|
||||
|
||||
the library `Frob' (a library for tweaking knobs) written
|
||||
|
||||
by James Random Hacker.
|
||||
|
||||
signature of Ty Coon, 1 April 1990
|
||||
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
||||
@@ -0,0 +1,9 @@
|
||||
# KNotifyConfig
|
||||
|
||||
Configuration dialog for desktop notifications
|
||||
|
||||
## Introduction
|
||||
|
||||
KNotifyConfig provides a configuration dialog for desktop notifications which
|
||||
can be embedded in your application.
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
description: Configuration system for KNotify
|
||||
tier: 3
|
||||
type: integration
|
||||
platforms:
|
||||
- name: Linux
|
||||
- name: FreeBSD
|
||||
- name: Windows
|
||||
- name: macOS
|
||||
portingAid: false
|
||||
deprecated: false
|
||||
release: true
|
||||
libraries:
|
||||
- cmake: "KF6::NotifyConfig"
|
||||
cmakename: KF6NotifyConfig
|
||||
|
||||
public_lib: true
|
||||
group: Frameworks
|
||||
subgroup: Tier 3
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,59 @@
|
||||
# Copyright (C) YEAR This file is copyright:
|
||||
# This file is distributed under the same license as the knotifyconfig package.
|
||||
#
|
||||
# Enol P. <enolp@softastur.org>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2023-05-03 23:40+0200\n"
|
||||
"Last-Translator: Enol P. <enolp@softastur.org>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: ast\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 23.04.0\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr ""
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,109 @@
|
||||
# Copyright (C) YEAR This file is copyright:
|
||||
# This file is distributed under the same license as the knotifyconfig package.
|
||||
#
|
||||
# Xəyyam <xxmn77@gmail.com>, 2020.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2020-07-16 08:55+0400\n"
|
||||
"Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>\n"
|
||||
"Language-Team: Azerbaijani <kde-i18n-doc@kde.org>\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Lokalize 20.04.3\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Səsi oxutmaq üçün seçin"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "&Səsi oxudun"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Mesajı &pop-up pəncərədə göstər"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Bildirişləri Tənzimlə"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Vəziyyət"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Başlıq"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Təfərrüatlar"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "Jurnal faylında saxlayın"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "Tapşırıq panelində proqramı işarələyin"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "Əmri &başlat"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "Başlatmaq üçün əmri seşin"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "&Oxutmaq"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Dolaşdıqda necə səsləndirməyi göstərir. \"Xüsusi mətni danış\" "
|
||||
#~ "seçsəniz, mətni qutuya daxil edin. Mətndə aşağıdakı əvəzedici sətrlərdən "
|
||||
#~ "istifadə edə bilərsiniz:<dl><dt>%e</dt><dd>Tədbirin adı</dd><dt>%a</"
|
||||
#~ "dt><dd>Hadısəni göndərən tətbiq</dd><dt>%m</dt><dd>Mesajbu tətbiq "
|
||||
#~ "tərəfindən göndərilib</dd></dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "Hadisənin mesajını oxutmaq"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "Hadisənin adını oxutmaq"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "Mənim mətnimi oxutmaq"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Bir hadisə baş verdikdə necə səsləndirməyi göstərir. \"Xüsusi mətni "
|
||||
#~ "danış\" seçsəniz, mətni qutuya daxil edin. Mətndə aşağıdakı əvəzedici "
|
||||
#~ "sətrlərdən istifadə edə bilərsiniz:<dl><dt>%e</dt><dd>Tədbirin adı</"
|
||||
#~ "dd><dt>%a</dt><dd>Hadisəni göndərən tətbiq</dd><dt>%m</dt><dd>Bu mesajı "
|
||||
#~ "göndərən tətbiq</dd></dl></qt>"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,61 @@
|
||||
# Copyright (C) YEAR This_file_is_part_of_KDE
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Zlatko Popov <zlatkopopov@fsa-bg.org>, 2006, 2007, 2008, 2009.
|
||||
# Yasen Pramatarov <yasen@lindeas.com>, 2009, 2010, 2011, 2012, 2013.
|
||||
# Mincho Kondarev <mkondarev@yahoo.de>, 2022.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kdelibs4\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2022-05-21 12:32+0200\n"
|
||||
"Last-Translator: Mincho Kondarev <mkondarev@yahoo.de>\n"
|
||||
"Language-Team: Bulgarian <dict@ludost.net>\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Lokalize 22.04.0\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Избор на звуков сигнал"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Изпълнение на &звук"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Показване на &изскачащо съобщение"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Настройване на известяванията"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Състояние"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Заглавие"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,120 @@
|
||||
# Translation of knotifyconfig6.po to Catalan
|
||||
# Copyright (C) 1998-2020 This_file_is_part_of_KDE
|
||||
# This file is distributed under the license LGPL version 2.1 or
|
||||
# version 3 or later versions approved by the membership of KDE e.V.
|
||||
#
|
||||
# Sebastià Pla i Sanz <sps@sastia.com>, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007.
|
||||
# Antoni Bella Pérez <antonibella5@yahoo.com>, 2003, 2006, 2011, 2012, 2013, 2014, 2020.
|
||||
# Albert Astals Cid <aacid@kde.org>, 2004, 2005, 2007.
|
||||
# Josep M. Ferrer <txemaq@gmail.com>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015.
|
||||
# Robert Millan <rmh@aybabtu.com>, 2009.
|
||||
# Orestes Mas <orestes@tsc.upc.edu>, 2010.
|
||||
# Empar Montoro Martín <montoro_mde@gva.es>, 2019.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2020-07-22 13:07+0200\n"
|
||||
"Last-Translator: Antoni Bella Pérez <antonibella5@yahoo.com>\n"
|
||||
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Lokalize 20.04.3\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Accelerator-Marker: &\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Seleccioneu el so a reproduir"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Reprodueix un &so"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Mostra un missatge en una finestra emer&gent"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Configura les notificacions"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Estat"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Títol"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Descripció"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "Registra en un fitxer"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "Marca l'entrada de la barra de &tasques"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "Executa una &ordre"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "Seleccioneu l'ordre a executar"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "Pr&onuncia"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Especifica com ha de pronunciar el knotify quan rebi l'esdeveniment. "
|
||||
#~ "Si seleccioneu «Pronuncia un text personalitzat», introduïu el text al "
|
||||
#~ "quadre. Podeu emprar les següents cadenes de substitució en el text:"
|
||||
#~ "<dl><dt>%e</dt><dd>Nom de l'esdeveniment</dd><dt>%a</dt><dd>Aplicació que "
|
||||
#~ "envia l'esdeveniment</dd><dt>%m</dt><dd>Missatge enviat per l'aplicació</"
|
||||
#~ "dd></dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "Pronuncia el missatge de l'esdeveniment"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "Pronuncia el nom de l'esdeveniment"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "Pronuncia un text personalitzat"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Indiqueu què ha de pronunciar el Jovie quan rebi l'esdeveniment. Si "
|
||||
#~ "seleccioneu «Pronuncia un text personalitzat», introduïu el text al "
|
||||
#~ "quadre. Podeu emprar les següents cadenes de substitució en el text:"
|
||||
#~ "<dl><dt>%e</dt><dd>Nom de l'esdeveniment</dd><dt>%a</dt><dd>Aplicació que "
|
||||
#~ "envia l'esdeveniment</dd><dt>%m</dt><dd>Missatge enviat per l'aplicació</"
|
||||
#~ "dd></dl></qt>"
|
||||
@@ -0,0 +1,68 @@
|
||||
# Translation of knotifyconfig6.po to Catalan (Valencian)
|
||||
# Copyright (C) 1998-2020 This_file_is_part_of_KDE
|
||||
# This file is distributed under the license LGPL version 2.1 or
|
||||
# version 3 or later versions approved by the membership of KDE e.V.
|
||||
#
|
||||
# Sebastià Pla i Sanz <sps@sastia.com>, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007.
|
||||
# Antoni Bella Pérez <antonibella5@yahoo.com>, 2003, 2006, 2011, 2012, 2013, 2014, 2020.
|
||||
# Albert Astals Cid <aacid@kde.org>, 2004, 2005, 2007.
|
||||
# Josep M. Ferrer <txemaq@gmail.com>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015.
|
||||
# Robert Millan <rmh@aybabtu.com>, 2009.
|
||||
# Orestes Mas <orestes@tsc.upc.edu>, 2010.
|
||||
# Empar Montoro Martín <montoro_mde@gva.es>, 2019.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2020-07-22 13:07+0200\n"
|
||||
"Last-Translator: Antoni Bella Pérez <antonibella5@yahoo.com>\n"
|
||||
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
|
||||
"Language: ca@valencia\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Lokalize 20.04.3\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Accelerator-Marker: &\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Seleccioneu el so que s'ha de reproduir"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Reproduïx un &so"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Mostra un missatge en una finestra emer&gent"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Configura les notificacions"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Estat"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Títol"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Descripció"
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,63 @@
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Lukáš Tinkl <lukas@kde.org>, 2010, 2011, 2012.
|
||||
# Vít Pelčák <vit@pelcak.org>, 2011, 2012, 2013, 2014, 2015, 2017, 2019.
|
||||
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012, 2013.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kdelibs4\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2019-11-07 12:00+0100\n"
|
||||
"Last-Translator: Vit Pelcak <vit@pelcak.org>\n"
|
||||
"Language-Team: Czech <kde-i18n-doc@kde.org>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Lokalize 19.08.2\n"
|
||||
"X-Language: cs_CZ\n"
|
||||
"X-Source-Language: en_US\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Vybrat zvukový soubor k přehrání"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Přehrát &zvuk"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Zobrazit zprávu ve &vyskakovacím okně"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Upravit upozornění"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Stav"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Název"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Popis"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,118 @@
|
||||
# translation of knotifyconfig6.pot to Esperanto
|
||||
# Esperantaj mesaĝoj por "knotifyconfig"
|
||||
# Copyright (C) 1998,2002, 2003, 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
|
||||
# Wolfram Diestel <wolfram@steloj.de>, 1998.
|
||||
# Heiko Evermann <heiko@evermann.de>, 2002, 2003.
|
||||
# Matthias Peick <matthias@peick.de>, 2004, 2005.
|
||||
# Oliver Kellogg <olivermkellogg@gmail.com>,2007.
|
||||
# Cindy McKee <cfmckee@gmail.com>, 2007, 2008.
|
||||
# Axel Rousseau <axel@esperanto-jeunes.org>, 2009.
|
||||
# Michael Moroni <michael.moroni@mailoo.org>, 2012.
|
||||
#
|
||||
# Minuskloj: ĉ ĝ ĵ ĥ ŝ ŭ Majuskloj: Ĉ Ĝ Ĵ Ĥ Ŝ Ŭ
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2023-03-29 20:48+0100\n"
|
||||
"Last-Translator: Oliver Kellogg <olivermkellogg@gmail.com>\n"
|
||||
"Language-Team: Esperanto <kde-i18n-eo@kde.org>\n"
|
||||
"Language: eo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Lokalize 1.4\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Elekti la ludendan sonon"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Ludi &sonon"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Montri mesaĝon en ŝ&prucmenuo"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Agordi atentigojn"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Stato"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Titolo"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Priskribo"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "Protokoli al dosiero"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "Marki eron de &taskobreto"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "Ruli &komandon"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "Elektu la rulendan komandon"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "&Elparolo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Ĝi specifas kiel knotify devus elparoli la okazon kiam ricevata. Se "
|
||||
#~ "vi elektas \"Elparoli propran tekston\", enigu la tekston en la kesto. Vi "
|
||||
#~ "povus uzi la sekvajn anstataŭajn ĉenojn en la teksto:<dl><dt>%e</"
|
||||
#~ "dt><dd>Nomo de la okazo</dd><dt>%a</dt> <dd>Aplikaĵo, kiu sendis la "
|
||||
#~ "okazon</dd><dt>%m</dt><dd>La mesaĝo sendita de la aplikaĵo</dd></dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "Elparoli mesaĝon de la okazo"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "Elparoli nomon de la okazo"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "Elparoli propran tekston"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Ĝi specifas kiel Jovie devus elparoli la okazon kiam ricevata. Se vi "
|
||||
#~ "elektas \"Elparoli propran tekston\", enigu la tekston en la kesto. Vi "
|
||||
#~ "povus uzi la sekvajn anstataŭajn ĉenojn en la teksto:<dl><dt>%e</"
|
||||
#~ "dt><dd>Nomo de la okazo</dd><dt>%a</dt> <dd>Aplikaĵo, kiu sendis la "
|
||||
#~ "okazon</dd><dt>%m</dt><dd>La mesaĝo sendita de la aplikaĵo</dd></dl></qt>"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,113 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR This_file_is_part_of_KDE
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# GunChleoc <fios@foramnagaidhlig.net>, 2014, 2015.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig5\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2015-11-04 15:13+0000\n"
|
||||
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
|
||||
"Language-Team: Fòram na Gàidhlig\n"
|
||||
"Language: gd\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : "
|
||||
"(n > 2 && n < 20) ? 2 : 3;\n"
|
||||
"X-Generator: Poedit 1.8.4\n"
|
||||
"X-Project-Style: kde\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Tagh an fhuaim ri cluich"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Cluich &fuaim"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Seall teachdaireachd ann am &priob-uinneag"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Rèitich na brathan"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Staid"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Tiotal"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Tuairisgeul"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "Cuir ri loga ann am faidhle"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "Cuir comharra air innteart ann am &bàr nan saothair"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "&Ruith àithne"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "Tagh an t-àithne ri ruith"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "Cai&nnt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Sònraichidh seo an dòigh a chanas knotify am fiosrachadh mun "
|
||||
#~ "tachartas nuair a thèid fhaighinn. Ma thaghas tu \"Can teacsa gnàthaichte"
|
||||
#~ "\", cuir an teacsa a-steach sa bhogsa. Faodaidh tu na sreangan ionaid "
|
||||
#~ "seo a chleachdadh san teacsa:<dl><dt>%e</dt><dd>Ainm an tachartais</"
|
||||
#~ "dd><dt>%a</dt><dd>An aplacaid a chuir an tachartas</dd><dt>%m</dt><dd>An "
|
||||
#~ "teachdaireachd a chuir an aplacaid</dd></dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "Can teachdaireachd an tachartais"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "Can ainm an tachartais"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "Can teacsa gnàthaichte"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Sònraichidh seo an dòigh a chanas Jovie am fiosrachadh mun tachartas "
|
||||
#~ "nuair a thèid fhaighinn. Ma thaghas tu \"Can teacsa gnàthaichte\", cuir "
|
||||
#~ "an teacsa a-steach sa bhogsa. Faodaidh tu na sreangan ionaid seo a "
|
||||
#~ "chleachdadh san teacsa:<dl><dt>%e</dt><dd>Ainm an tachartais</dd><dt>%a</"
|
||||
#~ "dt><dd>An aplacaid a chuir an tachartas</dd><dt>%m</dt><dd>An "
|
||||
#~ "teachdaireachd a chuir an aplacaid</dd></dl></qt>"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,758 @@
|
||||
# Hausa translation for kdelibs strings.
|
||||
# Copyright 2009 Adriaan de Groot, Mustapha Abubakar, Ibrahim Dasuna
|
||||
# This file is distributed under the same license as the kdelibs package.
|
||||
#
|
||||
# Adriaan de Groot <groot@kde.org>, 2009.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kdelibs4\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2009-03-17 11:22+0100\n"
|
||||
"Last-Translator: Adriaan de Groot <groot@kde.org>\n"
|
||||
"Language-Team: Hausa <kde-i18n-doc@lists.kde.org>\n"
|
||||
"Language: ha\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Lokalize 0.2\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr ""
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Haɗawa Sanerwa"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#~ msgctxt "NAME OF TRANSLATORS"
|
||||
#~ msgid "Your names"
|
||||
#~ msgstr "Mustapha Abubakar,Adriaan de Groot,Ibrahim Dasuna"
|
||||
|
||||
#~ msgctxt "EMAIL OF TRANSLATORS"
|
||||
#~ msgid "Your emails"
|
||||
#~ msgstr ",groot@kde.org,"
|
||||
|
||||
#~ msgid "&About"
|
||||
#~ msgstr "&Game da"
|
||||
|
||||
#~ msgid "A&uthor"
|
||||
#~ msgstr "&Mawallafi"
|
||||
|
||||
#~ msgid "A&uthors"
|
||||
#~ msgstr "&Mawallafa"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please use <a href=\"http://bugs.kde.org\">http://bugs.kde.org</a> to "
|
||||
#~ "report bugs.\n"
|
||||
#~ msgstr ""
|
||||
#~ "Yi amfani da <a href=\"http://bugs.kde.org\">http://bugs.kde.org</a> "
|
||||
#~ "domin sanar da matsaloli.\n"
|
||||
|
||||
#~ msgid "Please report bugs to <a href=\"mailto:%1\">%2</a>.\n"
|
||||
#~ msgstr "Sanar da matsaloli ga <a href=\"mailto:%1\">%2</a>.\n"
|
||||
|
||||
#~ msgid "&Thanks To"
|
||||
#~ msgstr "G&odiya ga"
|
||||
|
||||
#~ msgid "T&ranslation"
|
||||
#~ msgstr "Ma&ffassara"
|
||||
|
||||
#~ msgid "&License Agreement"
|
||||
#~ msgstr "Yarjejeniyar &lasisi"
|
||||
|
||||
#~ msgid "Author"
|
||||
#~ msgstr "Mawallafi"
|
||||
|
||||
#~ msgid "Other Contributors:"
|
||||
#~ msgstr "Sauran mataimaka:"
|
||||
|
||||
#~ msgid "About %1"
|
||||
#~ msgstr "Bayani akan %1"
|
||||
|
||||
#~ msgid "&Language:"
|
||||
#~ msgstr "&Yare:"
|
||||
|
||||
#~ msgid "am"
|
||||
#~ msgstr "safe"
|
||||
|
||||
#~ msgid "pm"
|
||||
#~ msgstr "yamma"
|
||||
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Yau"
|
||||
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Jiya"
|
||||
|
||||
#~ msgid "KDE Daemon"
|
||||
#~ msgstr "KDE Fatalwa"
|
||||
|
||||
#~ msgctxt "show help"
|
||||
#~ msgid "&Help"
|
||||
#~ msgstr "&Agaji"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Close the current document."
|
||||
#~ msgid "Create new document"
|
||||
#~ msgstr "Rufe wannan -dokumen-"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "&Close Document"
|
||||
#~ msgid "Save document"
|
||||
#~ msgstr "&Rufe -dokumen-"
|
||||
|
||||
#~ msgid "&Close"
|
||||
#~ msgstr "&Rufe"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "&Close Document"
|
||||
#~ msgid "Close document"
|
||||
#~ msgstr "&Rufe -dokumen-"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "&Close Document"
|
||||
#~ msgid "Print document"
|
||||
#~ msgstr "&Rufe -dokumen-"
|
||||
|
||||
#~ msgid "Configure &Notifications..."
|
||||
#~ msgstr "Haɗawa &Sanerwa"
|
||||
|
||||
#~ msgid "&About %1"
|
||||
#~ msgstr "&Bayani akan %1"
|
||||
|
||||
#~ msgid "About &KDE"
|
||||
#~ msgstr "Bayani akan &KDE"
|
||||
|
||||
#~ msgid "License Agreement"
|
||||
#~ msgstr "Yarjejeniyar lasisi"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Other Contributors:"
|
||||
#~ msgctxt "Action to send an email to a contributor"
|
||||
#~ msgid "Email contributor"
|
||||
#~ msgstr "Sauran mataimaka:"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Other Contributors:"
|
||||
#~ msgctxt "Action to send an email to a contributor"
|
||||
#~ msgid ""
|
||||
#~ "Email contributor\n"
|
||||
#~ "%1"
|
||||
#~ msgstr "Sauran mataimaka:"
|
||||
|
||||
#~ msgctxt "@item Contributor name in about dialog."
|
||||
#~ msgid "%1"
|
||||
#~ msgstr "%1"
|
||||
|
||||
#~ msgid "About KDE"
|
||||
#~ msgstr "Bayani akan KDE"
|
||||
|
||||
#~ msgctxt "About KDE"
|
||||
#~ msgid "&About"
|
||||
#~ msgstr "&Game da"
|
||||
|
||||
#~ msgid "&Join KDE"
|
||||
#~ msgstr "&Tarayya da KDE"
|
||||
|
||||
#~ msgid "&Support KDE"
|
||||
#~ msgstr "&Temakama KDE"
|
||||
|
||||
#~ msgctxt "Email sender address"
|
||||
#~ msgid "From:"
|
||||
#~ msgstr "Daga:"
|
||||
|
||||
#~ msgid "Configure Email..."
|
||||
#~ msgstr "Haɗawa wasikan lantarki"
|
||||
|
||||
#~ msgctxt "Email receiver address"
|
||||
#~ msgid "To:"
|
||||
#~ msgstr "Zuwa:"
|
||||
|
||||
#~ msgid "&Send"
|
||||
#~ msgstr "&Aika"
|
||||
|
||||
#~ msgid "Send bug report."
|
||||
#~ msgstr "Aika bayanin matsala."
|
||||
|
||||
#~ msgid "Send this bug report to %1."
|
||||
#~ msgstr "Aika wannan bayanin matsala zuwa %1."
|
||||
|
||||
#~ msgid "OS:"
|
||||
#~ msgstr "Tsarin budanarwa:"
|
||||
|
||||
#~ msgid "Compiler:"
|
||||
#~ msgstr "Mehadawa:"
|
||||
|
||||
#~ msgid "Se&verity"
|
||||
#~ msgstr "Mahimmanchi"
|
||||
|
||||
#~ msgid "Critical"
|
||||
#~ msgstr "Tsanani"
|
||||
|
||||
#~ msgid "Grave"
|
||||
#~ msgstr "Mantikar Tsanani"
|
||||
|
||||
#~ msgctxt "normal severity"
|
||||
#~ msgid "Normal"
|
||||
#~ msgstr "Matsala"
|
||||
|
||||
#~ msgid "Wishlist"
|
||||
#~ msgstr "Abinda zan so"
|
||||
|
||||
#~ msgid "Translation"
|
||||
#~ msgstr "Fassara"
|
||||
|
||||
#~ msgid "S&ubject: "
|
||||
#~ msgstr "Abinda wasika yerkoni tsa"
|
||||
|
||||
#~ msgid "Configure"
|
||||
#~ msgstr "Haɗawa"
|
||||
|
||||
#~ msgid "1"
|
||||
#~ msgstr "1"
|
||||
|
||||
#~ msgid "6"
|
||||
#~ msgstr "6"
|
||||
|
||||
#~ msgid "2"
|
||||
#~ msgstr "2"
|
||||
|
||||
#~ msgid "9"
|
||||
#~ msgstr "9"
|
||||
|
||||
#~ msgid "4"
|
||||
#~ msgstr "4"
|
||||
|
||||
#~ msgid "16"
|
||||
#~ msgstr "16"
|
||||
|
||||
#~ msgctxt "@action:button filter-yes"
|
||||
#~ msgid "%1"
|
||||
#~ msgstr "%1"
|
||||
|
||||
#~ msgctxt "@action:button filter-no"
|
||||
#~ msgid "%1"
|
||||
#~ msgstr "%1"
|
||||
|
||||
#~ msgctxt "@action:button filter-continue"
|
||||
#~ msgid "%1"
|
||||
#~ msgstr "%1"
|
||||
|
||||
#~ msgctxt "@action:button filter-cancel"
|
||||
#~ msgid "%1"
|
||||
#~ msgstr "%1"
|
||||
|
||||
#~ msgctxt "@action:button post-filter"
|
||||
#~ msgid "."
|
||||
#~ msgstr "."
|
||||
|
||||
#~ msgid "Question"
|
||||
#~ msgstr "Tambaya"
|
||||
|
||||
#~ msgid "Information"
|
||||
#~ msgstr "Bayani"
|
||||
|
||||
#~ msgid "Password:"
|
||||
#~ msgstr "Harrufan sirri:"
|
||||
|
||||
#~ msgid "Username:"
|
||||
#~ msgstr "Sunan shiga:"
|
||||
|
||||
#~ msgid "Action"
|
||||
#~ msgstr "Aiki"
|
||||
|
||||
#~ msgid "Shortcut"
|
||||
#~ msgstr "Gajeran hanya"
|
||||
|
||||
#~ msgid "Alternate"
|
||||
#~ msgstr "Wata gajeran hanya"
|
||||
|
||||
#~ msgctxt "@item:intable Action name in shortcuts configuration"
|
||||
#~ msgid "%1"
|
||||
#~ msgstr "%1"
|
||||
|
||||
#~ msgid "Remove"
|
||||
#~ msgstr "Cire"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Tsaya"
|
||||
|
||||
#~ msgctxt "@action:button"
|
||||
#~ msgid "Close"
|
||||
#~ msgstr "Rufe"
|
||||
|
||||
#~ msgctxt "@action"
|
||||
#~ msgid "Close"
|
||||
#~ msgstr "Rufe"
|
||||
|
||||
#~ msgctxt "@action"
|
||||
#~ msgid "Help"
|
||||
#~ msgstr "Agaji"
|
||||
|
||||
#~ msgctxt "@action"
|
||||
#~ msgid "Configure Notifications"
|
||||
#~ msgstr "Haɗawa Sanerwa"
|
||||
|
||||
#~ msgctxt "@action"
|
||||
#~ msgid "About KDE"
|
||||
#~ msgstr "Bayani akan KDE"
|
||||
|
||||
#~ msgid "Default language:"
|
||||
#~ msgstr "Yaren farko:"
|
||||
|
||||
#~ msgid "&Yes"
|
||||
#~ msgstr "&Ee"
|
||||
|
||||
#~ msgid "Yes"
|
||||
#~ msgstr "Ee"
|
||||
|
||||
#~ msgid "&No"
|
||||
#~ msgstr "&A'a"
|
||||
|
||||
#~ msgid "No"
|
||||
#~ msgstr "A'a"
|
||||
|
||||
#~ msgid "Close the current window or document"
|
||||
#~ msgstr "Rufe wannan tagar"
|
||||
|
||||
#~ msgid "&Close Window"
|
||||
#~ msgstr "&Rufe taga"
|
||||
|
||||
#~ msgid "Close the current window."
|
||||
#~ msgstr "Rufe wannan tagar."
|
||||
|
||||
#~ msgid "&Close Document"
|
||||
#~ msgstr "&Rufe -dokumen-"
|
||||
|
||||
#~ msgid "Close the current document."
|
||||
#~ msgstr "Rufe wannan -dokumen-"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Today"
|
||||
#~ msgctxt "@option today"
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Yau"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Yesterday"
|
||||
#~ msgctxt "@option yesterday"
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Jiya"
|
||||
|
||||
#~ msgid "&Remove"
|
||||
#~ msgstr "&Cire"
|
||||
|
||||
#~ msgid "&Help"
|
||||
#~ msgstr "&Agaji"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Settings"
|
||||
#~ msgctxt "@title:menu"
|
||||
#~ msgid "Toolbar Settings"
|
||||
#~ msgstr "Tsarawa"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Translation"
|
||||
#~ msgctxt "Toolbar orientation"
|
||||
#~ msgid "Orientation"
|
||||
#~ msgstr "Fassara"
|
||||
|
||||
#~ msgid "&Settings"
|
||||
#~ msgstr "&Tsarawa"
|
||||
|
||||
#~ msgid "Description:"
|
||||
#~ msgstr "ƙwatan tawa:"
|
||||
|
||||
#~ msgid "Pause"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#~ msgid "Settings"
|
||||
#~ msgstr "Tsarawa"
|
||||
|
||||
#~ msgid "Quit"
|
||||
#~ msgstr "Kashi"
|
||||
|
||||
#~ msgid "Quit application..."
|
||||
#~ msgstr "Rufewa -afelikashon-"
|
||||
|
||||
#~ msgid "?"
|
||||
#~ msgstr "?"
|
||||
|
||||
#~ msgid "Author:"
|
||||
#~ msgstr "Mawallafi:"
|
||||
|
||||
#~ msgid "GPL"
|
||||
#~ msgstr "GPL"
|
||||
|
||||
#~ msgid "LGPL"
|
||||
#~ msgstr "LGPL"
|
||||
|
||||
#~ msgid "BSD"
|
||||
#~ msgstr "BSD"
|
||||
|
||||
#~ msgid "Language:"
|
||||
#~ msgstr "Yare:"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Settings"
|
||||
#~ msgid "Apply Settings"
|
||||
#~ msgstr "Tsarawa"
|
||||
|
||||
#~ msgid "Color for links"
|
||||
#~ msgstr "Launin ma'isa"
|
||||
|
||||
#~ msgid "What color links should be that have not yet been clicked on"
|
||||
#~ msgstr ""
|
||||
#~ "Wani launi ma'isa kake so launin ma'isar ya kasance wanda ba a taɓa ba"
|
||||
|
||||
#~ msgid "Color for visited links"
|
||||
#~ msgstr "Launin ma'isar da aka taɓa"
|
||||
|
||||
#~ msgid "What country"
|
||||
#~ msgstr "Wacce ƙasa"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Used to determine how to display numbers, currency and time/date, for "
|
||||
#~ "example"
|
||||
#~ msgstr "ƙasarce take zaɓar haruffa, lambobi da lokaci da take amfani dashi"
|
||||
|
||||
#~ msgid "Path to the autostart directory"
|
||||
#~ msgstr "Hanyan jakar farawa da kai"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "About %1"
|
||||
#~ msgctxt "Used only for plugins"
|
||||
#~ msgid "About %1"
|
||||
#~ msgstr "Bayani akan %1"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Today"
|
||||
#~ msgctxt ""
|
||||
#~ "referring to a filter on the modification and usage date of files/"
|
||||
#~ "resources"
|
||||
#~ msgid "Today"
|
||||
#~ msgstr "Yau"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Yesterday"
|
||||
#~ msgctxt ""
|
||||
#~ "referring to a filter on the modification and usage date of files/"
|
||||
#~ "resources"
|
||||
#~ msgid "Yesterday"
|
||||
#~ msgstr "Jiya"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "A&uthor"
|
||||
#~ msgid "Before"
|
||||
#~ msgstr "&Mawallafi"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "A&uthor"
|
||||
#~ msgctxt ""
|
||||
#~ "@option:check An item in a list of resources that allows to query for "
|
||||
#~ "more resources to put in the list"
|
||||
#~ msgid "More..."
|
||||
#~ msgstr "&Mawallafi"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "&Close Document"
|
||||
#~ msgctxt "@option:check A filter on file type"
|
||||
#~ msgid "Documents"
|
||||
#~ msgstr "&Rufe -dokumen-"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Tada"
|
||||
|
||||
#~ msgid "What time is it? Click to update."
|
||||
#~ msgstr "Ƙarfe nawa? Denna don sabuntawa."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Today"
|
||||
#~ msgctxt "@info/plain"
|
||||
#~ msgid "today"
|
||||
#~ msgstr "Yau"
|
||||
|
||||
#~ msgctxt "@item Author name in about dialog"
|
||||
#~ msgid "%1"
|
||||
#~ msgstr "%1"
|
||||
|
||||
#~ msgid "..."
|
||||
#~ msgstr "..."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Question"
|
||||
#~ msgid "description"
|
||||
#~ msgstr "Tambaya"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Author"
|
||||
#~ msgid "Autor Name"
|
||||
#~ msgstr "Mawallafi"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Indian National month 10 - LongNamePossessive"
|
||||
#~ msgid "of Paush"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Indian National month 10 - ShortName"
|
||||
#~ msgid "Pau"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Indian National month 10 - LongName"
|
||||
#~ msgid "Paush"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 2 - ShortNamePossessive"
|
||||
#~ msgid "of Pao"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 7 - ShortNamePossessive"
|
||||
#~ msgid "of Par"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 8 - ShortNamePossessive"
|
||||
#~ msgid "of Pam"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 9 - ShortNamePossessive"
|
||||
#~ msgid "of Pas"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 10 - ShortNamePossessive"
|
||||
#~ msgid "of Pan"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 2 - LongNamePossessive"
|
||||
#~ msgid "of Paope"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 4 - LongNamePossessive"
|
||||
#~ msgid "of Kiahk"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 8 - LongNamePossessive"
|
||||
#~ msgid "of Parmoute"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 9 - LongNamePossessive"
|
||||
#~ msgid "of Pashons"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 10 - LongNamePossessive"
|
||||
#~ msgid "of Paone"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 2 - ShortName"
|
||||
#~ msgid "Pao"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Yes"
|
||||
#~ msgctxt "Coptic month 6 - ShortName"
|
||||
#~ msgid "Mes"
|
||||
#~ msgstr "Ee"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 7 - ShortName"
|
||||
#~ msgid "Par"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "am"
|
||||
#~ msgctxt "Coptic month 8 - ShortName"
|
||||
#~ msgid "Pam"
|
||||
#~ msgstr "safe"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 9 - ShortName"
|
||||
#~ msgid "Pas"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 10 - ShortName"
|
||||
#~ msgid "Pan"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 2 - LongName"
|
||||
#~ msgid "Paope"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Author"
|
||||
#~ msgctxt "Coptic month 3 - LongName"
|
||||
#~ msgid "Hathor"
|
||||
#~ msgstr "Mawallafi"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 8 - LongName"
|
||||
#~ msgid "Parmoute"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 9 - LongName"
|
||||
#~ msgid "Pashons"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic month 10 - LongName"
|
||||
#~ msgid "Paone"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Yes"
|
||||
#~ msgctxt "Coptic weekday 1 - ShortDayName"
|
||||
#~ msgid "Pes"
|
||||
#~ msgstr "Ee"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic weekday 2 - ShortDayName"
|
||||
#~ msgid "Psh"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic weekday 6 - ShortDayName"
|
||||
#~ msgid "Psa"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Coptic weekday 1 - LongDayName"
|
||||
#~ msgid "Pesnau"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Ethiopian month 4 - ShortNamePossessive"
|
||||
#~ msgid "of Tah"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Ethiopian month 13 - ShortNamePossessive"
|
||||
#~ msgid "of Pag"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Ethiopian month 13 - LongNamePossessive"
|
||||
#~ msgid "of Pagumen"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Yes"
|
||||
#~ msgctxt "Ethiopian month 1 - ShortName"
|
||||
#~ msgid "Mes"
|
||||
#~ msgstr "Ee"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "am"
|
||||
#~ msgctxt "Ethiopian month 11 - ShortName"
|
||||
#~ msgid "Ham"
|
||||
#~ msgstr "safe"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Ethiopian month 13 - ShortName"
|
||||
#~ msgid "Pag"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Ethiopian month 13 - LongName"
|
||||
#~ msgid "Pagumen"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "am"
|
||||
#~ msgctxt "Ethiopian weekday 4 - ShortDayName"
|
||||
#~ msgid "Ham"
|
||||
#~ msgstr "safe"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Pause"
|
||||
#~ msgctxt "Ethiopian weekday 4 - LongDayName"
|
||||
#~ msgid "Hamus"
|
||||
#~ msgstr "Dakata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Action"
|
||||
#~ msgid "Long Action"
|
||||
#~ msgstr "Aiki"
|
||||
|
||||
#~ msgid "Path for the trash can"
|
||||
#~ msgstr "Hanyan zubar da shara"
|
||||
|
||||
#~ msgid "Path to documents folder"
|
||||
#~ msgstr "Hanyan jakar -dokumen-"
|
||||
@@ -0,0 +1,126 @@
|
||||
# translation of kdelibs4.po to hebrew
|
||||
# Translation of kdelibs4.po to Hebrew
|
||||
# translation of kdelibs4.po to
|
||||
# KDE Hebrew Localization Project
|
||||
#
|
||||
# In addition to the copyright owners of the program
|
||||
# which this translation accompanies, this translation is
|
||||
# Copyright (C) 1998 Erez Nir <erez-n@actcom.co.il>
|
||||
# Copyright (C) 1999-2003 Meni Livne <livne@kde.org>
|
||||
#
|
||||
# This translation is subject to the same Open Source
|
||||
# license as the program which it accompanies.
|
||||
#
|
||||
# Diego Iastrubni <elcuco@kde.org>, 2003.
|
||||
# Diego Iastrubni <elcuco@kde.org>, 2003, 2004.
|
||||
# Diego Iastrubni <elcuco@kde.org>, 2005, 2006, 2007, 2008, 2009, 2012, 2014.
|
||||
# Meni Livne <livne@kde.org>, 2007.
|
||||
# tahmar1900 <tahmar1900@gmail.com>, 2008, 2009.
|
||||
# Elkana Bardugo <ttv200@gmail.com>, 2017. #zanata
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig5\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2017-05-16 06:50-0400\n"
|
||||
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
|
||||
"Language-Team: Hebrew <kde-i18n-doc@kde.org>\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Zanata 3.9.6\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
|
||||
"n % 10 == 0) ? 2 : 3));\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "בחר את הצליל שיש לנגן"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "נגן &צליל"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "הצג הודעה &מוקפצת"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "הגדרות הודעות"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "מצב"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "כותרת"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "תיאור"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "שמור רישום בקובץ"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "סמן &בשורת־המשימות"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "הרץ &פקודה"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "בחר את הפקודה להרצה"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "די&בור"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt> קובע איך Jovie צריך להקריא את הטקסט כאשר האירוע מתקבל. אם תבחר "
|
||||
#~ "\"הקרא טקסט מותאם אישית\", הכנס את הטקסט בתיבה. באפשרותך להשתמש בהחלפות "
|
||||
#~ "הבאות בטקסט: <dl><dt>%e</dt><dd>השם של האירוע</dd> <dt>%a</dt><dd>היישום "
|
||||
#~ "שיזם את האירוע</dd> <dt>%m</dt><dd>ההודעה שנשלחה על ידי היישום</dd> </"
|
||||
#~ "dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "הקרא את את טקסט האירוע"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "הקרא את שם האירוע"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "הקרא טקסט מותאם אישית"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt> קובע איך Jovie צריך להקריא את הטקסט כאשר האירוע מתקבל. אם תבחר "
|
||||
#~ "\"הקרא טקסט מותאם אישית\", הכנס את הטקסט בתיבה. באפשרותך להשתמש בהחלפות "
|
||||
#~ "הבאות בטקסט: <dl><dt>%e</dt><dd>השם של האירוע</dd> <dt>%a</dt><dd>היישום "
|
||||
#~ "שיזם את האירוע</dd> <dt>%m</dt><dd>ההודעה שנשלחה על ידי היישום</dd> </"
|
||||
#~ "dl></qt>"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,69 @@
|
||||
# Translation of kdelibs4 into Japanese.
|
||||
# This file is distributed under the same license as the kdelibs package.
|
||||
# Taiki Komoda <kom@kde.gr.jp>, 2002, 2004, 2006, 2010.
|
||||
# Noboru Sinohara <shinobo@leo.bekkoame.ne.jp>, 2004.
|
||||
# Toyohiro Asukai <toyohiro@ksmplus.com>, 2004.
|
||||
# Kurose Shushi <md81@bird.email.ne.jp>, 2004.
|
||||
# AWASHIRO Ikuya <ikuya@oooug.jp>, 2004.
|
||||
# Shinichi Tsunoda <tsuno@ngy.1st.ne.jp>, 2005.
|
||||
# Yukiko Bando <ybando@k6.dion.ne.jp>, 2006, 2007, 2008, 2009, 2010.
|
||||
# Fumiaki Okushi <okushi@kde.gr.jp>, 2006, 2007, 2008, 2010, 2011.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kdelibs4\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 14:05-0700\n"
|
||||
"Last-Translator: Fumiaki Okushi <okushi@kde.gr.jp>\n"
|
||||
"Language-Team: Japanese <kde-jp@kde.org>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Accelerator-Marker: &\n"
|
||||
"X-Text-Markup: kde4\n"
|
||||
"X-Generator: Lokalize 1.1\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "再生するサウンドを選択"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "サウンドを再生(&S)"
|
||||
|
||||
# ACCELERATOR changed by translator
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "ポップアップにメッセージを表示(&U)"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "通知の設定"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "状態"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "タイトル"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "説明"
|
||||
@@ -0,0 +1,110 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR This file is copyright:
|
||||
# This file is distributed under the same license as the knotifyconfig package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2022-12-01 07:00+0100\n"
|
||||
"Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>\n"
|
||||
"Language-Team: Georgian <kde-i18n-doc@kde.org>\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.2\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "აირჩიეთ დასაკრავი ხმა"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "ხმის &დაკვრა"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "აირჩიეთ მხტუნავი ფანჯრის &ხმა"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "შეტყობინებების მორგება"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "State"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "სათაური"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "დახასიათება"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "ჟურნალის ფაილში ჩაწერა"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "&ხელსაწყოების ზოლის ელემენტის დანიშვნა"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "&ბრძანების გაშვება"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "აირჩიეთ გასაშვები ბრძანება"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "&ლაპარაკი"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>განსაზღვრავს, შემოსულ მოვლენას knotify როგორ უნდა ელაპარაკოს.. თუ "
|
||||
#~ "აირჩევთ \"მითითებული ტექსტის თქმას\", შეიყვანეთ ტექსტი. ტექსტში შემდეგი "
|
||||
#~ "ჩამნაცვლებლები შეგიძლიათ გამოიყენოთ:<dl><dt>%e</dt><dd>მოვლენის სახელი</"
|
||||
#~ "dd><dt>%a</dt><dd>აპლიკაცია, რომელმაც მოვლენა გამოაგზავნა</dd><dt>%m</"
|
||||
#~ "dt><dd>აპლიკაციის მიერ გამოგზავნილი შეტყობინება</dd></dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "მოვლენის შეტყობინების წარმოთქმა"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "მოვლენის სახელის წარმოთქმა"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "ხელით მითითებული ტექსტის წარმოთქმა"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>განსაზღვრავს, შემოსულ მოვლენას Jovie როგორ უნდა ელაპარაკოს.. თუ "
|
||||
#~ "აირჩევთ \"მითითებული ტექსტის თქმას\", შეიყვანეთ ტექსტი. ტექსტში შემდეგი "
|
||||
#~ "ჩამნაცვლებლები შეგიძლიათ გამოიყენოთ:<dl><dt>%e</dt><dd>მოვლენის სახელი</"
|
||||
#~ "dd><dt>%a</dt><dd>აპლიკაცია, რომელმაც მოვლენა გამოაგზავნა</dd><dt>%m</"
|
||||
#~ "dt><dd>აპლიკაციის მიერ გამოგზავნილი შეტყობინება</dd></dl></qt>"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,110 @@
|
||||
# Korean messages for kdelibs.
|
||||
# Copyright (C) Free Software Foundation, Inc.
|
||||
# Cho Sung Jae <cho.sungjae@gmail.com>, 2007.
|
||||
# Shinjo Park <kde@peremen.name>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2020, 2022.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kdelibs4\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2022-05-18 23:52+0200\n"
|
||||
"Last-Translator: Shinjo Park <kde@peremen.name>\n"
|
||||
"Language-Team: Korean <kde-kr@kde.org>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Lokalize 21.12.3\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "재생할 소리 선택"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "소리 재생하기(&S)"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "팝업 창에 메시지 표시(&P)"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "알림 설정"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "상태"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "제목"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "설명"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "파일로 기록"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "작업 표시줄 항목 강조(&T)"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "명령 실행(&C)"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "실행할 명령 선택"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "말하기(&E)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>knotify에서 받은 이벤트를 어떻게 말할 것인지 설정합니다. \"사용자 정"
|
||||
#~ "의 텍스트 말하기\"를 선택했으면 상자에 텍스트를 입력하십시오. 텍스트의 다"
|
||||
#~ "음 문자열은 대체됩니다:<dl><dt>%e</dt><dd>이벤트 이름</dd><dt>%a</dt><dd>"
|
||||
#~ "이벤트를 보낸 프로그램</dd><dt>%m</dt><dd>프로그램이 보낸 메시지</dd></"
|
||||
#~ "dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "이벤트 메시지 말하기"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "이벤트 이름 말하기"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "사용자 정의 텍스트 말하기"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Jovie에서 받은 이벤트를 어떻게 말할 것인지 설정합니다. \"사용자 정의 "
|
||||
#~ "텍스트 말하기\"를 선택했으면 상자에 텍스트를 입력하십시오. 텍스트의 다음 "
|
||||
#~ "문자열은 대체됩니다:<dl><dt>%e</dt><dd>이벤트 이름</dd><dt>%a</dt><dd>이벤"
|
||||
#~ "트를 보낸 프로그램</dd><dt>%m</dt><dd>프로그램이 보낸 메시지</dd></dl></"
|
||||
#~ "qt>"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,115 @@
|
||||
# translation of kdelibs4.po to Lithuanian
|
||||
# Ričardas Čepas <rch@richard.eu.org>, 2002-2004.
|
||||
# Donatas Glodenis <dgvirtual@akl.lt>, 2004-2009.
|
||||
# Gintautas Miselis <gintautas@miselis.lt>, 2008.
|
||||
# Andrius Štikonas <andrius@stikonas.eu>, 2009.
|
||||
# Tomas Straupis <tomasstraupis@gmail.com>, 2011.
|
||||
# Remigijus Jarmalavičius <remigijus@jarmalavicius.lt>, 2011.
|
||||
# Liudas Ališauskas <liudas.alisauskas@gmail.com>, 2011, 2012, 2013, 2014.
|
||||
# Liudas Alisauskas <liudas@akmc.lt>, 2013.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kdelibs4\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2019-09-05 18:02+0300\n"
|
||||
"Last-Translator: Moo\n"
|
||||
"Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n"
|
||||
"%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n"
|
||||
"X-Generator: Poedit 2.2.1\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Pasirinkti garsą, kurį atkurti"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Atkurti &garsą"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Rodyti pranešimą &iškylančiajame lange"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Konfigūruoti pranešimus"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Būsena"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Pavadinimas"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Aprašas"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "Registruoti į failą"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "Pažymėti &užduočių juostos įrašą"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "Vykdyti &komandą"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "Pasirinkti komandą, kurią vykdyti"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "Š&neka"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Nurodo, kaip knotify turėtų ištarti gautą įvykį. Jei pasirinksite "
|
||||
#~ "„Ištarti tinkintą tekstą“, įveskite tekstą į langelį. Tekste galite "
|
||||
#~ "naudoti šiuos keitinius:<dl><dt>%e</dt><dd>Įvykio pavadinimas</dd><dt>%a</"
|
||||
#~ "dt><dd>Programa, kuri išsiuntė įvykį</dd><dt>%m</dt><dd>Pranešimas, kuri "
|
||||
#~ "išsiuntė programa</dd></dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "Ištarti įvykio pranešimą"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "Ištarti įvykio pavadinimą"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "Ištarti tinkintą tekstą"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Nurodo, kaip Jovie turėtų ištarti gautą įvykį. Jei pasirinksite "
|
||||
#~ "„Ištarti tinkintą tekstą“, įveskite tekstą į langelį. Tekste galite "
|
||||
#~ "naudoti šiuos keitinius:<dl><dt>%e</dt><dd>Įvykio pavadinimas</dd><dt>%a</"
|
||||
#~ "dt><dd>Programa, kuri išsiuntė įvykį</dd><dt>%m</dt><dd>Pranešimas, kurį "
|
||||
#~ "išsiuntė programa</dd></dl></qt>"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,67 @@
|
||||
# Translation of knotifyconfig6 to Norwegian Bokmål
|
||||
#
|
||||
# Knut Yrvin <knut.yrvin@gmail.com>, 2002, 2003, 2004, 2005.
|
||||
# Bjørn Steensrud <bjornst@skogkatt.homelinux.org>, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015.
|
||||
# Eskild Hustvedt <zerodogg@skolelinux.no>, 2004, 2005.
|
||||
# Gaute Hvoslef Kvalnes <gaute@verdsveven.com>, 2004, 2005.
|
||||
# Axel Bojer <fri_programvare@bojer.no>, 2005, 2006.
|
||||
# Nils Kristian Tomren <slx@nilsk.net>, 2005, 2007.
|
||||
# Øyvind A. Holm <sunny@sunbase.org>, 2009.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kdelibs4\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2015-04-30 08:41+0200\n"
|
||||
"Last-Translator: Bjørn Steensrud <bjornst@skogkatt.homelinux.org>\n"
|
||||
"Language-Team: Norwegian Bokmål <l10n-no@lister.huftis.org>\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Lokalize 1.5\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Environment: kde\n"
|
||||
"X-Accelerator-Marker: &\n"
|
||||
"X-Text-Markup: kde4\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Velg lyd som skal spilles av"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "&Spill en lyd"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Vis en melding i et o&ppsprettvindu"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Oppsett av beskjeder"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Tilstand"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Tittel"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Beskrivelse"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,64 @@
|
||||
# Translation of knotifyconfig6 to Norwegian Nynorsk
|
||||
#
|
||||
# Gaute Hvoslef Kvalnes <gaute@verdsveven.com>, 2003, 2004, 2005, 2006.
|
||||
# Håvard Korsvoll <korsvoll@skulelinux.no>, 2003, 2005.
|
||||
# Karl Ove Hufthammer <karl@huftis.org>, 2004, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015.
|
||||
# Eirik U. Birkeland <eirbir@gmail.com>, 2008, 2009, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kdelibs4\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 19:17+0100\n"
|
||||
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
|
||||
"Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
|
||||
"Language: nn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Lokalize 2.0\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Environment: kde\n"
|
||||
"X-Accelerator-Marker: &\n"
|
||||
"X-Text-Markup: kde4\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Vel lyden som skal spelast"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Spel ein &lyd"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Vis melding i &sprettoppvindauge"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Set opp varslingar"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Tilstand"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Tittel"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Skildring"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,200 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kdelibs4\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2015-02-18 12:12+0000\n"
|
||||
"Last-Translator: José Nuno Pires <zepires@gmail.com>\n"
|
||||
"Language-Team: pt <kde-i18n-pt@kde.org>\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POFile-IgnoreConsistency: &Discard\n"
|
||||
"X-POFile-IgnoreConsistency: Enter\n"
|
||||
"X-POFile-IgnoreConsistency: Author\n"
|
||||
"X-POFile-IgnoreConsistency: Open &File\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-POFile-Allow: 2\n"
|
||||
"X-POFile-IgnoreConsistency: Far\n"
|
||||
"X-POFile-SpellExtra: Hspell Koenig KHTML Thaana Telugu KScript Sycoca\n"
|
||||
"X-POFile-SpellExtra: artsmessage KDEInit SOCKS kcmkresources\n"
|
||||
"X-POFile-SpellExtra: ChavePrivadaFalhou KIOTest Han Thaani Jumaada Hangul\n"
|
||||
"X-POFile-SpellExtra: Cherokee Meh KSpell chaveSessao TestWritevCard\n"
|
||||
"X-POFile-SpellExtra: Thulatha Javascript Tagbanwa End Tagalog LTR Oriya\n"
|
||||
"X-POFile-IgnoreConsistency: H:\n"
|
||||
"X-POFile-IgnoreConsistency: Untrusted\n"
|
||||
"X-POFile-IgnoreConsistency: Export\n"
|
||||
"X-POFile-SpellExtra: Hiragana Backspace Print PgUp Ins\n"
|
||||
"X-POFile-SpellExtra: ModificadoresEspaço Yi Lao Return gpg Caps Lock kab\n"
|
||||
"X-POFile-SpellExtra: aRts tags Buhid Insert Gurmukhi Malayalam Scroll\n"
|
||||
"X-POFile-SpellExtra: Delete Ogham PgDn Kannada Tab Home Katakana SysReq\n"
|
||||
"X-POFile-SpellExtra: KConvertTest Khmer OutraOpção Bopomofo\n"
|
||||
"X-POFile-SpellExtra: MarcasCombinatórias Enter UmaOpção Devanagari\n"
|
||||
"X-POFile-SpellExtra: Hanunoo Sinhala JanelaAutoExemplo Lars Ian help\n"
|
||||
"X-POFile-IgnoreConsistency: Try Different\n"
|
||||
"X-POFile-IgnoreConsistency: Delete\n"
|
||||
"X-POFile-IgnoreConsistency: Comment\n"
|
||||
"X-POFile-IgnoreConsistency: &Restore\n"
|
||||
"X-POFile-IgnoreConsistency: Reset\n"
|
||||
"X-POFile-IgnoreConsistency: 0.1\n"
|
||||
"X-POFile-IgnoreConsistency: Forward\n"
|
||||
"X-POFile-SpellExtra: Kanbun CTRL Klash Syloti JS Jan TETest QObject\n"
|
||||
"X-POFile-SpellExtra: Sebastian Geiser Far kdeinit Weis Mordad Yau Hausmann\n"
|
||||
"X-POFile-SpellExtra: execprefix autostart Dirk Nov Elul shanbe Farvardin\n"
|
||||
"X-POFile-SpellExtra: KApplication bin tagcloudtest displayname IFrame yo\n"
|
||||
"X-POFile-SpellExtra: Aza Adar Sáb dah XIM Sha Sonnet testregression Jamo\n"
|
||||
"X-POFile-SpellExtra: Shawwal Bah KConf IPA Hijri Sab Testkhtml Jeroen\n"
|
||||
"X-POFile-SpellExtra: QWidget dumps KJSEmbed Arb qttest stderr Kho ban Kha\n"
|
||||
"X-POFile-SpellExtra: PathLengthExceeded Tai shn Ago KrossTest Ithnain\n"
|
||||
"X-POFile-SpellExtra: klauncher tempfile Aban frame ThreadWeaver Kun yeyo\n"
|
||||
"X-POFile-SpellExtra: Buginese Lue Kislev Khamees home Jumma XDG Khordad\n"
|
||||
"X-POFile-SpellExtra: Zemberek KAboutData Wijnhout Sivan Saami Method Qua\n"
|
||||
"X-POFile-SpellExtra: Molkentin PTY Koivisto onthespot Ord Shvat Jom\n"
|
||||
"X-POFile-SpellExtra: KMultiPart Ahad CJK Aspell Tifinagh NoCARoot Tishrey\n"
|
||||
"X-POFile-SpellExtra: Up KDXSView ModRunner subtexto aifamily Panj path\n"
|
||||
"X-POFile-SpellExtra: NumLock keramik GHNS TestRegressionGui Yek Iyar Ahd\n"
|
||||
"X-POFile-SpellExtra: khtmltests Torben QApplication overthespot caption\n"
|
||||
"X-POFile-SpellExtra: khtml desktop Ispell QWS create Faure Object Limbu\n"
|
||||
"X-POFile-SpellExtra: KLauncher Sauer Hijjah Myanmar NEC BCC Fev Kelly\n"
|
||||
"X-POFile-SpellExtra: Jumee Stephan TestRegression Knoll frames HOME Jum\n"
|
||||
"X-POFile-SpellExtra: DISPLAY KNewStuff Awal Rajab pt plastik InvalidHost\n"
|
||||
"X-POFile-SpellExtra: kdemain STDOUT Jun Jul Kulow Yaum pa Chahar widgets\n"
|
||||
"X-POFile-SpellExtra: man KUnitTest pm KDEPIM TAB Waldo CL CC Balinês\n"
|
||||
"X-POFile-SpellExtra: Nagri Kangxi QLayout qtplugininstance regression\n"
|
||||
"X-POFile-SpellExtra: multipart Jalali Phags Set servname nograb\n"
|
||||
"X-POFile-SpellExtra: International Frame CGIs Stylesheet Library Sex Seg\n"
|
||||
"X-POFile-SpellExtra: KDontChangeTheHostName SO toner Yijing Peter Out\n"
|
||||
"X-POFile-SpellExtra: InvalidCA Le Khmeres Tevet Ordibehesht Anton am al\n"
|
||||
"X-POFile-SpellExtra: Tir Tuebingen Esf Abr ini KLocale KiB WMNET Dingbats\n"
|
||||
"X-POFile-SpellExtra: InvalidPurpose kdehelp id Glagolitic factory Esfand\n"
|
||||
"X-POFile-SpellExtra: Nisan kjs ErrorReadingRoot MiB Copta Shanbe Xvfb\n"
|
||||
"X-POFile-SpellExtra: client Mai Bastian document config TiB Jones AC\n"
|
||||
"X-POFile-SpellExtra: KBuildSycoca Bahman offthespot Mueller Tang ye Thu\n"
|
||||
"X-POFile-SpellExtra: Sabt NKo aisocktype mixed Carriage Thl aiflags\n"
|
||||
"X-POFile-SpellExtra: Muharram Reinhart Kontact Cantonês Page icon\n"
|
||||
"X-POFile-SpellExtra: makekdewidgets ManyColor Heshvan Kross Ith bind Antti\n"
|
||||
"X-POFile-SpellExtra: DXS Tamuz Shahrivar sessionId sh KJSCmd Av KLibLoader\n"
|
||||
"X-POFile-SpellExtra: Mehr GiB Arbi dograb AssinaturaFalhou prefix\n"
|
||||
"X-POFile-SpellExtra: Hexagramas ize AutoAssinado NãoConfiável Qi Down\n"
|
||||
"X-POFile-SpellExtra: directory Índicas ise Oxygen info shared share usr\n"
|
||||
"X-POFile-IgnoreConsistency: Separate Folders\n"
|
||||
"X-POFile-SpellExtra: XDGDATADIRS KTTS Control PrtScr Hyper Sys Win Screen\n"
|
||||
"X-POFile-SpellExtra: Req Break AltGr ReadOnly SHM EOF Re abc ABC QPL Kate\n"
|
||||
"X-POFile-SpellExtra: Serif Sans KFormula URIs raster opengl favicons Solid\n"
|
||||
"X-POFile-SpellExtra: Harald Fernengel KTTSD baseline Resource writeall\n"
|
||||
"X-POFile-SpellExtra: Trüg YiB PiB YB ZB EB PB EiB ZiB GB TB KIdleTest\n"
|
||||
"X-POFile-SpellExtra: Freddi KIdleTime Cha Āshwin Budhavãra Suk Paush\n"
|
||||
"X-POFile-SpellExtra: Shrāvana Somavãra Phālgun Raviãra Phā Māg\n"
|
||||
"X-POFile-SpellExtra: Bhādrapad Chaitra Māgh Sukravãra Āshādha\n"
|
||||
"X-POFile-SpellExtra: Agrahayana Bud Shr Guruvãra Mañ Gur Vaishākh Jya\n"
|
||||
"X-POFile-SpellExtra: Kārtik Agr Jyaishtha Kār Āsh Bhā Rav milisegundo\n"
|
||||
"X-POFile-SpellExtra: Āsw Mañgalvã Sanivãra Mayek Ol Saurashtra\n"
|
||||
"X-POFile-SpellExtra: Sundanês Viet Lisu Kayah Chiki Lepcha Meetei Cham\n"
|
||||
"X-POFile-SpellExtra: Rejang Tham Bamum Pshoment Pas Ptiou Neh Genbot Hamus\n"
|
||||
"X-POFile-SpellExtra: Pag Paope Pesnau Pes Hed Magabit Ehu Tahsas Yak Mag\n"
|
||||
"X-POFile-SpellExtra: Tob Pef Kou Pam Pao Tequemt Paremhotep Psh nabot\n"
|
||||
"X-POFile-SpellExtra: Hathor Pso Kiahk Hat Meo Psa Sene Psabbaton Miy\n"
|
||||
"X-POFile-SpellExtra: Pashons Mes LarguraxAltura Kia Qedame Ham Gen Hedar\n"
|
||||
"X-POFile-SpellExtra: Parmoute Teq Mesore Nehase Kouji Yakatit Maksegno\n"
|
||||
"X-POFile-SpellExtra: Paone Sen Meshir Pagumen Thoout Hamle Epe Mak\n"
|
||||
"X-POFile-SpellExtra: Tkyriakē Ehud Tho Qed Pti Psoou Segno Tah Rob\n"
|
||||
"X-POFile-SpellExtra: Miyazya Meskerem Tobe Peftoou Epep Tky pastabase Fã\n"
|
||||
"X-POFile-SpellExtra: KVTML USD Colaborativos Hunspell Jovie AM PM mails\n"
|
||||
"X-POFile-SpellExtra: mbuttonGroup Blog blog np cp nc UTC Mandaico Batak\n"
|
||||
"X-POFile-SpellExtra: DQTDECLARATIVEDEBUG QML slot pedro mantê Pocinhas\n"
|
||||
"X-POFile-SpellExtra: Reconstrói ii Del iii querê KNotify\n"
|
||||
"X-POFile-IgnoreConsistency: Update\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Seleccione o som a tocar"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Tocar um &som"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Mostrar uma mensagem numa &janela"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Configurar as Notificações"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Título"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "Registar num ficheiro"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "Marcar o item da barra de &tarefas"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "Executar um &comando"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "Seleccione o comando a executar"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "&Fala"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Define como é que o KNotify deverá falar o evento quando for "
|
||||
#~ "recebido. Se seleccionar a opção \"Falar o texto personalizado\", indique "
|
||||
#~ "o texto no campo. Poderá usar as seguintes sequências de substituição do "
|
||||
#~ "texto:<dl><dt>%e</dt><dd>Nome do evento</dd><dt>%a</dt><dd>A aplicação "
|
||||
#~ "que enviou o evento</dd><dt>%m</dt><dd>A mensagem enviada pela aplicação</"
|
||||
#~ "dd></dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "Falar a Mensagem do Evento"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "Falar o Nome do Evento"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "Falar um Texto Personalizado"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Define como é que o Jovie deverá falar o evento quando for recebido. "
|
||||
#~ "Se seleccionar a opção \"Falar o texto personalizado\", indique o texto "
|
||||
#~ "no campo. Poderá usar as seguintes sequências de substituição do texto:"
|
||||
#~ "<dl><dt>%e</dt><dd>Nome do evento</dd><dt>%a</dt><dd>A aplicação que "
|
||||
#~ "enviou o evento</dd><dt>%m</dt><dd>A mensagem enviada pela aplicação</"
|
||||
#~ "dd></dl></qt>"
|
||||
@@ -0,0 +1,122 @@
|
||||
# Translation of knotifyconfig5.po to Brazilian Portuguese
|
||||
# Copyright (C) 2002-2015 This_file_is_part_of_KDE
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Lisiane Sztoltz <lisiane@conectiva.com.br>, 2002, 2003, 2004.
|
||||
# Lisiane Sztoltz Teixeira <lisiane@kdemail.net>, 2003, 2004, 2005.
|
||||
# Henrique Pinto <stampede@coltec.ufmg.br>, 2003.
|
||||
# Marcus Gama <marcus.gama@gmail.com>, 2006.
|
||||
# Diniz Bortolotto <diniz.bortolotto@gmail.com>, 2007, 2008.
|
||||
# André Marcelo Alvarenga <alvarenga@kde.org>, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015.
|
||||
# Luiz Fernando Ranghetti <elchevive@opensuse.org>, 2008, 2009, 2010, 2012.
|
||||
# Fernando Boaglio <boaglio@kde.org>, 2009.
|
||||
# Doutor Zero <doutor.zero@gmail.com>, 2007, 2009.
|
||||
# Marcus Vinícius de Andrade Gama <marcus.gama@gmail.com>, 2010, 2012.
|
||||
# Aracele Torres <araceletorres@gmail.com>, 2010.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig5\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2015-02-18 11:07-0200\n"
|
||||
"Last-Translator: André Marcelo Alvarenga <alvarenga@kde.org>\n"
|
||||
"Language-Team: Brazilian Portuguese <kde-i18n-pt_br@kde.org>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Lokalize 1.5\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Selecione o som a reproduzir"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Reproduzir um &som"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Mostrar mensagem em uma &janela"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Configurar notificações"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Título"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "Registrar em arquivo"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "Marcar item da barra de &tarefas"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "Executar &comando"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "Selecione o comando a executar"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "&Falar"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Define como o knotify deverá falar o evento quando for recebido. Se "
|
||||
#~ "você selecionar \"Falar o texto personalizado\", indique o texto no "
|
||||
#~ "campo. Você pode usar as seguintes sequências de substituição no texto:"
|
||||
#~ "<dl><dt>%e</dt><dd>Nome do evento</dd><dt>%a</dt><dd>O aplicativo que "
|
||||
#~ "enviou o evento</dd><dt>%m</dt><dd>A mensagem enviada pelo aplicativo</"
|
||||
#~ "dd></dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "Falar a mensagem do evento"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "Falar o nome do evento"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "Falar um texto personalizado"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Define como o Jovie deverá falar o evento quando for recebido. Se "
|
||||
#~ "você selecionar \"Falar o texto personalizado\", indique o texto no "
|
||||
#~ "campo. Você pode usar as seguintes sequências de substituição no texto:"
|
||||
#~ "<dl><dt>%e</dt><dd>Nome do evento</dd><dt>%a</dt><dd>O aplicativo que "
|
||||
#~ "enviou o evento</dd><dt>%m</dt><dd>A mensagem enviada pelo aplicativo</"
|
||||
#~ "dd></dl></qt>"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,60 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR This file is copyright:
|
||||
# This file is distributed under the same license as the knotifyconfig package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2023-09-26 23:14+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Sanskrit <kde-i18n-doc@kde.org>\n"
|
||||
"Language: sa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n>2);\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "वादयितुं ध्वनिं चिनोतु"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "एकं &ध्वनिं वादयतु"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "एकं सन्देशं &उद्भित्सूचिमध्ये दर्शयतु"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "सूचनाः विन्यस्यताम्"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "अवस्था"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "शीर्षकम्"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "विवरणम्"
|
||||
@@ -0,0 +1,61 @@
|
||||
# Translation of knotifyconfig6 to Northern Sami
|
||||
#
|
||||
# Børre Gaup <boerre@skolelinux.no>, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kdelibs4\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2012-05-30 23:19+0200\n"
|
||||
"Last-Translator: Børre Gaup <boerre@skolelinux.no>\n"
|
||||
"Language-Team: Northern Sami <l10n-no@lister.huftis.org>\n"
|
||||
"Language: se\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Lokalize 1.4\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Environment: kde\n"
|
||||
"X-Accelerator-Marker: &\n"
|
||||
"X-Text-Markup: kde4\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Vállje jiena maid čuojahit"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Čuojat &jiena"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Čájet dieđu &báhccanláses"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Heivet dieđáhusaid …"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Dilli"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Namahus"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Válddahus"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,114 @@
|
||||
# Translation of knotifyconfig5.po into Serbian.
|
||||
# Marko Rosic <roske@kde.org.yu>, 2003.
|
||||
# Toplica Tanaskovic <toptan@kde.org.yu>, 2003, 2004, 2005.
|
||||
# Chusslove Illich <caslav.ilic@gmx.net>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2017.
|
||||
# Dalibor Djuric <daliborddjuric@gmail.com>, 2009, 2010, 2011.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig5\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2017-09-28 17:58+0200\n"
|
||||
"Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
|
||||
"Language-Team: Serbian <kde-i18n-sr@kde.org>\n"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
|
||||
"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Accelerator-Marker: &\n"
|
||||
"X-Text-Markup: kde4\n"
|
||||
"X-Environment: kde\n"
|
||||
"X-Wrapping: fine\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Изабери звук за пуштање"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Пусти &звук"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Прикажи &искачућу поруку"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Подеси обавештења"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Стање"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Наслов"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "Забележи у фајл"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "Означи ставку &траке задатака"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "Изврши &наредбу"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "Изаберите наредбу за извршавање"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "&Говор"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Одређује како К‑обавештења треба да говори када се догађај прими. Ако "
|
||||
#~ "изаберете <i>Изговори посебан текст</i>, унесите тај текст у поље. У њему "
|
||||
#~ "можете користити следеће смењиве ниске:<dl><dt>%e</dt><dd>назив догађаја</"
|
||||
#~ "dd><dt>%a</dt><dd>програм који је послао догађај</dd><dt>%m</"
|
||||
#~ "dt><dd>порука коју је послао програм</dd></dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "Изговори поруку догађаја"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "Изговори назив догађаја"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "Изговори посебан текст"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Одређује како Џови треба да говори када се догађај прими. Ако "
|
||||
#~ "изаберете <i>Изговори посебан текст</i>, унесите тај текст у поље. У њему "
|
||||
#~ "можете користити следеће смењиве ниске:<dl><dt>%e</dt><dd>назив догађаја</"
|
||||
#~ "dd><dt>%a</dt><dd>програм који је послао догађај</dd><dt>%m</"
|
||||
#~ "dt><dd>порука коју је послао програм</dd></dl></qt>"
|
||||
@@ -0,0 +1,113 @@
|
||||
# Translation of knotifyconfig5.po into Serbian.
|
||||
# Marko Rosic <roske@kde.org.yu>, 2003.
|
||||
# Toplica Tanaskovic <toptan@kde.org.yu>, 2003, 2004, 2005.
|
||||
# Chusslove Illich <caslav.ilic@gmx.net>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2017.
|
||||
# Dalibor Djuric <daliborddjuric@gmail.com>, 2009, 2010, 2011.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig5\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2017-09-28 17:58+0200\n"
|
||||
"Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
|
||||
"Language-Team: Serbian <kde-i18n-sr@kde.org>\n"
|
||||
"Language: sr@ijekavian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
|
||||
"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Accelerator-Marker: &\n"
|
||||
"X-Text-Markup: kde4\n"
|
||||
"X-Environment: kde\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Изабери звук за пуштање"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Пусти &звук"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Прикажи &искачућу поруку"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Подеси обавјештења"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Стање"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Наслов"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "Забиљежи у фајл"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "Означи ставку &траке задатака"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "Изврши &наредбу"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "Изаберите наредбу за извршавање"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "&Говор"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Одређује како К‑обавјештења треба да говори када се догађај прими. "
|
||||
#~ "Ако изаберете <i>Изговори посебан текст</i>, унесите тај текст у поље. У "
|
||||
#~ "њему можете користити сљедеће смјењиве ниске:<dl><dt>%e</dt><dd>назив "
|
||||
#~ "догађаја</dd><dt>%a</dt><dd>програм који је послао догађај</dd><dt>%m</"
|
||||
#~ "dt><dd>порука коју је послао програм</dd></dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "Изговори поруку догађаја"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "Изговори назив догађаја"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "Изговори посебан текст"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Одређује како Џови треба да говори када се догађај прими. Ако "
|
||||
#~ "изаберете <i>Изговори посебан текст</i>, унесите тај текст у поље. У њему "
|
||||
#~ "можете користити сљедеће смјењиве ниске:<dl><dt>%e</dt><dd>назив "
|
||||
#~ "догађаја</dd><dt>%a</dt><dd>програм који је послао догађај</dd><dt>%m</"
|
||||
#~ "dt><dd>порука коју је послао програм</dd></dl></qt>"
|
||||
@@ -0,0 +1,113 @@
|
||||
# Translation of knotifyconfig5.po into Serbian.
|
||||
# Marko Rosic <roske@kde.org.yu>, 2003.
|
||||
# Toplica Tanaskovic <toptan@kde.org.yu>, 2003, 2004, 2005.
|
||||
# Chusslove Illich <caslav.ilic@gmx.net>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2017.
|
||||
# Dalibor Djuric <daliborddjuric@gmail.com>, 2009, 2010, 2011.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig5\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2017-09-28 17:58+0200\n"
|
||||
"Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
|
||||
"Language-Team: Serbian <kde-i18n-sr@kde.org>\n"
|
||||
"Language: sr@ijekavianlatin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
|
||||
"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Accelerator-Marker: &\n"
|
||||
"X-Text-Markup: kde4\n"
|
||||
"X-Environment: kde\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Izaberi zvuk za puštanje"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Pusti &zvuk"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Prikaži &iskačuću poruku"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Podesi obavještenja"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Stanje"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Naslov"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "Zabilježi u fajl"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "Označi stavku &trake zadataka"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "Izvrši &naredbu"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "Izaberite naredbu za izvršavanje"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "&Govor"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Određuje kako K‑obavještenja treba da govori kada se događaj primi. "
|
||||
#~ "Ako izaberete <i>Izgovori poseban tekst</i>, unesite taj tekst u polje. U "
|
||||
#~ "njemu možete koristiti sljedeće smjenjive niske:<dl><dt>%e</dt><dd>naziv "
|
||||
#~ "događaja</dd><dt>%a</dt><dd>program koji je poslao događaj</dd><dt>%m</"
|
||||
#~ "dt><dd>poruka koju je poslao program</dd></dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "Izgovori poruku događaja"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "Izgovori naziv događaja"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "Izgovori poseban tekst"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Određuje kako Džovi treba da govori kada se događaj primi. Ako "
|
||||
#~ "izaberete <i>Izgovori poseban tekst</i>, unesite taj tekst u polje. U "
|
||||
#~ "njemu možete koristiti sljedeće smjenjive niske:<dl><dt>%e</dt><dd>naziv "
|
||||
#~ "događaja</dd><dt>%a</dt><dd>program koji je poslao događaj</dd><dt>%m</"
|
||||
#~ "dt><dd>poruka koju je poslao program</dd></dl></qt>"
|
||||
@@ -0,0 +1,113 @@
|
||||
# Translation of knotifyconfig5.po into Serbian.
|
||||
# Marko Rosic <roske@kde.org.yu>, 2003.
|
||||
# Toplica Tanaskovic <toptan@kde.org.yu>, 2003, 2004, 2005.
|
||||
# Chusslove Illich <caslav.ilic@gmx.net>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2017.
|
||||
# Dalibor Djuric <daliborddjuric@gmail.com>, 2009, 2010, 2011.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: knotifyconfig5\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-25 00:36+0000\n"
|
||||
"PO-Revision-Date: 2017-09-28 17:58+0200\n"
|
||||
"Last-Translator: Chusslove Illich <caslav.ilic@gmx.net>\n"
|
||||
"Language-Team: Serbian <kde-i18n-sr@kde.org>\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
|
||||
"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Accelerator-Marker: &\n"
|
||||
"X-Text-Markup: kde4\n"
|
||||
"X-Environment: kde\n"
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (KUrlRequester, Sound_select)
|
||||
#: knotifyconfigactionswidgetbase.ui:48
|
||||
#, kde-format
|
||||
msgid "Select the sound to play"
|
||||
msgstr "Izaberi zvuk za puštanje"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Sound_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:55
|
||||
#, kde-format
|
||||
msgid "Play a &sound"
|
||||
msgstr "Pusti &zvuk"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, Popup_check)
|
||||
#: knotifyconfigactionswidgetbase.ui:62
|
||||
#, kde-format
|
||||
msgid "Show a message in a &popup"
|
||||
msgstr "Prikaži &iskačuću poruku"
|
||||
|
||||
#: knotifyconfigwidget.cpp:117
|
||||
#, kde-format
|
||||
msgid "Configure Notifications"
|
||||
msgstr "Podesi obaveštenja"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "State of the notified event"
|
||||
msgid "State"
|
||||
msgstr "Stanje"
|
||||
|
||||
#: knotifyeventlist.cpp:76
|
||||
#, kde-format
|
||||
msgctxt "Title of the notified event"
|
||||
msgid "Title"
|
||||
msgstr "Naslov"
|
||||
|
||||
#: knotifyeventlist.cpp:77
|
||||
#, kde-format
|
||||
msgctxt "Description of the notified event"
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#~ msgid "Log to a file"
|
||||
#~ msgstr "Zabeleži u fajl"
|
||||
|
||||
#~ msgid "Mark &taskbar entry"
|
||||
#~ msgstr "Označi stavku &trake zadataka"
|
||||
|
||||
#~ msgid "Run &command"
|
||||
#~ msgstr "Izvrši &naredbu"
|
||||
|
||||
#~ msgid "Select the command to run"
|
||||
#~ msgstr "Izaberite naredbu za izvršavanje"
|
||||
|
||||
#~ msgid "Sp&eech"
|
||||
#~ msgstr "&Govor"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how knotify should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Određuje kako K‑obaveštenja treba da govori kada se događaj primi. "
|
||||
#~ "Ako izaberete <i>Izgovori poseban tekst</i>, unesite taj tekst u polje. U "
|
||||
#~ "njemu možete koristiti sledeće smenjive niske:<dl><dt>%e</dt><dd>naziv "
|
||||
#~ "događaja</dd><dt>%a</dt><dd>program koji je poslao događaj</dd><dt>%m</"
|
||||
#~ "dt><dd>poruka koju je poslao program</dd></dl></qt>"
|
||||
|
||||
#~ msgid "Speak Event Message"
|
||||
#~ msgstr "Izgovori poruku događaja"
|
||||
|
||||
#~ msgid "Speak Event Name"
|
||||
#~ msgstr "Izgovori naziv događaja"
|
||||
|
||||
#~ msgid "Speak Custom Text"
|
||||
#~ msgstr "Izgovori poseban tekst"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<qt>Specifies how Jovie should speak the event when received. If you "
|
||||
#~ "select \"Speak custom text\", enter the text in the box. You may use the "
|
||||
#~ "following substitution strings in the text:<dl><dt>%e</dt><dd>Name of the "
|
||||
#~ "event</dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</"
|
||||
#~ "dt><dd>The message sent by the application</dd></dl></qt>"
|
||||
#~ msgstr ""
|
||||
#~ "<qt>Određuje kako Džovi treba da govori kada se događaj primi. Ako "
|
||||
#~ "izaberete <i>Izgovori poseban tekst</i>, unesite taj tekst u polje. U "
|
||||
#~ "njemu možete koristiti sledeće smenjive niske:<dl><dt>%e</dt><dd>naziv "
|
||||
#~ "događaja</dd><dt>%a</dt><dd>program koji je poslao događaj</dd><dt>%m</"
|
||||
#~ "dt><dd>poruka koju je poslao program</dd></dl></qt>"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user