Compare commits
89 Commits
Author | SHA1 | Date |
---|---|---|
|
01ecc5b4fc | 1 month ago |
|
5057beb894 | 2 months ago |
|
136b9cfb00 | 5 months ago |
|
4f9db146f3 | 5 months ago |
|
7236b2c042 | 7 months ago |
|
eab2a5c15b | 9 months ago |
|
2784d52fc4 | 9 months ago |
|
bd2f400bbf | 9 months ago |
|
f5c8727583 | 9 months ago |
|
792f70c749 | 9 months ago |
|
604bd310f5 | 10 months ago |
|
11a0032942 | 10 months ago |
|
53b87875f2 | 1 year ago |
|
89cd160115 | 1 year ago |
|
78b0d1f978 | 1 year ago |
|
9490ca004a | 5 years ago |
|
433d2d41dd | 5 years ago |
|
f676d3f70b | 5 years ago |
|
4a842952ba | 6 years ago |
|
ee8cf0bd46 | 6 years ago |
|
d27c5d8b58 | 6 years ago |
|
d0afaad1d0 | 6 years ago |
|
d524805662 | 6 years ago |
|
4f0262445d | 6 years ago |
|
8397560b54 | 6 years ago |
|
a3f8585a3a | 6 years ago |
|
3520b929bd | 6 years ago |
|
8cdd76a8cf | 6 years ago |
|
270fa3213b | 6 years ago |
|
aa81fbb6fd | 6 years ago |
|
fe131c4bd5 | 6 years ago |
|
483a78fda4 | 6 years ago |
|
eed296f5fd | 6 years ago |
|
6722353577 | 6 years ago |
|
fc727c6f72 | 6 years ago |
|
2ce5a716c0 | 6 years ago |
|
7b5ffa7aa1 | 6 years ago |
|
eccea9237c | 6 years ago |
|
761e84bed6 | 6 years ago |
|
f9eefb884c | 6 years ago |
|
a945a71f83 | 6 years ago |
|
1aa4302a45 | 6 years ago |
|
8a9cb9a09f | 7 years ago |
|
1787394347 | 7 years ago |
|
b41f1c67b7 | 7 years ago |
|
5333d8a7ae | 7 years ago |
|
e8eb6406fc | 7 years ago |
|
81235b75cc | 7 years ago |
|
5d8829e929 | 7 years ago |
|
7e43973919 | 7 years ago |
|
f5e2a5dc3a | 7 years ago |
|
776459e282 | 7 years ago |
|
17c31b0192 | 7 years ago |
|
9b5bd24b24 | 7 years ago |
|
806e463ab3 | 7 years ago |
|
46001712f6 | 7 years ago |
|
8f36c3718d | 7 years ago |
|
5bd17489ec | 7 years ago |
|
baa5e2868f | 7 years ago |
|
7579e4dd9e | 7 years ago |
|
5e570445a2 | 7 years ago |
|
732b6e0e56 | 7 years ago |
|
8cd92943fb | 7 years ago |
|
50c2eed712 | 7 years ago |
|
969011bad8 | 7 years ago |
|
fcccb4540b | 7 years ago |
|
e306ac9bd1 | 7 years ago |
|
ac4b071539 | 7 years ago |
|
1d935cefb3 | 7 years ago |
|
4c5fa173d3 | 7 years ago |
|
e0a4dabcb2 | 7 years ago |
|
3f17f83737 | 7 years ago |
|
6684ee8276 | 7 years ago |
|
ab182361e7 | 7 years ago |
|
1fc734c6b6 | 7 years ago |
|
9057e462fb | 7 years ago |
|
927ac79749 | 7 years ago |
|
3a4a24fe7d | 7 years ago |
|
c476fad081 | 8 years ago |
|
1b16a1f25b | 9 years ago |
|
9a830a5920 | 9 years ago |
|
b9d0364329 | 9 years ago |
|
1882c0a04b | 9 years ago |
|
76b8d74826 | 9 years ago |
|
8180bfcca4 | 9 years ago |
|
da297cc1f9 | 10 years ago |
|
98ed27b843 | 10 years ago |
|
a777b7999f | 10 years ago |
|
a7ea1106c0 | 10 years ago |
@ -1,6 +1,6 @@
|
||||
[submodule "admin"]
|
||||
path = admin
|
||||
url = http://system@scm.trinitydesktop.org/scm/git/tde-common-admin
|
||||
url = https://system@scm.trinitydesktop.org/scm/git/tde-common-admin
|
||||
[submodule "cmake"]
|
||||
path = cmake
|
||||
url = http://system@scm.trinitydesktop.org/scm/git/tde-common-cmake
|
||||
url = https://system@scm.trinitydesktop.org/scm/git/tde-common-cmake
|
||||
|
@ -0,0 +1,78 @@
|
||||
############################################
|
||||
# #
|
||||
# Improvements and feedbacks are welcome #
|
||||
# #
|
||||
# This file is released under GPL >= 3 #
|
||||
# #
|
||||
############################################
|
||||
|
||||
|
||||
cmake_minimum_required( VERSION 2.8 )
|
||||
|
||||
|
||||
#### general package setup
|
||||
|
||||
project( kerry )
|
||||
set( VERSION R14.1.0 )
|
||||
|
||||
|
||||
#### include essential cmake modules
|
||||
|
||||
include( FindPkgConfig )
|
||||
include( CheckFunctionExists )
|
||||
include( CheckSymbolExists )
|
||||
include( CheckIncludeFile )
|
||||
include( CheckLibraryExists )
|
||||
include( CheckCSourceCompiles )
|
||||
include( CheckCXXSourceCompiles )
|
||||
|
||||
|
||||
#### include our cmake modules
|
||||
|
||||
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
|
||||
include( TDEMacros )
|
||||
|
||||
|
||||
##### setup install paths
|
||||
|
||||
include( TDESetupPaths )
|
||||
tde_setup_paths( )
|
||||
|
||||
|
||||
##### optional stuff
|
||||
|
||||
option( WITH_ALL_OPTIONS "Enable all optional support" OFF )
|
||||
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
|
||||
|
||||
|
||||
##### user requested modules
|
||||
|
||||
option( BUILD_ALL "Build all" ON )
|
||||
option( BUILD_DOC "Build documentation" ${BUILD_ALL} )
|
||||
option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} )
|
||||
|
||||
|
||||
##### configure checks
|
||||
|
||||
include( ConfigureChecks.cmake )
|
||||
|
||||
|
||||
###### global compiler settings
|
||||
|
||||
add_definitions( -DHAVE_CONFIG_H )
|
||||
|
||||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" )
|
||||
set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" )
|
||||
set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" )
|
||||
|
||||
|
||||
##### directories
|
||||
|
||||
add_subdirectory( ${PROJECT_NAME} )
|
||||
tde_conditional_add_subdirectory( BUILD_DOC doc )
|
||||
tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po )
|
||||
|
||||
|
||||
##### write configure files
|
||||
|
||||
configure_file( config.h.cmake config.h @ONLY )
|
@ -0,0 +1,41 @@
|
||||
###########################################
|
||||
# #
|
||||
# Improvements and feedback are welcome #
|
||||
# #
|
||||
# This file is released under GPL >= 3 #
|
||||
# #
|
||||
###########################################
|
||||
|
||||
# required stuff
|
||||
find_package( TQt )
|
||||
find_package( TDE )
|
||||
|
||||
tde_setup_architecture_flags( )
|
||||
|
||||
include(TestBigEndian)
|
||||
test_big_endian(WORDS_BIGENDIAN)
|
||||
|
||||
tde_setup_largefiles( )
|
||||
|
||||
|
||||
##### check for gcc visibility support
|
||||
|
||||
if( WITH_GCC_VISIBILITY )
|
||||
tde_setup_gcc_visibility( )
|
||||
endif( WITH_GCC_VISIBILITY )
|
||||
|
||||
|
||||
##### check for libbeagle
|
||||
|
||||
pkg_search_module( LIBBEAGLE libbeagle-1.0 )
|
||||
if( NOT LIBBEAGLE_FOUND )
|
||||
tde_message_fatal( "The libbeagle library is required but was not found on your system" )
|
||||
endif( NOT LIBBEAGLE_FOUND )
|
||||
|
||||
|
||||
##### check for glib-2.0
|
||||
|
||||
pkg_search_module( GLIB2 glib-2.0 )
|
||||
if( NOT GLIB2_FOUND )
|
||||
tde_message_fatal( "The glib-2.0 library is required but was not found on your system" )
|
||||
endif( NOT GLIB2_FOUND )
|
@ -1 +1 @@
|
||||
Subproject commit f9148018b2f8a11fd830712c1b508046cc34ff22
|
||||
Subproject commit 68f23556e638353e46b444d3a4863a64936bd36a
|
@ -1 +1 @@
|
||||
Subproject commit cfc1242197c9eb60b55c91eddd0f5572700db8ed
|
||||
Subproject commit 8668335711fa13cec276552d75bfbb4285c7edb0
|
@ -0,0 +1,8 @@
|
||||
#define VERSION "@VERSION@"
|
||||
|
||||
// Defined if you have fvisibility and fvisibility-inlines-hidden support.
|
||||
#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#cmakedefine WORDS_BIGENDIAN @WORDS_BIGENDIAN@
|
@ -0,0 +1 @@
|
||||
add_subdirectory( man )
|
@ -0,0 +1,5 @@
|
||||
INSTALL(
|
||||
FILES ${PROJECT_NAME}.1
|
||||
DESTINATION ${MAN_INSTALL_DIR}/man1
|
||||
COMPONENT doc
|
||||
)
|
@ -0,0 +1,67 @@
|
||||
'\" -*- coding: us-ascii -*-
|
||||
.if \n(.g .ds T< \\FC
|
||||
.if \n(.g .ds T> \\F[\n[.fam]]
|
||||
.de URL
|
||||
\\$2 \(la\\$1\(ra\\$3
|
||||
..
|
||||
.if \n(.g .mso www.tmac
|
||||
.TH kerry 1 2006-03-26 "" ""
|
||||
.SH NAME
|
||||
kerry \- a Beagle frontend for TDE
|
||||
.SH SYNOPSIS
|
||||
'nh
|
||||
.fi
|
||||
.ad l
|
||||
\fBkautoclick\fR \kx
|
||||
.if (\nx>(\n(.l/2)) .nr x (\n(.l/5)
|
||||
'in \n(.iu+\nxu
|
||||
[
|
||||
\fB\fIQt-options\fB\fR
|
||||
] [
|
||||
\fB\fITDE-options\fB\fR
|
||||
]
|
||||
'in \n(.iu-\nxu
|
||||
.ad b
|
||||
'hy
|
||||
.SH DESCRIPTION
|
||||
Kerry is a frontend for Beagle for the TDE desktop.
|
||||
.SH OPTIONS
|
||||
All TDE and Qt
|
||||
programs accept a some common command-line options. Kerry has no
|
||||
application-specific options.
|
||||
.PP
|
||||
.TP
|
||||
\*(T<\fB\-\-help\fR\*(T>
|
||||
Show help about options
|
||||
.TP
|
||||
\*(T<\fB\-\-help\-qt\fR\*(T>
|
||||
Show Qt specific options
|
||||
.TP
|
||||
\*(T<\fB\-\-help\-tde\fR\*(T>
|
||||
Show TDE specific options
|
||||
.TP
|
||||
\*(T<\fB\-\-help\-all\fR\*(T>
|
||||
Show all options
|
||||
.TP
|
||||
\*(T<\fB\-\-author\fR\*(T>
|
||||
Show author information
|
||||
.TP
|
||||
\*(T<\fB\-v\fR\*(T>, \*(T<\fB\-\-version\fR\*(T>
|
||||
Show version information
|
||||
.TP
|
||||
\*(T<\fB\-\-license\fR\*(T>
|
||||
Show license information
|
||||
.TP
|
||||
\*(T<\fB\-\-\fR\*(T>
|
||||
Indicates end of options
|
||||
.SH COPYRIGHT
|
||||
This manual page was written by Jonathan Patrick Davies
|
||||
<\*(T<jpatrick@ubuntu.com\*(T>> for the
|
||||
Ubuntu system (but may be used by others).
|
||||
Permission is granted to copy, distribute and/or modify this document
|
||||
under the terms of the GNU General Public License,
|
||||
Version 2 or any later version published by the Free Software Foundation.
|
||||
.PP
|
||||
On Debian systems, the complete text of the GNU General Public
|
||||
License can be found in
|
||||
\*(T<\fI/usr/share/common\-licenses/GPL\fR\*(T>.
|
@ -0,0 +1 @@
|
||||
add_subdirectory( src )
|
@ -0,0 +1,65 @@
|
||||
add_subdirectory( kcm )
|
||||
add_subdirectory( icons )
|
||||
|
||||
include_directories(
|
||||
${CMAKE_BINARY_DIR}
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
${TDE_INCLUDE_DIR}
|
||||
${TQT_INCLUDE_DIRS}
|
||||
${LIBBEAGLE_INCLUDE_DIRS}
|
||||
${GLIB2_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
link_directories(
|
||||
${TQT_LIBRARY_DIRS}
|
||||
${TDE_LIB_DIR}
|
||||
)
|
||||
|
||||
tde_add_tdeinit_executable( ${PROJECT_NAME} AUTOMOC
|
||||
|
||||
SOURCES
|
||||
searchdlg_layout.ui
|
||||
hitwidget_layout.ui
|
||||
dcopinterface.stub
|
||||
dcopinterface.skel
|
||||
main.cpp
|
||||
beaglesearch.cpp
|
||||
kerryapp.cpp
|
||||
searchdlg.cpp
|
||||
hitwidget.cpp
|
||||
kwidgetlistbox.cpp
|
||||
kerrylabel.cpp
|
||||
query.cpp
|
||||
LINK
|
||||
tdecore-shared
|
||||
tdeui-shared
|
||||
tdeio-shared
|
||||
tdeabc-shared
|
||||
konq
|
||||
${LIBBEAGLE_LIBRARIES}
|
||||
${GLIB2_LIBRARIES}
|
||||
)
|
||||
|
||||
|
||||
##### other data
|
||||
|
||||
install(
|
||||
FILES ${PROJECT_NAME}.desktop
|
||||
DESTINATION ${XDG_APPS_INSTALL_DIR}
|
||||
)
|
||||
|
||||
install(
|
||||
FILES kerry.autostart.desktop beagled.desktop
|
||||
DESTINATION ${AUTOSTART_INSTALL_DIR}
|
||||
)
|
||||
|
||||
install(
|
||||
FILES search-running.mng
|
||||
DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}
|
||||
)
|
||||
|
||||
install(
|
||||
PROGRAMS beagled-shutdown
|
||||
DESTINATION ${BIN_INSTALL_DIR}
|
||||
)
|
@ -0,0 +1 @@
|
||||
tde_install_icons( kerry kerry_systemtray kerry_info kerry_arrow )
|
@ -0,0 +1,50 @@
|
||||
include_directories(
|
||||
${CMAKE_BINARY_DIR}
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
${TDE_INCLUDE_DIR}
|
||||
${TQT_INCLUDE_DIRS}
|
||||
${LIBBEAGLE_INCLUDE_DIRS}
|
||||
${GLIB2_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
link_directories(
|
||||
${TQT_LIBRARY_DIRS}
|
||||
${TDE_LIB_DIR}
|
||||
)
|
||||
|
||||
##### kcm_beagle (kpart)
|
||||
|
||||
tde_add_kpart( kcm_beagle AUTOMOC
|
||||
|
||||
SOURCES
|
||||
select_privacy_resource.ui
|
||||
main.cpp
|
||||
beagle.cpp
|
||||
kerry.cpp
|
||||
indexing.cpp
|
||||
backends.cpp
|
||||
status.cpp
|
||||
search.cpp
|
||||
|
||||
LINK
|
||||
tdecore-shared
|
||||
tdeui-shared
|
||||
tdeio-shared
|
||||
${LIBBEAGLE_LIBRARIES}
|
||||
|
||||
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||
)
|
||||
|
||||
|
||||
##### other data
|
||||
|
||||
install(
|
||||
FILES kcmbeagle.desktop
|
||||
DESTINATION ${XDG_APPS_INSTALL_DIR}
|
||||
)
|
||||
|
||||
install(
|
||||
FILES kcmkerry.desktop
|
||||
DESTINATION ${APPS_INSTALL_DIR}/.hidden/
|
||||
)
|
@ -1 +0,0 @@
|
||||
#include <kurlrequester.h>
|
@ -0,0 +1,7 @@
|
||||
file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po )
|
||||
|
||||
foreach( _po ${po_files} )
|
||||
string( REPLACE "/" ";" _path "${_po}" )
|
||||
list( GET _path 0 _lang )
|
||||
tde_create_translation( FILES ${_po} LANG ${_lang} )
|
||||
endforeach( )
|
@ -0,0 +1,240 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Temuri Doghonadze <rkavt@smartprojects.ge>, 2024.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-05-12 17:00+0200\n"
|
||||
"PO-Revision-Date: 2024-11-10 14:11+0000\n"
|
||||
"Last-Translator: Temuri Doghonadze <rkavt@smartprojects.ge>\n"
|
||||
"Language-Team: Georgian <https://mirror.git.trinitydesktop.org/weblate/"
|
||||
"projects/applications/kerry-kcm/ka/>\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: Weblate 4.17\n"
|
||||
|
||||
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
|
||||
msgid ""
|
||||
"_: NAME OF TRANSLATORS\n"
|
||||
"Your names"
|
||||
msgstr "თემური დოღონაძე"
|
||||
|
||||
#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
|
||||
msgid ""
|
||||
"_: EMAIL OF TRANSLATORS\n"
|
||||
"Your emails"
|
||||
msgstr "temuri.doghonadze@gmail.com"
|
||||
|
||||
#: backends.cpp:37
|
||||
msgid "Select which of the available Beagle backends you want to have enabled."
|
||||
msgstr "აირჩიეთ, რომელი ხელმისაწვდომი Beagle-ის უკანაბოლო გნებავთ, ჩაირთოს."
|
||||
|
||||
#: backends.cpp:40
|
||||
msgid "Backends"
|
||||
msgstr "უკანაბოლოები"
|
||||
|
||||
#: beagle.cpp:52 kerry.cpp:58
|
||||
msgid "&Indexing"
|
||||
msgstr "და&ინდექსება"
|
||||
|
||||
#: beagle.cpp:53 kerry.cpp:59
|
||||
msgid "&Backends"
|
||||
msgstr "უკანა&ბოლოები"
|
||||
|
||||
#: beagle.cpp:54 kerry.cpp:60
|
||||
msgid "&Daemon Status"
|
||||
msgstr "&დემონის სტატუსი"
|
||||
|
||||
#: indexing.cpp:47 search.cpp:32
|
||||
msgid "General"
|
||||
msgstr "ზოგადი"
|
||||
|
||||
#: indexing.cpp:52
|
||||
msgid "Start Beagle indexing service automatically"
|
||||
msgstr "Beagle-ის დაინდექსების სერვისის ავტომატური ჩართვა"
|
||||
|
||||
#: indexing.cpp:55
|
||||
msgid "Index data while on battery power"
|
||||
msgstr "მონაცემების დაინდექსება ელემენტის კვებაზე ყოფნისას"
|
||||
|
||||
#: indexing.cpp:59
|
||||
msgid "Index"
|
||||
msgstr "ინდექსი"
|
||||
|
||||
#: indexing.cpp:65
|
||||
msgid "Index my home folder"
|
||||
msgstr "ჩემი საწყისი საქაღალდის დაინდექსება"
|
||||
|
||||
#: indexing.cpp:69
|
||||
msgid "Add any additional folder to be included for indexing."
|
||||
msgstr "დაამატეთ დამატებითი საქაღალდე ინექსში ჩასასმელად."
|
||||
|
||||
#: indexing.cpp:75 indexing.cpp:108 search.cpp:43
|
||||
msgid "Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
#: indexing.cpp:81 indexing.cpp:115
|
||||
msgid "Add..."
|
||||
msgstr "დამატება..."
|
||||
|
||||
#: indexing.cpp:96
|
||||
msgid "Privacy"
|
||||
msgstr "კონფიდენციალობა"
|
||||
|
||||
#: indexing.cpp:101
|
||||
msgid ""
|
||||
"Specify any resource, such as folder or pattern, you wish to exclude from "
|
||||
"indexing."
|
||||
msgstr ""
|
||||
"მიუთითეთ ნებისმიერი რესურსი, მაგალითად საქაღალდე ან ნიმუში, რომელიც გნებავთ, "
|
||||
"დაინდექსებიდან ამოიღოთ."
|
||||
|
||||
#: indexing.cpp:107 search.cpp:41
|
||||
msgid "Type"
|
||||
msgstr "ტიპი"
|
||||
|
||||
#: indexing.cpp:226 indexing.cpp:257
|
||||
msgid "Select Folder"
|
||||
msgstr "აირჩიეთ საქაღალდე"
|
||||
|
||||
#: indexing.cpp:240
|
||||
msgid ""
|
||||
"<qt>Do you really want to remove this folder from the list of folders to be "
|
||||
"included for indexing?</qt>"
|
||||
msgstr ""
|
||||
"<qt>მართლა გნებავთ წაშალოთ ეს საქაღალდე სიიდან, რომელიც ამოღებულია "
|
||||
"დაინდექსებიდან?</qt>"
|
||||
|
||||
#: indexing.cpp:240
|
||||
msgid "Remove Folder"
|
||||
msgstr "საქაღალდის წაშლა"
|
||||
|
||||
#: indexing.cpp:250 select_privacy_resource.ui:16
|
||||
#, no-c-format
|
||||
msgid "Add Resource"
|
||||
msgstr "რესურსის დამატება"
|
||||
|
||||
#: indexing.cpp:277
|
||||
msgid ""
|
||||
"<qt>Do you really want to remove this item from the list of data to be "
|
||||
"excluded from indexing?</qt>"
|
||||
msgstr ""
|
||||
"<qt>მართლა გნებავთ წაშალოთ ეს ელემენტი სიიდან, რომელიც დაინდექსებიდანაა "
|
||||
"ამოღებული?</qt>"
|
||||
|
||||
#: indexing.cpp:277
|
||||
msgid "Remove Item"
|
||||
msgstr "ელემენტის წაშლა"
|
||||
|
||||
#: kerry.cpp:57
|
||||
msgid "&Search"
|
||||
msgstr "&ძებნა"
|
||||
|
||||
#: search.cpp:38
|
||||
msgid "Default result sort order:"
|
||||
msgstr "ნაგულისხმევი შედეგის დალაგების მიმდევრობა:"
|
||||
|
||||
#: search.cpp:42
|
||||
msgid "Date Modified"
|
||||
msgstr "ცვლილების თარიღი"
|
||||
|
||||
#: search.cpp:44
|
||||
msgid "Relevance"
|
||||
msgstr "შესაბამისობა"
|
||||
|
||||
#: search.cpp:45
|
||||
msgid "Define the default sort order at startup."
|
||||
msgstr "აღწერეთ ნაგულისხმევი დალაგების მიმდევრობა გაშვებისას."
|
||||
|
||||
#: search.cpp:50
|
||||
msgid "Maximum number of results displayed:"
|
||||
msgstr "მაქსიმალური ნაჩვენები შედეგების რაოდენობა:"
|
||||
|
||||
#: search.cpp:53
|
||||
msgid "No Limit"
|
||||
msgstr "შეზღუდვის გარეშე"
|
||||
|
||||
#: search.cpp:54
|
||||
msgid "Define how many results shall be displayed on one result page."
|
||||
msgstr "აღწერეთ, რამდენი შედეგი უნდა გამოჩნდეს ერთი შედეგის გვერდზე."
|
||||
|
||||
#: search.cpp:58
|
||||
msgid "Show search results with details by default"
|
||||
msgstr "ძებნის შედეგების დეტალებით ნაგულისხმევად ჩვენება"
|
||||
|
||||
#: search.cpp:62
|
||||
msgid "Global Shortcuts"
|
||||
msgstr "გლობალური მალსახმობები"
|
||||
|
||||
#: search.cpp:68
|
||||
msgid "Kerry Beagle Search"
|
||||
msgstr "ძებნა Kerry Beagle-ით"
|
||||
|
||||
#: search.cpp:72
|
||||
msgid "Show Search Dialog"
|
||||
msgstr "ძებნის დიალოგის ჩვენება"
|
||||
|
||||
#: search.cpp:73
|
||||
msgid "Search Primary Selection"
|
||||
msgstr "ძირითადი მონიშვნის ძებნა"
|
||||
|
||||
#: status.cpp:73
|
||||
msgid "Refresh Status"
|
||||
msgstr "სტატუსის განახლება"
|
||||
|
||||
#: status.cpp:115
|
||||
msgid "Beagle service is currently running. Click here to stop."
|
||||
msgstr "Beagle-ის სერვისი ამჟამად გაშვებულია. გასაჩერებლად დააწკაპუნეთ."
|
||||
|
||||
#: status.cpp:119
|
||||
msgid "Beagle service is currently stopped. Click here to start."
|
||||
msgstr "Beagle-ის სერვისი ამჟამად გაჩერებულია. დააწკაპუნეთ გასაშვებად."
|
||||
|
||||
#: status.cpp:120
|
||||
msgid "Start"
|
||||
msgstr "გაშვება"
|
||||
|
||||
#: status.cpp:133
|
||||
msgid "Service not started."
|
||||
msgstr "სერვისი გაშვებული არაა."
|
||||
|
||||
#: status.cpp:144
|
||||
msgid "Beagle service version: %1\n"
|
||||
msgstr "Beagle-ის სერვისის ვერსია: %1\n"
|
||||
|
||||
#: status.cpp:146
|
||||
msgid "Current status:\n"
|
||||
msgstr "მიმდინარე სტატუსი:\n"
|
||||
|
||||
#: status.cpp:150
|
||||
msgid "Index information:"
|
||||
msgstr "ინდექსის ინფორმაცია:"
|
||||
|
||||
#: status.cpp:184
|
||||
msgid "Beagle service was already stopped."
|
||||
msgstr "Beagle-ის სერვისი უკვე გაჩერებულია."
|
||||
|
||||
#: status.cpp:203
|
||||
msgid "Beagle service already running."
|
||||
msgstr "Beagle-ის სერვისი უკვე გაშვებულია."
|
||||
|
||||
#: status.cpp:211
|
||||
msgid "Could not start beagle service."
|
||||
msgstr "Beagle-ის სერვისის გაშვება შეუძლებელია."
|
||||
|
||||
#: select_privacy_resource.ui:27
|
||||
#, no-c-format
|
||||
msgid "Please select a resource you wish to exclude from indexing."
|
||||
msgstr "აირჩიეთ რესურსი, რომელიც გნებავთ, დაინდექსებიდან ამოიღოთ."
|
||||
|
||||
#: select_privacy_resource.ui:55
|
||||
#, no-c-format
|
||||
msgid "Folder:"
|
||||
msgstr "საქაღალდე:"
|
||||
|
||||
#: select_privacy_resource.ui:68
|
||||
#, no-c-format
|
||||
msgid "File name pattern:"
|
||||
msgstr "ფაილის სახელის ნიმუში:"
|
@ -0,0 +1,231 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Andrei Stepanov <adem4ik@gmail.com>, 2024.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-05-12 17:00+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
|
||||
msgid ""
|
||||
"_: NAME OF TRANSLATORS\n"
|
||||
"Your names"
|
||||
msgstr ""
|
||||
|
||||
#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
|
||||
msgid ""
|
||||
"_: EMAIL OF TRANSLATORS\n"
|
||||
"Your emails"
|
||||
msgstr ""
|
||||
|
||||
#: backends.cpp:37
|
||||
msgid "Select which of the available Beagle backends you want to have enabled."
|
||||
msgstr ""
|
||||
|
||||
#: backends.cpp:40
|
||||
msgid "Backends"
|
||||
msgstr ""
|
||||
|
||||
#: beagle.cpp:52 kerry.cpp:58
|
||||
msgid "&Indexing"
|
||||
msgstr ""
|
||||
|
||||
#: beagle.cpp:53 kerry.cpp:59
|
||||
msgid "&Backends"
|
||||
msgstr ""
|
||||
|
||||
#: beagle.cpp:54 kerry.cpp:60
|
||||
msgid "&Daemon Status"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:47 search.cpp:32
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:52
|
||||
msgid "Start Beagle indexing service automatically"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:55
|
||||
msgid "Index data while on battery power"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:59
|
||||
msgid "Index"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:65
|
||||
msgid "Index my home folder"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:69
|
||||
msgid "Add any additional folder to be included for indexing."
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:75 indexing.cpp:108 search.cpp:43
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:81 indexing.cpp:115
|
||||
msgid "Add..."
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:96
|
||||
msgid "Privacy"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:101
|
||||
msgid ""
|
||||
"Specify any resource, such as folder or pattern, you wish to exclude from "
|
||||
"indexing."
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:107 search.cpp:41
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:226 indexing.cpp:257
|
||||
msgid "Select Folder"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:240
|
||||
msgid ""
|
||||
"<qt>Do you really want to remove this folder from the list of folders to be "
|
||||
"included for indexing?</qt>"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:240
|
||||
msgid "Remove Folder"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:250 select_privacy_resource.ui:16
|
||||
#, no-c-format
|
||||
msgid "Add Resource"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:277
|
||||
msgid ""
|
||||
"<qt>Do you really want to remove this item from the list of data to be "
|
||||
"excluded from indexing?</qt>"
|
||||
msgstr ""
|
||||
|
||||
#: indexing.cpp:277
|
||||
msgid "Remove Item"
|
||||
msgstr ""
|
||||
|
||||
#: kerry.cpp:57
|
||||
msgid "&Search"
|
||||
msgstr ""
|
||||
|
||||
#: search.cpp:38
|
||||
msgid "Default result sort order:"
|
||||
msgstr ""
|
||||
|
||||
#: search.cpp:42
|
||||
msgid "Date Modified"
|
||||
msgstr ""
|
||||
|
||||
#: search.cpp:44
|
||||
msgid "Relevance"
|
||||
msgstr ""
|
||||
|
||||
#: search.cpp:45
|
||||
msgid "Define the default sort order at startup."
|
||||
msgstr ""
|
||||
|
||||
#: search.cpp:50
|
||||
msgid "Maximum number of results displayed:"
|
||||
msgstr ""
|
||||
|
||||
#: search.cpp:53
|
||||
msgid "No Limit"
|
||||
msgstr ""
|
||||
|
||||
#: search.cpp:54
|
||||
msgid "Define how many results shall be displayed on one result page."
|
||||
msgstr ""
|
||||
|
||||
#: search.cpp:58
|
||||
msgid "Show search results with details by default"
|
||||
msgstr ""
|
||||
|
||||
#: search.cpp:62
|
||||
msgid "Global Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: search.cpp:68
|
||||
msgid "Kerry Beagle Search"
|
||||
msgstr ""
|
||||
|
||||
#: search.cpp:72
|
||||
msgid "Show Search Dialog"
|
||||
msgstr ""
|
||||
|
||||
#: search.cpp:73
|
||||
msgid "Search Primary Selection"
|
||||
msgstr ""
|
||||
|
||||
#: status.cpp:73
|
||||
msgid "Refresh Status"
|
||||
msgstr ""
|
||||
|
||||
#: status.cpp:115
|
||||
msgid "Beagle service is currently running. Click here to stop."
|
||||
msgstr ""
|
||||
|
||||
#: status.cpp:119
|
||||
msgid "Beagle service is currently stopped. Click here to start."
|
||||
msgstr ""
|
||||
|
||||
#: status.cpp:120
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: status.cpp:133
|
||||
msgid "Service not started."
|
||||
msgstr ""
|
||||
|
||||
#: status.cpp:144
|
||||
msgid "Beagle service version: %1\n"
|
||||
msgstr ""
|
||||
|
||||
#: status.cpp:146
|
||||
msgid "Current status:\n"
|
||||
msgstr ""
|
||||
|
||||
#: status.cpp:150
|
||||
msgid "Index information:"
|
||||
msgstr ""
|
||||
|
||||
#: status.cpp:184
|
||||
msgid "Beagle service was already stopped."
|
||||
msgstr ""
|
||||
|
||||
#: status.cpp:203
|
||||
msgid "Beagle service already running."
|
||||
msgstr ""
|
||||
|
||||
#: status.cpp:211
|
||||
msgid "Could not start beagle service."
|
||||
msgstr ""
|
||||
|
||||
#: select_privacy_resource.ui:27
|
||||
#, no-c-format
|
||||
msgid "Please select a resource you wish to exclude from indexing."
|
||||
msgstr ""
|
||||
|
||||
#: select_privacy_resource.ui:55
|
||||
#, no-c-format
|
||||
msgid "Folder:"
|
||||
msgstr ""
|
||||
|
||||
#: select_privacy_resource.ui:68
|
||||
#, no-c-format
|
||||
msgid "File name pattern:"
|
||||
msgstr ""
|
@ -0,0 +1,650 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Andrei Stepanov <adem4ik@gmail.com>, 2024, 2025.
|
||||
# Egor Grigorovich <egorsworkemail@gmail.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-05-12 17:00+0200\n"
|
||||
"PO-Revision-Date: 2025-06-23 20:59+0000\n"
|
||||
"Last-Translator: Andrei Stepanov <adem4ik@gmail.com>\n"
|
||||
"Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/"
|
||||
"projects/applications/kerry/ru/>\n"
|
||||
"Language: ru\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%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.18.2\n"
|
||||
|
||||
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
|
||||
msgid ""
|
||||
"_: NAME OF TRANSLATORS\n"
|
||||
"Your names"
|
||||
msgstr "Андрей Степанов"
|
||||
|
||||
#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
|
||||
msgid ""
|
||||
"_: EMAIL OF TRANSLATORS\n"
|
||||
"Your emails"
|
||||
msgstr "adem4ik@gmail.com"
|
||||
|
||||
#: beaglesearch.cpp:42
|
||||
#, c-format
|
||||
msgid "Album: %1"
|
||||
msgstr "Альбом: %1"
|
||||
|
||||
#: beaglesearch.cpp:43 beaglesearch.cpp:75 beaglesearch.cpp:89
|
||||
#: beaglesearch.cpp:100
|
||||
#, c-format
|
||||
msgid "Title: %1"
|
||||
msgstr "Заголовок: %1"
|
||||
|
||||
#: beaglesearch.cpp:44
|
||||
#, c-format
|
||||
msgid "Artist: %1"
|
||||
msgstr "Исполнитель: %1"
|
||||
|
||||
#: beaglesearch.cpp:45
|
||||
#, c-format
|
||||
msgid "Width: %1"
|
||||
msgstr "Ширина: %1"
|
||||
|
||||
#: beaglesearch.cpp:46
|
||||
#, c-format
|
||||
msgid "Height: %1"
|
||||
msgstr "Высота: %1"
|
||||
|
||||
#: beaglesearch.cpp:47
|
||||
#, c-format
|
||||
msgid "Color type: %1"
|
||||
msgstr "Цветовой тип: %1"
|
||||
|
||||
#: beaglesearch.cpp:52 searchdlg.cpp:737
|
||||
#, c-format
|
||||
msgid "Business phone: %1"
|
||||
msgstr "Рабочий телефон: %1"
|
||||
|
||||
#: beaglesearch.cpp:53 searchdlg.cpp:745
|
||||
#, c-format
|
||||
msgid "Home phone: %1"
|
||||
msgstr "Домашний телефон: %1"
|
||||
|
||||
#: beaglesearch.cpp:54 searchdlg.cpp:741
|
||||
#, c-format
|
||||
msgid "Mobile phone: %1"
|
||||
msgstr "Личный телефон: %1"
|
||||
|
||||
#: beaglesearch.cpp:55
|
||||
#, c-format
|
||||
msgid "AIM: %1"
|
||||
msgstr "AIM: %1"
|
||||
|
||||
#: beaglesearch.cpp:56
|
||||
#, c-format
|
||||
msgid "Yahoo: %1"
|
||||
msgstr "Yahoo: %1"
|
||||
|
||||
#: beaglesearch.cpp:57
|
||||
#, c-format
|
||||
msgid "MSN: %1"
|
||||
msgstr "MSN: %1"
|
||||
|
||||
#: beaglesearch.cpp:58
|
||||
#, c-format
|
||||
msgid "Jabber: %1"
|
||||
msgstr "Jabber: %1"
|
||||
|
||||
#: beaglesearch.cpp:59
|
||||
#, c-format
|
||||
msgid "ICQ: %1"
|
||||
msgstr "ICQ: %1"
|
||||
|
||||
#: beaglesearch.cpp:60
|
||||
#, c-format
|
||||
msgid "GroupWise: %1"
|
||||
msgstr "GroupWise: %1"
|
||||
|
||||
#: beaglesearch.cpp:63
|
||||
#, c-format
|
||||
msgid "Protocol: %1"
|
||||
msgstr "Протокол: %1"
|
||||
|
||||
#: beaglesearch.cpp:64 searchdlg.cpp:670
|
||||
#, c-format
|
||||
msgid "Start time: %1"
|
||||
msgstr "Начальное время: %1"
|
||||
|
||||
#: beaglesearch.cpp:65 searchdlg.cpp:672
|
||||
#, c-format
|
||||
msgid "End time: %1"
|
||||
msgstr "Конечное время: %1"
|
||||
|
||||
#: beaglesearch.cpp:69
|
||||
#, c-format
|
||||
msgid "Folder: %1"
|
||||
msgstr "Каталог: %1"
|
||||
|
||||
#: beaglesearch.cpp:70
|
||||
msgid "(%1)"
|
||||
msgstr "(%1)"
|
||||
|
||||
#: beaglesearch.cpp:76 beaglesearch.cpp:99
|
||||
#, c-format
|
||||
msgid "Author: %1"
|
||||
msgstr "Автор: %1"
|
||||
|
||||
#: beaglesearch.cpp:77
|
||||
#, c-format
|
||||
msgid "Slides: %1"
|
||||
msgstr "Слайды: %1"
|
||||
|
||||
#: beaglesearch.cpp:79 beaglesearch.cpp:106
|
||||
#, c-format
|
||||
msgid "Pages: %1"
|
||||
msgstr "Страницы: %1"
|
||||
|
||||
#: beaglesearch.cpp:80
|
||||
#, c-format
|
||||
msgid "Words: %1"
|
||||
msgstr "Слова: %1"
|
||||
|
||||
#: beaglesearch.cpp:91
|
||||
#, c-format
|
||||
msgid "Category: %1"
|
||||
msgstr ""
|
||||
|
||||
#: beaglesearch.cpp:92
|
||||
#, c-format
|
||||
msgid "Version: %1"
|
||||
msgstr ""
|
||||
|
||||
#: beaglesearch.cpp:94
|
||||
#, c-format
|
||||
msgid "Packager name: %1"
|
||||
msgstr ""
|
||||
|
||||
#: beaglesearch.cpp:95
|
||||
#, c-format
|
||||
msgid "Packager email: %1"
|
||||
msgstr ""
|
||||
|
||||
#: beaglesearch.cpp:105
|
||||
#, c-format
|
||||
msgid "Location: %1"
|
||||
msgstr ""
|
||||
|
||||
#: hitwidget.cpp:98 searchdlg.cpp:1607
|
||||
msgid "Expand"
|
||||
msgstr ""
|
||||
|
||||
#: hitwidget.cpp:109 searchdlg.cpp:1607
|
||||
msgid "Collapse"
|
||||
msgstr ""
|
||||
|
||||
#: kerryapp.cpp:112
|
||||
msgid "Clear Search History"
|
||||
msgstr ""
|
||||
|
||||
#: kerryapp.cpp:116
|
||||
msgid "Configure Kerry..."
|
||||
msgstr ""
|
||||
|
||||
#: kerryapp.cpp:123 main.cpp:88 searchdlg_layout.ui:22
|
||||
#, no-c-format
|
||||
msgid "Kerry Beagle Search"
|
||||
msgstr ""
|
||||
|
||||
#: kerryapp.cpp:127
|
||||
msgid "Show Search Dialog"
|
||||
msgstr ""
|
||||
|
||||
#: kerryapp.cpp:128
|
||||
msgid "Search Primary Selection"
|
||||
msgstr ""
|
||||
|
||||
#: kerryapp.cpp:132
|
||||
msgid "Kerry Beagle Search (%1)"
|
||||
msgstr ""
|
||||
|
||||
#: kerryapp.cpp:158
|
||||
msgid "<No Recent Searches>"
|
||||
msgstr ""
|
||||
|
||||
#: kerryapp.cpp:188
|
||||
msgid ""
|
||||
"Should Kerry start automatically\n"
|
||||
"when you login?"
|
||||
msgstr ""
|
||||
|
||||
#: kerryapp.cpp:188
|
||||
msgid "Automatically Start Kerry?"
|
||||
msgstr ""
|
||||
|
||||
#: kerryapp.cpp:188
|
||||
msgid "&Do Not Start"
|
||||
msgstr ""
|
||||
|
||||
#: kerryapp.cpp:256
|
||||
msgid ""
|
||||
"The daily running process for updating the system\n"
|
||||
"wide Beagle documentation index was detected."
|
||||
msgstr ""
|
||||
|
||||
#: kerryapp.cpp:265
|
||||
msgid "System May Be Slower Than Usual"
|
||||
msgstr ""
|
||||
|
||||
#: main.cpp:38
|
||||
msgid "TDE Frontend to Beagle"
|
||||
msgstr ""
|
||||
|
||||
#: main.cpp:44
|
||||
msgid "A term to search"
|
||||
msgstr ""
|
||||
|
||||
#: main.cpp:45
|
||||
msgid "Show search dialog on startup"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:79
|
||||
msgid "Applications, Contacts, Conversations, Files and more..."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:160
|
||||
msgid "Quick Tips"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:164
|
||||
msgid ""
|
||||
"- You can use upper and lower case; search is case-insensitive.<br>- To "
|
||||
"search for optional terms, use OR. ex: <b>George OR Ringo</b><br>- To "
|
||||
"exclude search terms, use the minus symbol in front, such as <b>-cats</"
|
||||
"b><br>- When searching for a phrase, add quotes. ex: <b>\"There be dragons"
|
||||
"\"</b><br>- Add ext:type to specify a file extension, ex: <b>ext:txt</b> or "
|
||||
"<b>ext:</b> for none"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:177
|
||||
msgid ""
|
||||
"- Choose what folders and resources shall be indexed - or not.<br>- Change "
|
||||
"the sort order and the number of shown results.<br>- Define your own "
|
||||
"shortcuts to invoke the search dialog."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:186
|
||||
msgid "Open configuration dialog"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:369
|
||||
msgid "<b>%1 results</b> found."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:371
|
||||
msgid "<qt>No results.</qt>"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:373
|
||||
msgid "Best <b>%1 results of %2</b> shown."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:375 searchdlg_layout.ui:190
|
||||
#, no-c-format
|
||||
msgid "Results <b>%1 through %2 of %3</b> are shown."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:379
|
||||
msgid "(still searching)"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:397
|
||||
msgid "The query for \"%1\" failed."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:401
|
||||
msgid "The likely cause is that the Beagle daemon is not running."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:403
|
||||
msgid "Automatically start Beagle daemon at login"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:412
|
||||
msgid "Click to start the Beagle daemon"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:422
|
||||
msgid "Searching..."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:561
|
||||
msgid "Run"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:574
|
||||
#, c-format
|
||||
msgid "Last viewed: %1"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:577
|
||||
msgid "URL:"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:588
|
||||
msgid "Untitled Page"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:599
|
||||
#, c-format
|
||||
msgid "Published: %1"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:605
|
||||
msgid "Weblog:"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:616 searchdlg.cpp:655
|
||||
msgid "Untitled Entry"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:627 searchdlg.cpp:645 searchdlg.cpp:984 searchdlg.cpp:1057
|
||||
#, c-format
|
||||
msgid "Last modified: %1"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:681
|
||||
msgid "No Summary Specified"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:702 searchdlg.cpp:751
|
||||
msgid "No Name Known"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:708 searchdlg.cpp:758
|
||||
msgid ","
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:779
|
||||
#, c-format
|
||||
msgid "Received: %1"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:796
|
||||
msgid "No Subject"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:802 searchdlg.cpp:882
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:807 searchdlg.cpp:855
|
||||
msgid "Unknown Person"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:826
|
||||
msgid "Application:"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:846
|
||||
#, c-format
|
||||
msgid "Date: %1"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:855
|
||||
#, c-format
|
||||
msgid "Conversation With %1"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:900
|
||||
#, c-format
|
||||
msgid "Installed on: %1"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:906
|
||||
#, c-format
|
||||
msgid "Installed size: %1"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:912
|
||||
#, c-format
|
||||
msgid "Download size: %1"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:938 searchdlg.cpp:1008 searchdlg.cpp:1083
|
||||
msgid "Reveal in File Manager"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:966 searchdlg.cpp:1029
|
||||
msgid "In Folder"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1050
|
||||
msgid "Empty"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1052
|
||||
#, c-format
|
||||
msgid ""
|
||||
"_n: Contains 1 item\n"
|
||||
"Contains %n items"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1088
|
||||
msgid "<p align=\"center\">Score: %1</p>"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1288
|
||||
msgid "Could not start Tomboy."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1318
|
||||
msgid "Could not start Evolution."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1330
|
||||
msgid "Could not start Thunderbird."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1341
|
||||
msgid "Could not start KAddressBook."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1385
|
||||
msgid "Could not start Beagle daemon."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1452
|
||||
msgid "No results for \"%1\" were found."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1459
|
||||
msgid "- A broader search scope might produce more results."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1460
|
||||
msgid "- You should check the spelling of your search words."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1462
|
||||
msgid ""
|
||||
"- The Beagle daemon was just started. Please be patient until it finished "
|
||||
"its indexing."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1608
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg.cpp:1609
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: hitwidget_layout.ui:127
|
||||
#, no-c-format
|
||||
msgid "Score: 0"
|
||||
msgstr ""
|
||||
|
||||
#: hitwidget_layout.ui:288
|
||||
#, no-c-format
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:83
|
||||
#, no-c-format
|
||||
msgid "Clear the search term and results"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:91
|
||||
#, no-c-format
|
||||
msgid "&Search:"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:130
|
||||
#, no-c-format
|
||||
msgid "Start the search for entered term"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:235
|
||||
#, no-c-format
|
||||
msgid "&Previous Results"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:241
|
||||
#, no-c-format
|
||||
msgid "Show the previous search results"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:266
|
||||
#, no-c-format
|
||||
msgid "&Next Results"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:272
|
||||
#, no-c-format
|
||||
msgid "Show the next search results"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:317
|
||||
#, no-c-format
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:358
|
||||
#, no-c-format
|
||||
msgid "Everything"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:369
|
||||
#, no-c-format
|
||||
msgid "Applications"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:380
|
||||
#, no-c-format
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:391
|
||||
#, no-c-format
|
||||
msgid "Office Documents"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:402
|
||||
#, no-c-format
|
||||
msgid "Conversations"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:413
|
||||
#, no-c-format
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:424
|
||||
#, no-c-format
|
||||
msgid "Media"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:435
|
||||
#, no-c-format
|
||||
msgid "Web Pages"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:446
|
||||
#, no-c-format
|
||||
msgid "File/Path Name"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:479
|
||||
#, no-c-format
|
||||
msgid "Sort By"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:520
|
||||
#, no-c-format
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:531
|
||||
#, no-c-format
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:542
|
||||
#, no-c-format
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:553
|
||||
#, no-c-format
|
||||
msgid "Relevance"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:586
|
||||
#, no-c-format
|
||||
msgid "Last Modified"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:627
|
||||
#, no-c-format
|
||||
msgid "Any Date"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:638
|
||||
#, no-c-format
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:649
|
||||
#, no-c-format
|
||||
msgid "Since Yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:660
|
||||
#, no-c-format
|
||||
msgid "This Week"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:671
|
||||
#, no-c-format
|
||||
msgid "This Month"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:682
|
||||
#, no-c-format
|
||||
msgid "This Year"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:751
|
||||
#, no-c-format
|
||||
msgid "Confi&gure..."
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:754
|
||||
#, no-c-format
|
||||
msgid "Open the configuration dialog"
|
||||
msgstr ""
|
||||
|
||||
#: searchdlg_layout.ui:782
|
||||
#, no-c-format
|
||||
msgid "Close the search dialog, an icon will stay in the system tray"
|
||||
msgstr ""
|
Loading…
Reference in New Issue